From: Michael Vogt Date: Tue, 8 Jul 2014 11:37:11 +0000 (+0200) Subject: Merge branch 'debian/sid' into debian/experimental X-Git-Tag: 1.1.exp2~6 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/2830b8436ac8a6f2f3dac4ce2cd030c24eebce04?hp=521dd27dc33c8b2a6947a76872841f4254df4e58 Merge branch 'debian/sid' into debian/experimental Conflicts: apt-pkg/deb/deblistparser.cc doc/po/apt-doc.pot doc/po/de.po doc/po/es.po doc/po/fr.po doc/po/it.po doc/po/ja.po doc/po/pl.po doc/po/pt.po doc/po/pt_BR.po po/da.po po/mr.po po/vi.po --- diff --git a/apt-inst/contrib/arfile.h b/apt-inst/contrib/arfile.h index 0f62a34a0..5aa38aedc 100644 --- a/apt-inst/contrib/arfile.h +++ b/apt-inst/contrib/arfile.h @@ -61,7 +61,7 @@ struct ARArchive::Member unsigned long long Size; // Location of the data. - unsigned long Start; + unsigned long long Start; Member *Next; Member() : Start(0), Next(0) {}; diff --git a/apt-inst/contrib/extracttar.cc b/apt-inst/contrib/extracttar.cc index 0ba3f0521..2c86d0d01 100644 --- a/apt-inst/contrib/extracttar.cc +++ b/apt-inst/contrib/extracttar.cc @@ -60,9 +60,8 @@ struct ExtractTar::TarHeader // ExtractTar::ExtractTar - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -ExtractTar::ExtractTar(FileFd &Fd,unsigned long Max,string DecompressionProgram) : File(Fd), - MaxInSize(Max), DecompressProg(DecompressionProgram) - +ExtractTar::ExtractTar(FileFd &Fd,unsigned long long Max,string DecompressionProgram) + : File(Fd), MaxInSize(Max), DecompressProg(DecompressionProgram) { GZPid = -1; Eof = false; @@ -267,7 +266,7 @@ bool ExtractTar::Go(pkgDirStream &Stream) case GNU_LongLink: { - unsigned long Length = Itm.Size; + unsigned long long Length = Itm.Size; unsigned char Block[512]; while (Length > 0) { @@ -286,7 +285,7 @@ bool ExtractTar::Go(pkgDirStream &Stream) case GNU_LongName: { - unsigned long Length = Itm.Size; + unsigned long long Length = Itm.Size; unsigned char Block[512]; while (Length > 0) { @@ -315,11 +314,11 @@ bool ExtractTar::Go(pkgDirStream &Stream) return false; // Copy the file over the FD - unsigned long Size = Itm.Size; + unsigned long long Size = Itm.Size; while (Size != 0) { unsigned char Junk[32*1024]; - unsigned long Read = min(Size,(unsigned long)sizeof(Junk)); + unsigned long Read = min(Size, (unsigned long long)sizeof(Junk)); if (InFd.Read(Junk,((Read+511)/512)*512) == false) return false; diff --git a/apt-inst/contrib/extracttar.h b/apt-inst/contrib/extracttar.h index 4b29df314..472e018f4 100644 --- a/apt-inst/contrib/extracttar.h +++ b/apt-inst/contrib/extracttar.h @@ -39,7 +39,7 @@ class ExtractTar GNU_LongLink = 'K',GNU_LongName = 'L'}; FileFd &File; - unsigned long MaxInSize; + unsigned long long MaxInSize; int GZPid; FileFd InFd; bool Eof; @@ -53,7 +53,7 @@ class ExtractTar bool Go(pkgDirStream &Stream); - ExtractTar(FileFd &Fd,unsigned long Max,std::string DecompressionProgram); + ExtractTar(FileFd &Fd,unsigned long long Max,std::string DecompressionProgram); virtual ~ExtractTar(); }; diff --git a/apt-inst/deb/debfile.cc b/apt-inst/deb/debfile.cc index a63cb6716..4853a13c7 100644 --- a/apt-inst/deb/debfile.cc +++ b/apt-inst/deb/debfile.cc @@ -203,7 +203,7 @@ bool debDebFile::MemControlExtract::DoItem(Item &Itm,int &Fd) /* Just memcopy the block from the tar extractor and put it in the right place in the pre-allocated memory block. */ bool debDebFile::MemControlExtract::Process(Item &/*Itm*/,const unsigned char *Data, - unsigned long Size,unsigned long Pos) + unsigned long long Size,unsigned long long Pos) { memcpy(Control + Pos, Data,Size); return true; @@ -232,7 +232,7 @@ bool debDebFile::MemControlExtract::Read(debDebFile &Deb) // --------------------------------------------------------------------- /* The given memory block is loaded into the parser and parsed as a control record. */ -bool debDebFile::MemControlExtract::TakeControl(const void *Data,unsigned long Size) +bool debDebFile::MemControlExtract::TakeControl(const void *Data,unsigned long long Size) { delete [] Control; Control = new char[Size+2]; diff --git a/apt-inst/deb/debfile.h b/apt-inst/deb/debfile.h index 880bcf6c5..b068efcec 100644 --- a/apt-inst/deb/debfile.h +++ b/apt-inst/deb/debfile.h @@ -81,12 +81,12 @@ class debDebFile::MemControlExtract : public pkgDirStream // Members from DirStream virtual bool DoItem(Item &Itm,int &Fd); virtual bool Process(Item &Itm,const unsigned char *Data, - unsigned long Size,unsigned long Pos); + unsigned long long Size,unsigned long long Pos); // Helpers bool Read(debDebFile &Deb); - bool TakeControl(const void *Data,unsigned long Size); + bool TakeControl(const void *Data,unsigned long long Size); MemControlExtract() : IsControl(false), Control(0), Length(0), Member("control") {}; MemControlExtract(std::string Member) : IsControl(false), Control(0), Length(0), Member(Member) {}; diff --git a/apt-inst/dirstream.h b/apt-inst/dirstream.h index 1be2688a1..571fe86a5 100644 --- a/apt-inst/dirstream.h +++ b/apt-inst/dirstream.h @@ -37,10 +37,10 @@ class pkgDirStream Directory, FIFO} Type; char *Name; char *LinkTarget; + unsigned long long Size; unsigned long Mode; unsigned long UID; unsigned long GID; - unsigned long Size; unsigned long MTime; unsigned long Major; unsigned long Minor; @@ -50,7 +50,7 @@ class pkgDirStream virtual bool Fail(Item &Itm,int Fd); virtual bool FinishedFile(Item &Itm,int Fd); virtual bool Process(Item &/*Itm*/,const unsigned char * /*Data*/, - unsigned long /*Size*/,unsigned long /*Pos*/) {return true;}; + unsigned long long /*Size*/,unsigned long long /*Pos*/) {return true;}; virtual ~pkgDirStream() {}; }; diff --git a/apt-inst/makefile b/apt-inst/makefile index af887bba8..e4a3ae702 100644 --- a/apt-inst/makefile +++ b/apt-inst/makefile @@ -14,7 +14,7 @@ include ../buildlib/libversion.mak # The library name LIBRARY=apt-inst -MAJOR=1.5 +MAJOR=1.6 MINOR=0 SLIBS=$(PTHREADLIB) -lapt-pkg APT_DOMAIN:=libapt-inst$(MAJOR) diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 0911d11b7..221d2a267 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -50,12 +50,24 @@ using namespace std; +static void printHashSumComparision(std::string const &URI, HashStringList const &Expected, HashStringList const &Actual) /*{{{*/ +{ + if (_config->FindB("Debug::Acquire::HashSumMismatch", false) == false) + return; + std::cerr << std::endl << URI << ":" << std::endl << " Expected Hash: " << std::endl; + for (HashStringList::const_iterator hs = Expected.begin(); hs != Expected.end(); ++hs) + std::cerr << "\t- " << hs->toStr() << std::endl; + std::cerr << " Actual Hash: " << std::endl; + for (HashStringList::const_iterator hs = Actual.begin(); hs != Actual.end(); ++hs) + std::cerr << "\t- " << hs->toStr() << std::endl; +} + /*}}}*/ + // Acquire::Item::Item - Constructor /*{{{*/ -// --------------------------------------------------------------------- -/* */ -pkgAcquire::Item::Item(pkgAcquire *Owner) : Owner(Owner), FileSize(0), - PartialSize(0), Mode(0), ID(0), Complete(false), - Local(false), QueueCounter(0) +pkgAcquire::Item::Item(pkgAcquire *Owner, HashStringList const &ExpectedHashes) : + Owner(Owner), FileSize(0), PartialSize(0), Mode(0), ID(0), Complete(false), + Local(false), QueueCounter(0), ExpectedAdditionalItems(0), + ExpectedHashes(ExpectedHashes) { Owner->Add(this); Status = StatIdle; @@ -117,7 +129,7 @@ void pkgAcquire::Item::Start(string /*Message*/,unsigned long long Size) // Acquire::Item::Done - Item downloaded OK /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcquire::Item::Done(string Message,unsigned long long Size,string /*Hash*/, +void pkgAcquire::Item::Done(string Message,unsigned long long Size,HashStringList const &/*Hash*/, pkgAcquire::MethodConfig * /*Cnf*/) { // We just downloaded something.. @@ -228,8 +240,8 @@ void pkgAcquire::Item::ReportMirrorFailure(string FailCode) possibly query additional files */ pkgAcqSubIndex::pkgAcqSubIndex(pkgAcquire *Owner, string const &URI, string const &URIDesc, string const &ShortDesc, - HashString const &ExpectedHash) - : Item(Owner), ExpectedHash(ExpectedHash) + HashStringList const &ExpectedHashes) + : Item(Owner, ExpectedHashes) { /* XXX: Beware: Currently this class does nothing (of value) anymore ! */ Debug = _config->FindB("Debug::pkgAcquire::SubIndex",false); @@ -251,7 +263,7 @@ pkgAcqSubIndex::pkgAcqSubIndex(pkgAcquire *Owner, string const &URI, // AcqSubIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqSubIndex::Custom600Headers() +string pkgAcqSubIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(Desc.URI); @@ -274,7 +286,7 @@ void pkgAcqSubIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/* // No good Index is provided } /*}}}*/ -void pkgAcqSubIndex::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqSubIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) @@ -296,7 +308,7 @@ void pkgAcqSubIndex::Done(string Message,unsigned long long Size,string Md5Hash, return; } - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message, Size, Hashes, Cnf); string FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(Desc.URI); @@ -342,21 +354,22 @@ bool pkgAcqSubIndex::ParseIndex(string const &IndexFile) /*{{{*/ * the original packages file */ pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire *Owner, - string URI,string URIDesc,string ShortDesc, - HashString ExpectedHash) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash), - Description(URIDesc) + IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser) + : pkgAcqBaseIndex(Owner, Target, ExpectedHashes, MetaIndexParser) { Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); - Desc.Description = URIDesc + "/DiffIndex"; + RealURI = Target->URI; Desc.Owner = this; - Desc.ShortDesc = ShortDesc; - Desc.URI = URI + ".diff/Index"; + Desc.Description = Target->Description + "/DiffIndex"; + Desc.ShortDesc = Target->ShortDesc; + Desc.URI = Target->URI + ".diff/Index"; DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(URI) + string(".DiffIndex"); + DestFile += URItoFileName(Target->URI) + string(".DiffIndex"); if(Debug) std::clog << "pkgAcqDiffIndex: " << Desc.URI << std::endl; @@ -389,7 +402,7 @@ pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire *Owner, // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqDiffIndex::Custom600Headers() +string pkgAcqDiffIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI) + string(".IndexDiff"); @@ -442,8 +455,8 @@ bool pkgAcqDiffIndex::ParseDiffIndex(string IndexDiffFile) /*{{{*/ std::clog << "Package file is up-to-date" << std::endl; // list cleanup needs to know that this file as well as the already // present index is ours, so we create an empty diff to save it for us - new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash, ServerSha1, available_patches); + new pkgAcqIndexDiffs(Owner, Target, ExpectedHashes, MetaIndexParser, + ServerSha1, available_patches); return true; } else @@ -528,14 +541,19 @@ bool pkgAcqDiffIndex::ParseDiffIndex(string IndexDiffFile) /*{{{*/ } if (pdiff_merge == false) - new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash, ServerSha1, available_patches); - else + { + new pkgAcqIndexDiffs(Owner, Target, ExpectedHashes, MetaIndexParser, + ServerSha1, available_patches); + } + else { std::vector *diffs = new std::vector(available_patches.size()); for(size_t i = 0; i < available_patches.size(); ++i) - (*diffs)[i] = new pkgAcqIndexMergeDiffs(Owner, RealURI, Description, Desc.ShortDesc, ExpectedHash, - available_patches[i], diffs); + (*diffs)[i] = new pkgAcqIndexMergeDiffs(Owner, Target, + ExpectedHashes, + MetaIndexParser, + available_patches[i], + diffs); } Complete = false; @@ -559,21 +577,20 @@ void pkgAcqDiffIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/ std::clog << "pkgAcqDiffIndex failed: " << Desc.URI << " with " << Message << std::endl << "Falling back to normal index file acquire" << std::endl; - new pkgAcqIndex(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash); + new pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser); Complete = false; Status = StatDone; Dequeue(); } /*}}}*/ -void pkgAcqDiffIndex::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqDiffIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) std::clog << "pkgAcqDiffIndex::Done(): " << Desc.URI << std::endl; - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message, Size, Hashes, Cnf); string FinalFile; FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(RealURI); @@ -603,22 +620,24 @@ void pkgAcqDiffIndex::Done(string Message,unsigned long long Size,string Md5Hash * for each diff and the index */ pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire *Owner, - string URI,string URIDesc,string ShortDesc, - HashString ExpectedHash, + struct IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser, string ServerSha1, vector diffs) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash), + : pkgAcqBaseIndex(Owner, Target, ExpectedHashes, MetaIndexParser), available_patches(diffs), ServerSha1(ServerSha1) { DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(URI); + DestFile += URItoFileName(Target->URI); Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); - Description = URIDesc; + RealURI = Target->URI; Desc.Owner = this; - Desc.ShortDesc = ShortDesc; + Description = Target->Description; + Desc.ShortDesc = Target->ShortDesc; if(available_patches.empty() == true) { @@ -638,8 +657,7 @@ void pkgAcqIndexDiffs::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/) if(Debug) std::clog << "pkgAcqIndexDiffs failed: " << Desc.URI << " with " << Message << std::endl << "Falling back to normal index file acquire" << std::endl; - new pkgAcqIndex(Owner, RealURI, Description,Desc.ShortDesc, - ExpectedHash); + new pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser); Finish(); } /*}}}*/ @@ -653,7 +671,7 @@ void pkgAcqIndexDiffs::Finish(bool allDone) DestFile = _config->FindDir("Dir::State::lists"); DestFile += URItoFileName(RealURI); - if(!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile)) + if(HashSums().usable() && !HashSums().VerifyFile(DestFile)) { RenameOnError(HashSumMismatch); Dequeue(); @@ -731,13 +749,13 @@ bool pkgAcqIndexDiffs::QueueNextDiff() /*{{{*/ return true; } /*}}}*/ -void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size, HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) std::clog << "pkgAcqIndexDiffs::Done(): " << Desc.URI << std::endl; - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message, Size, Hashes, Cnf); string FinalFile; FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(RealURI); @@ -779,8 +797,9 @@ void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size,string Md5Has // see if there is more to download if(available_patches.empty() == false) { - new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash, ServerSha1, available_patches); + new pkgAcqIndexDiffs(Owner, Target, + ExpectedHashes, MetaIndexParser, + ServerSha1, available_patches); return Finish(); } else return Finish(true); @@ -789,22 +808,24 @@ void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size,string Md5Has /*}}}*/ // AcqIndexMergeDiffs::AcqIndexMergeDiffs - Constructor /*{{{*/ pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire *Owner, - string const &URI, string const &URIDesc, - string const &ShortDesc, HashString const &ExpectedHash, - DiffInfo const &patch, - std::vector const * const allPatches) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash), - patch(patch),allPatches(allPatches), State(StateFetchDiff) + struct IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser, + DiffInfo const &patch, + std::vector const * const allPatches) + : pkgAcqBaseIndex(Owner, Target, ExpectedHashes, MetaIndexParser), + patch(patch), allPatches(allPatches), State(StateFetchDiff) { DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(URI); + DestFile += URItoFileName(Target->URI); Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); - Description = URIDesc; + RealURI = Target->URI; Desc.Owner = this; - Desc.ShortDesc = ShortDesc; + Description = Target->Description; + Desc.ShortDesc = Target->ShortDesc; Desc.URI = RealURI + ".diff/" + patch.file + ".gz"; Desc.Description = Description + " " + patch.file + string(".pdiff"); @@ -835,17 +856,16 @@ void pkgAcqIndexMergeDiffs::Failed(string Message,pkgAcquire::MethodConfig * /*C // first failure means we should fallback State = StateErrorDiff; std::clog << "Falling back to normal index file acquire" << std::endl; - new pkgAcqIndex(Owner, RealURI, Description,Desc.ShortDesc, - ExpectedHash); + new pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser); } /*}}}*/ -void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) std::clog << "pkgAcqIndexMergeDiffs::Done(): " << Desc.URI << std::endl; - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message,Size,Hashes,Cnf); string const FinalFile = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); @@ -881,7 +901,7 @@ void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,string M else if (State == StateApplyDiff) { // see if we really got the expected file - if(!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile)) + if(ExpectedHashes.usable() && !ExpectedHashes.VerifyFile(DestFile)) { RenameOnError(HashSumMismatch); return; @@ -918,8 +938,8 @@ void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,string M instantiated to fetch the revision file */ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, string URI,string URIDesc,string ShortDesc, - HashString ExpectedHash, string comprExt) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash) + HashStringList const &ExpectedHash, string comprExt) + : pkgAcqBaseIndex(Owner, NULL, ExpectedHash, NULL), RealURI(URI) { if(comprExt.empty() == true) { @@ -935,13 +955,15 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, Init(URI, URIDesc, ShortDesc); } pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, IndexTarget const *Target, - HashString const &ExpectedHash, indexRecords const *MetaIndexParser) - : Item(Owner), RealURI(Target->URI), ExpectedHash(ExpectedHash) + HashStringList const &ExpectedHash, + indexRecords *MetaIndexParser) + : pkgAcqBaseIndex(Owner, Target, ExpectedHash, MetaIndexParser), + RealURI(Target->URI) { // autoselect the compression method std::vector types = APT::Configuration::getCompressionTypes(); CompressionExtension = ""; - if (ExpectedHash.empty() == false) + if (ExpectedHashes.usable()) { for (std::vector::const_iterator t = types.begin(); t != types.end(); ++t) if (*t == "uncompressed" || MetaIndexParser->Exists(string(Target->MetaKey).append(".").append(*t)) == true) @@ -967,10 +989,29 @@ void pkgAcqIndex::Init(string const &URI, string const &URIDesc, string const &S DestFile += URItoFileName(URI); std::string const comprExt = CompressionExtension.substr(0, CompressionExtension.find(' ')); + std::string MetaKey; if (comprExt == "uncompressed") + { Desc.URI = URI; + if(Target) + MetaKey = string(Target->MetaKey); + } else + { Desc.URI = URI + '.' + comprExt; + if(Target) + MetaKey = string(Target->MetaKey) + '.' + comprExt; + } + + // load the filesize + if(MetaIndexParser) + { + indexRecords::checkSum *Record = MetaIndexParser->Lookup(MetaKey); + if(Record) + FileSize = Record->Size; + + InitByHashIfNeeded(MetaKey); + } Desc.Description = URIDesc; Desc.Owner = this; @@ -979,10 +1020,42 @@ void pkgAcqIndex::Init(string const &URI, string const &URIDesc, string const &S QueueURI(Desc); } /*}}}*/ +// AcqIndex::AdjustForByHash - modify URI for by-hash support /*{{{*/ +// --------------------------------------------------------------------- +/* */ +void pkgAcqIndex::InitByHashIfNeeded(const std::string MetaKey) +{ + // TODO: + // - (maybe?) add support for by-hash into the sources.list as flag + // - make apt-ftparchive generate the hashes (and expire?) + std::string HostKnob = "APT::Acquire::" + ::URI(Desc.URI).Host + "::By-Hash"; + if(_config->FindB("APT::Acquire::By-Hash", false) == true || + _config->FindB(HostKnob, false) == true || + MetaIndexParser->GetSupportsAcquireByHash()) + { + indexRecords::checkSum *Record = MetaIndexParser->Lookup(MetaKey); + if(Record) + { + // FIXME: should we really use the best hash here? or a fixed one? + const HashString *TargetHash = Record->Hashes.find(""); + std::string ByHash = "/by-hash/" + TargetHash->HashType() + "/" + TargetHash->HashValue(); + size_t trailing_slash = Desc.URI.find_last_of("/"); + Desc.URI = Desc.URI.replace( + trailing_slash, + Desc.URI.substr(trailing_slash+1).size()+1, + ByHash); + } else { + _error->Warning( + "Fetching ByHash requested but can not find record for %s", + MetaKey.c_str()); + } + } +} + /*}}}*/ // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqIndex::Custom600Headers() +string pkgAcqIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@ -1028,22 +1101,17 @@ void pkgAcqIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ to the uncompressed version of the file. If this is so the file is copied into the partial directory. In all other cases the file is decompressed with a gzip uri. */ -void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash, +void pkgAcqIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,Hash,Cfg); + Item::Done(Message,Size,Hashes,Cfg); if (Decompression == true) { - if (_config->FindB("Debug::pkgAcquire::Auth", false)) - { - std::cerr << std::endl << RealURI << ": Computed Hash: " << Hash; - std::cerr << " Expected Hash: " << ExpectedHash.toStr() << std::endl; - } - - if (!ExpectedHash.empty() && ExpectedHash.toStr() != Hash) + if (ExpectedHashes.usable() && ExpectedHashes != Hashes) { RenameOnError(HashSumMismatch); + printHashSumComparision(RealURI, ExpectedHashes, Hashes); return; } @@ -1073,7 +1141,7 @@ void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash, FinalFile += URItoFileName(RealURI); Rename(DestFile,FinalFile); chmod(FinalFile.c_str(),0644); - + /* We restore the original name to DestFile so that the clean operation will work OK */ DestFile = _config->FindDir("Dir::State::lists") + "partial/"; @@ -1082,6 +1150,7 @@ void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash, // Remove the compressed version. if (Erase == true) unlink(DestFile.c_str()); + return; } @@ -1165,18 +1234,22 @@ void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash, /* The Translation file is added to the queue */ pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, string URI,string URIDesc,string ShortDesc) - : pkgAcqIndex(Owner, URI, URIDesc, ShortDesc, HashString(), "") + : pkgAcqIndex(Owner, URI, URIDesc, ShortDesc, HashStringList(), "") { } -pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, IndexTarget const *Target, - HashString const &ExpectedHash, indexRecords const *MetaIndexParser) - : pkgAcqIndex(Owner, Target, ExpectedHash, MetaIndexParser) +pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, IndexTarget const * const Target, + HashStringList const &ExpectedHashes, indexRecords *MetaIndexParser) + : pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser) { + // load the filesize + indexRecords::checkSum *Record = MetaIndexParser->Lookup(string(Target->MetaKey)); + if(Record) + FileSize = Record->Size; } /*}}}*/ // AcqIndexTrans::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- -string pkgAcqIndexTrans::Custom600Headers() +string pkgAcqIndexTrans::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@ -1220,7 +1293,7 @@ pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire *Owner, /*{{{*/ string MetaIndexShortDesc, const vector* IndexTargets, indexRecords* MetaIndexParser) : - Item(Owner), RealURI(URI), MetaIndexURI(MetaIndexURI), + Item(Owner, HashStringList()), RealURI(URI), MetaIndexURI(MetaIndexURI), MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc), MetaIndexParser(MetaIndexParser), IndexTargets(IndexTargets) { @@ -1251,6 +1324,9 @@ pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire *Owner, /*{{{*/ Rename(Final,LastGoodSig); } + // we expect the indextargets + one additional Release file + ExpectedAdditionalItems = IndexTargets->size() + 1; + QueueURI(Desc); } /*}}}*/ @@ -1270,7 +1346,7 @@ pkgAcqMetaSig::~pkgAcqMetaSig() /*{{{*/ // pkgAcqMetaSig::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqMetaSig::Custom600Headers() +string pkgAcqMetaSig::Custom600Headers() const { struct stat Buf; if (stat(LastGoodSig.c_str(),&Buf) != 0) @@ -1279,10 +1355,10 @@ string pkgAcqMetaSig::Custom600Headers() return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); } -void pkgAcqMetaSig::Done(string Message,unsigned long long Size,string MD5, +void pkgAcqMetaSig::Done(string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,MD5,Cfg); + Item::Done(Message, Size, Hashes, Cfg); string FileName = LookupTag(Message,"Filename"); if (FileName.empty() == true) @@ -1303,6 +1379,9 @@ void pkgAcqMetaSig::Done(string Message,unsigned long long Size,string MD5, Complete = true; + // at this point pkgAcqMetaIndex takes over + ExpectedAdditionalItems = 0; + // put the last known good file back on i-m-s hit (it will // be re-verified again) // Else do nothing, we have the new file in DestFile then @@ -1320,6 +1399,9 @@ void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf)/*{{{*/ { string Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); + // at this point pkgAcqMetaIndex takes over + ExpectedAdditionalItems = 0; + // if we get a network error we fail gracefully if(Status == StatTransientNetworkError) { @@ -1356,9 +1438,9 @@ void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf)/*{{{*/ pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire *Owner, /*{{{*/ string URI,string URIDesc,string ShortDesc, string SigFile, - const vector* IndexTargets, + const vector* IndexTargets, indexRecords* MetaIndexParser) : - Item(Owner), RealURI(URI), SigFile(SigFile), IndexTargets(IndexTargets), + Item(Owner, HashStringList()), RealURI(URI), SigFile(SigFile), IndexTargets(IndexTargets), MetaIndexParser(MetaIndexParser), AuthPass(false), IMSHit(false) { DestFile = _config->FindDir("Dir::State::lists") + "partial/"; @@ -1370,13 +1452,16 @@ pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire *Owner, /*{{{*/ Desc.ShortDesc = ShortDesc; Desc.URI = URI; + // we expect more item + ExpectedAdditionalItems = IndexTargets->size(); + QueueURI(Desc); } /*}}}*/ // pkgAcqMetaIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqMetaIndex::Custom600Headers() +string pkgAcqMetaIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@ -1388,10 +1473,10 @@ string pkgAcqMetaIndex::Custom600Headers() return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); } /*}}}*/ -void pkgAcqMetaIndex::Done(string Message,unsigned long long Size,string Hash, /*{{{*/ +void pkgAcqMetaIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,Hash,Cfg); + Item::Done(Message,Size,Hashes,Cfg); // MetaIndexes are done in two passes: one to download the // metaindex with an appropriate method, and a second to verify it @@ -1420,9 +1505,20 @@ void pkgAcqMetaIndex::Done(string Message,unsigned long long Size,string Hash, / } else { + // FIXME: move this into pkgAcqMetaClearSig::Done on the next + // ABI break + + // if we expect a ClearTextSignature (InRelase), ensure that + // this is what we get and if not fail to queue a + // Release/Release.gpg, see #346386 + if (SigFile == DestFile && !StartsWithGPGClearTextSignature(DestFile)) + { + Failed(Message, Cfg); + return; + } + // There was a signature file, so pass it to gpgv for // verification - if (_config->FindB("Debug::pkgAcquire::Auth", false)) std::cerr << "Metaindex acquired, queueing gpg verification (" << SigFile << "," << DestFile << ")\n"; @@ -1548,11 +1644,13 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ } } - for (vector ::const_iterator Target = IndexTargets->begin(); + // at this point the real Items are loaded in the fetcher + ExpectedAdditionalItems = 0; + for (vector ::const_iterator Target = IndexTargets->begin(); Target != IndexTargets->end(); ++Target) { - HashString ExpectedIndexHash; + HashStringList ExpectedIndexHashes; const indexRecords::checkSum *Record = MetaIndexParser->Lookup((*Target)->MetaKey); bool compressedAvailable = false; if (Record == NULL) @@ -1576,14 +1674,16 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ } else { - ExpectedIndexHash = Record->Hash; + ExpectedIndexHashes = Record->Hashes; if (_config->FindB("Debug::pkgAcquire::Auth", false)) { - std::cerr << "Queueing: " << (*Target)->URI << std::endl; - std::cerr << "Expected Hash: " << ExpectedIndexHash.toStr() << std::endl; + std::cerr << "Queueing: " << (*Target)->URI << std::endl + << "Expected Hash:" << std::endl; + for (HashStringList::const_iterator hs = ExpectedIndexHashes.begin(); hs != ExpectedIndexHashes.end(); ++hs) + std::cerr << "\t- " << hs->toStr() << std::endl; std::cerr << "For: " << Record->MetaKeyFilename << std::endl; } - if (verify == true && ExpectedIndexHash.empty() == true && (*Target)->IsOptional() == false) + if (verify == true && ExpectedIndexHashes.empty() == true && (*Target)->IsOptional() == false) { Status = StatAuthError; strprintf(ErrorText, _("Unable to find hash sum for '%s' in Release file"), (*Target)->MetaKey.c_str()); @@ -1595,15 +1695,14 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ { if ((*Target)->IsSubIndex() == true) new pkgAcqSubIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, ExpectedIndexHash); + (*Target)->ShortDesc, ExpectedIndexHashes); else if (transInRelease == false || Record != NULL || compressedAvailable == true) { if (_config->FindB("Acquire::PDiffs",true) == true && transInRelease == true && MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true) - new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, ExpectedIndexHash); + new pkgAcqDiffIndex(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); else - new pkgAcqIndexTrans(Owner, *Target, ExpectedIndexHash, MetaIndexParser); + new pkgAcqIndexTrans(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); } continue; } @@ -1614,10 +1713,9 @@ void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/ instead, but passing the required info to it is to much hassle */ if(_config->FindB("Acquire::PDiffs",true) == true && (verify == false || MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true)) - new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, ExpectedIndexHash); + new pkgAcqDiffIndex(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); else - new pkgAcqIndex(Owner, *Target, ExpectedIndexHash, MetaIndexParser); + new pkgAcqIndex(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); } } /*}}}*/ @@ -1770,7 +1868,7 @@ pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire *Owner, /*{{{*/ string const &URI, string const &URIDesc, string const &ShortDesc, string const &MetaIndexURI, string const &MetaIndexURIDesc, string const &MetaIndexShortDesc, string const &MetaSigURI, string const &MetaSigURIDesc, string const &MetaSigShortDesc, - const vector* IndexTargets, + const vector* IndexTargets, indexRecords* MetaIndexParser) : pkgAcqMetaIndex(Owner, URI, URIDesc, ShortDesc, "", IndexTargets, MetaIndexParser), MetaIndexURI(MetaIndexURI), MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc), @@ -1778,6 +1876,10 @@ pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire *Owner, /*{{{*/ { SigFile = DestFile; + // index targets + (worst case:) Release/Release.gpg + ExpectedAdditionalItems = IndexTargets->size() + 2; + + // keep the old InRelease around in case of transistent network errors string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); if (RealFileExists(Final) == true) @@ -1802,7 +1904,7 @@ pkgAcqMetaClearSig::~pkgAcqMetaClearSig() /*{{{*/ // pkgAcqMetaClearSig::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- // FIXME: this can go away once the InRelease file is used widely -string pkgAcqMetaClearSig::Custom600Headers() +string pkgAcqMetaClearSig::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@ -1820,6 +1922,9 @@ string pkgAcqMetaClearSig::Custom600Headers() /*}}}*/ void pkgAcqMetaClearSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ { + // we failed, we will not get additional items from this method + ExpectedAdditionalItems = 0; + if (AuthPass == false) { // Remove the 'old' InRelease file if we try Release.gpg now as otherwise @@ -1848,7 +1953,7 @@ void pkgAcqMetaClearSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /* pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources, pkgRecords *Recs,pkgCache::VerIterator const &Version, string &StoreFilename) : - Item(Owner), Version(Version), Sources(Sources), Recs(Recs), + Item(Owner, HashStringList()), Version(Version), Sources(Sources), Recs(Recs), StoreFilename(StoreFilename), Vf(Version.FileList()), Trusted(false) { @@ -1933,7 +2038,6 @@ pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources, checking later. */ bool pkgAcqArchive::QueueNext() { - string const ForceHash = _config->Find("Acquire::ForceHash"); for (; Vf.end() == false; ++Vf) { // Ignore not source sources @@ -1954,31 +2058,10 @@ bool pkgAcqArchive::QueueNext() pkgRecords::Parser &Parse = Recs->Lookup(Vf); if (_error->PendingError() == true) return false; - + string PkgFile = Parse.FileName(); - if (ForceHash.empty() == false) - { - if(stringcasecmp(ForceHash, "sha512") == 0) - ExpectedHash = HashString("SHA512", Parse.SHA512Hash()); - else if(stringcasecmp(ForceHash, "sha256") == 0) - ExpectedHash = HashString("SHA256", Parse.SHA256Hash()); - else if (stringcasecmp(ForceHash, "sha1") == 0) - ExpectedHash = HashString("SHA1", Parse.SHA1Hash()); - else - ExpectedHash = HashString("MD5Sum", Parse.MD5Hash()); - } - else - { - string Hash; - if ((Hash = Parse.SHA512Hash()).empty() == false) - ExpectedHash = HashString("SHA512", Hash); - else if ((Hash = Parse.SHA256Hash()).empty() == false) - ExpectedHash = HashString("SHA256", Hash); - else if ((Hash = Parse.SHA1Hash()).empty() == false) - ExpectedHash = HashString("SHA1", Hash); - else - ExpectedHash = HashString("MD5Sum", Parse.MD5Hash()); - } + ExpectedHashes = Parse.Hashes(); + if (PkgFile.empty() == true) return _error->Error(_("The package index files are corrupted. No Filename: " "field for package %s."), @@ -2065,10 +2148,10 @@ bool pkgAcqArchive::QueueNext() // AcqArchive::Done - Finished fetching /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcqArchive::Done(string Message,unsigned long long Size,string CalcHash, +void pkgAcqArchive::Done(string Message,unsigned long long Size, HashStringList const &CalcHashes, pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,CalcHash,Cfg); + Item::Done(Message, Size, CalcHashes, Cfg); // Check the size if (Size != Version->Size) @@ -2076,11 +2159,12 @@ void pkgAcqArchive::Done(string Message,unsigned long long Size,string CalcHash, RenameOnError(SizeMismatch); return; } - - // Check the hash - if(ExpectedHash.toStr() != CalcHash) + + // FIXME: could this empty() check impose *any* sort of security issue? + if(ExpectedHashes.usable() && ExpectedHashes != CalcHashes) { RenameOnError(HashSumMismatch); + printHashSumComparision(DestFile, ExpectedHashes, CalcHashes); return; } @@ -2152,7 +2236,7 @@ void pkgAcqArchive::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*}}}*/ // AcqArchive::IsTrusted - Determine whether this archive comes from a trusted source /*{{{*/ // --------------------------------------------------------------------- -APT_PURE bool pkgAcqArchive::IsTrusted() +APT_PURE bool pkgAcqArchive::IsTrusted() const { return Trusted; } @@ -2171,11 +2255,11 @@ void pkgAcqArchive::Finished() // AcqFile::pkgAcqFile - Constructor /*{{{*/ // --------------------------------------------------------------------- /* The file is added to the queue */ -pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string Hash, +pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI, HashStringList const &Hashes, unsigned long long Size,string Dsc,string ShortDesc, const string &DestDir, const string &DestFilename, bool IsIndexFile) : - Item(Owner), ExpectedHash(Hash), IsIndexFile(IsIndexFile) + Item(Owner, Hashes), IsIndexFile(IsIndexFile) { Retries = _config->FindI("Acquire::Retries",0); @@ -2212,15 +2296,16 @@ pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string Hash, // AcqFile::Done - Item downloaded OK /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcqFile::Done(string Message,unsigned long long Size,string CalcHash, +void pkgAcqFile::Done(string Message,unsigned long long Size,HashStringList const &CalcHashes, pkgAcquire::MethodConfig *Cnf) { - Item::Done(Message,Size,CalcHash,Cnf); + Item::Done(Message,Size,CalcHashes,Cnf); // Check the hash - if(!ExpectedHash.empty() && ExpectedHash.toStr() != CalcHash) + if(ExpectedHashes.usable() && ExpectedHashes != CalcHashes) { RenameOnError(HashSumMismatch); + printHashSumComparision(DestFile, ExpectedHashes, CalcHashes); return; } @@ -2291,7 +2376,7 @@ void pkgAcqFile::Failed(string Message,pkgAcquire::MethodConfig *Cnf) // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqFile::Custom600Headers() +string pkgAcqFile::Custom600Headers() const { if (IsIndexFile) return "\nIndex-File: true"; diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 06537bf2c..0500a3627 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -46,6 +46,7 @@ class indexRecords; class pkgRecords; class pkgSourceList; +class IndexTarget; /** \brief Represents the process by which a pkgAcquire object should {{{ * retrieve a file or a collection of files. @@ -166,6 +167,16 @@ class pkgAcquire::Item : public WeakPointable * \sa pkgAcquire */ unsigned int QueueCounter; + + /** \brief The number of additional fetch items that are expected + * once this item is done. + * + * Some items like pkgAcqMeta{Index,Sig} will queue additional + * items. This variable can be set by the methods if it knows + * in advance how many items to expect to get a more accurate + * progress. + */ + unsigned int ExpectedAdditionalItems; /** \brief The name of the file into which the retrieved object * will be written. @@ -201,12 +212,12 @@ class pkgAcquire::Item : public WeakPointable * \param Message Data from the acquire method. Use LookupTag() * to parse it. * \param Size The size of the object that was fetched. - * \param Hash The HashSum of the object that was fetched. + * \param Hashes The HashSums of the object that was fetched. * \param Cnf The method via which the object was fetched. * * \sa pkgAcqMethod */ - virtual void Done(std::string Message,unsigned long long Size,std::string Hash, + virtual void Done(std::string Message, unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); /** \brief Invoked when the worker starts to fetch this object. @@ -228,34 +239,35 @@ class pkgAcquire::Item : public WeakPointable * line, so they should (if nonempty) have a leading newline and * no trailing newline. */ - virtual std::string Custom600Headers() {return std::string();}; + virtual std::string Custom600Headers() const {return std::string();}; /** \brief A "descriptive" URI-like string. * * \return a URI that should be used to describe what is being fetched. */ - virtual std::string DescURI() = 0; + virtual std::string DescURI() const = 0; /** \brief Short item description. * * \return a brief description of the object being fetched. */ - virtual std::string ShortDesc() {return DescURI();} + virtual std::string ShortDesc() const {return DescURI();} /** \brief Invoked by the worker when the download is completely done. */ virtual void Finished() {}; - /** \brief HashSum + /** \brief HashSums * - * \return the HashSum of this object, if applicable; otherwise, an - * empty string. + * \return the HashSums of this object, if applicable; otherwise, an + * empty list. */ - virtual std::string HashSum() {return std::string();}; + HashStringList HashSums() const {return ExpectedHashes;}; + std::string HashSum() const {HashStringList const hashes = HashSums(); HashString const * const hs = hashes.find(NULL); return hs != NULL ? hs->toStr() : ""; }; /** \return the acquire process with which this item is associated. */ - pkgAcquire *GetOwner() {return Owner;}; + pkgAcquire *GetOwner() const {return Owner;}; /** \return \b true if this object is being fetched from a trusted source. */ - virtual bool IsTrusted() {return false;}; + virtual bool IsTrusted() const {return false;}; // report mirror problems /** \brief Report mirror problem @@ -274,12 +286,11 @@ class pkgAcquire::Item : public WeakPointable * process, but does not place it into any fetch queues (you must * manually invoke QueueURI() to do so). * - * Initializes all fields of the item other than Owner to 0, - * false, or the empty string. - * * \param Owner The new owner of this item. + * \param ExpectedHashes of the file represented by this item */ - Item(pkgAcquire *Owner); + Item(pkgAcquire *Owner, + HashStringList const &ExpectedHashes=HashStringList()); /** \brief Remove this item from its owner's queue by invoking * pkgAcquire::Remove. @@ -299,6 +310,12 @@ class pkgAcquire::Item : public WeakPointable * \param state respresenting the error we encountered */ bool RenameOnError(RenameOnErrorState const state); + + /** \brief The HashSums of the item is supposed to have than done */ + HashStringList ExpectedHashes; + + /** \brief The item that is currently being downloaded. */ + pkgAcquire::ItemDesc Desc; }; /*}}}*/ /** \brief Information about an index patch (aka diff). */ /*{{{*/ @@ -325,20 +342,13 @@ class pkgAcqSubIndex : public pkgAcquire::Item /** \brief If \b true, debugging information will be written to std::clog. */ bool Debug; - /** \brief The item that is currently being downloaded. */ - pkgAcquire::ItemDesc Desc; - - /** \brief The Hash that this file should have after download - */ - HashString ExpectedHash; - public: // Specialized action members virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string Md5Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string DescURI() {return Desc.URI;}; - virtual std::string Custom600Headers(); + virtual std::string DescURI() const {return Desc.URI;}; + virtual std::string Custom600Headers() const; virtual bool ParseIndex(std::string const &IndexFile); /** \brief Create a new pkgAcqSubIndex. @@ -351,10 +361,31 @@ class pkgAcqSubIndex : public pkgAcquire::Item * * \param ShortDesc A short description of the list file to download. * - * \param ExpectedHash The list file's MD5 signature. + * \param ExpectedHashes The list file's hashsums which are expected. */ pkgAcqSubIndex(pkgAcquire *Owner, std::string const &URI,std::string const &URIDesc, - std::string const &ShortDesc, HashString const &ExpectedHash); + std::string const &ShortDesc, HashStringList const &ExpectedHashes); +}; + /*}}}*/ + +/** \brief Common base class for all classes that deal with fetching {{{ + indexes + */ +class pkgAcqBaseIndex : public pkgAcquire::Item +{ + protected: + /** \brief Pointer to the IndexTarget data + */ + const struct IndexTarget * Target; + indexRecords *MetaIndexParser; + + pkgAcqBaseIndex(pkgAcquire *Owner, + struct IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser) + : Item(Owner, ExpectedHashes), Target(Target), + MetaIndexParser(MetaIndexParser) {}; + }; /*}}}*/ /** \brief An item that is responsible for fetching an index file of {{{ @@ -366,25 +397,17 @@ class pkgAcqSubIndex : public pkgAcquire::Item * * \sa pkgAcqIndexDiffs, pkgAcqIndex */ -class pkgAcqDiffIndex : public pkgAcquire::Item +class pkgAcqDiffIndex : public pkgAcqBaseIndex { protected: /** \brief If \b true, debugging information will be written to std::clog. */ bool Debug; - /** \brief The item that is currently being downloaded. */ - pkgAcquire::ItemDesc Desc; - /** \brief The URI of the index file to recreate at our end (either * by downloading it or by applying partial patches). */ std::string RealURI; - /** \brief The Hash that the real index file should have after - * all patches have been applied. - */ - HashString ExpectedHash; - /** \brief The index file which will be patched to generate the new * file. */ @@ -398,10 +421,10 @@ class pkgAcqDiffIndex : public pkgAcquire::Item public: // Specialized action members virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string Md5Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string DescURI() {return RealURI + "Index";}; - virtual std::string Custom600Headers(); + virtual std::string DescURI() const {return RealURI + "Index";}; + virtual std::string Custom600Headers() const; /** \brief Parse the Index file for a set of Packages diffs. * @@ -426,10 +449,12 @@ class pkgAcqDiffIndex : public pkgAcquire::Item * * \param ShortDesc A short description of the list file to download. * - * \param ExpectedHash The list file's MD5 signature. + * \param ExpectedHashes The list file's hashsums which are expected. */ - pkgAcqDiffIndex(pkgAcquire *Owner,std::string URI,std::string URIDesc, - std::string ShortDesc, HashString ExpectedHash); + pkgAcqDiffIndex(pkgAcquire *Owner, + struct IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser); }; /*}}}*/ /** \brief An item that is responsible for fetching client-merge patches {{{ @@ -443,7 +468,7 @@ class pkgAcqDiffIndex : public pkgAcquire::Item * * \sa pkgAcqDiffIndex, pkgAcqIndex */ -class pkgAcqIndexMergeDiffs : public pkgAcquire::Item +class pkgAcqIndexMergeDiffs : public pkgAcqBaseIndex { protected: @@ -452,21 +477,11 @@ class pkgAcqIndexMergeDiffs : public pkgAcquire::Item */ bool Debug; - /** \brief description of the item that is currently being - * downloaded. - */ - pkgAcquire::ItemDesc Desc; - /** \brief URI of the package index file that is being * reconstructed. */ std::string RealURI; - /** \brief HashSum of the package index file that is being - * reconstructed. - */ - HashString ExpectedHash; - /** \brief description of the file being downloaded. */ std::string Description; @@ -499,10 +514,9 @@ class pkgAcqIndexMergeDiffs : public pkgAcquire::Item * outright; its arguments are ignored. */ virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - - virtual void Done(std::string Message,unsigned long long Size,std::string Md5Hash, - pkgAcquire::MethodConfig *Cnf); - virtual std::string DescURI() {return RealURI + "Index";}; + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, + pkgAcquire::MethodConfig *Cnf); + virtual std::string DescURI() const {return RealURI + "Index";}; /** \brief Create an index merge-diff item. * @@ -515,7 +529,7 @@ class pkgAcqIndexMergeDiffs : public pkgAcquire::Item * * \param ShortDesc A brief description of this item. * - * \param ExpectedHash The expected md5sum of the completely + * \param ExpectedHashes The expected md5sum of the completely * reconstructed package index file; the index file will be tested * against this value when it is entirely reconstructed. * @@ -525,9 +539,12 @@ class pkgAcqIndexMergeDiffs : public pkgAcquire::Item * \param allPatches contains all related items so that each item can * check if it was the last one to complete the download step */ - pkgAcqIndexMergeDiffs(pkgAcquire *Owner,std::string const &URI,std::string const &URIDesc, - std::string const &ShortDesc, HashString const &ExpectedHash, - DiffInfo const &patch, std::vector const * const allPatches); + pkgAcqIndexMergeDiffs(pkgAcquire *Owner, + struct IndexTarget const * const Target, + HashStringList const &ExpectedHash, + indexRecords *MetaIndexParser, + DiffInfo const &patch, + std::vector const * const allPatches); }; /*}}}*/ /** \brief An item that is responsible for fetching server-merge patches {{{ @@ -541,7 +558,7 @@ class pkgAcqIndexMergeDiffs : public pkgAcquire::Item * * \sa pkgAcqDiffIndex, pkgAcqIndex */ -class pkgAcqIndexDiffs : public pkgAcquire::Item +class pkgAcqIndexDiffs : public pkgAcqBaseIndex { private: @@ -559,8 +576,8 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item /** \brief Handle tasks that must be performed after the item * finishes downloading. * - * Dequeues the item and checks the resulting file's md5sum - * against ExpectedHash after the last patch was applied. + * Dequeues the item and checks the resulting file's hashsums + * against ExpectedHashes after the last patch was applied. * There is no need to check the md5/sha1 after a "normal" * patch because QueueNextDiff() will check the sha1 later. * @@ -576,21 +593,11 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item */ bool Debug; - /** \brief A description of the item that is currently being - * downloaded. - */ - pkgAcquire::ItemDesc Desc; - /** \brief The URI of the package index file that is being * reconstructed. */ std::string RealURI; - /** \brief The HashSum of the package index file that is being - * reconstructed. - */ - HashString ExpectedHash; - /** A description of the file being downloaded. */ std::string Description; @@ -632,9 +639,9 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item */ virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string Md5Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string DescURI() {return RealURI + "Index";}; + virtual std::string DescURI() const {return RealURI + "Index";}; /** \brief Create an index diff item. * @@ -650,7 +657,7 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item * * \param ShortDesc A brief description of this item. * - * \param ExpectedHash The expected md5sum of the completely + * \param ExpectedHashes The expected md5sum of the completely * reconstructed package index file; the index file will be tested * against this value when it is entirely reconstructed. * @@ -660,8 +667,10 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item * should be ordered so that each diff appears before any diff * that depends on it. */ - pkgAcqIndexDiffs(pkgAcquire *Owner,std::string URI,std::string URIDesc, - std::string ShortDesc, HashString ExpectedHash, + pkgAcqIndexDiffs(pkgAcquire *Owner, + struct IndexTarget const * const Target, + HashStringList const &ExpectedHash, + indexRecords *MetaIndexParser, std::string ServerSha1, std::vector diffs=std::vector()); }; @@ -673,7 +682,7 @@ class pkgAcqIndexDiffs : public pkgAcquire::Item * * \todo Why does pkgAcqIndex have protected members? */ -class pkgAcqIndex : public pkgAcquire::Item +class pkgAcqIndex : public pkgAcqBaseIndex { protected: @@ -688,33 +697,27 @@ class pkgAcqIndex : public pkgAcquire::Item // 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. - */ - pkgAcquire::ItemDesc Desc; - /** \brief The object that is actually being fetched (minus any * compression-related extensions). */ std::string RealURI; - /** \brief The expected hashsum of the decompressed index file. */ - HashString ExpectedHash; - /** \brief The compression-related file extensions that are being * added to the downloaded file one by one if first fails (e.g., "gz bz2"). */ std::string CompressionExtension; + /** \brief Do the changes needed to fetch via AptByHash (if needed) */ + void InitByHashIfNeeded(const std::string MetaKey); + public: // Specialized action members virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string Md5Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string Custom600Headers(); - virtual std::string DescURI() {return Desc.URI;}; - virtual std::string HashSum() {return ExpectedHash.toStr(); }; + virtual std::string Custom600Headers() const; + virtual std::string DescURI() const {return Desc.URI;}; /** \brief Create a pkgAcqIndex. * @@ -727,7 +730,7 @@ class pkgAcqIndex : public pkgAcquire::Item * * \param ShortDesc A brief description of this index file. * - * \param ExpectedHash The expected hashsum of this index file. + * \param ExpectedHashes The expected hashsum of this index file. * * \param compressExt The compression-related extension with which * this index file should be downloaded, or "" to autodetect @@ -736,11 +739,14 @@ class pkgAcqIndex : public pkgAcquire::Item * fallback is ".gz" or none. */ pkgAcqIndex(pkgAcquire *Owner,std::string URI,std::string URIDesc, - std::string ShortDesc, HashString ExpectedHash, + std::string ShortDesc, HashStringList const &ExpectedHashes, std::string compressExt=""); - pkgAcqIndex(pkgAcquire *Owner, struct IndexTarget const * const Target, - HashString const &ExpectedHash, indexRecords const *MetaIndexParser); - void Init(std::string const &URI, std::string const &URIDesc, std::string const &ShortDesc); + pkgAcqIndex(pkgAcquire *Owner, + IndexTarget const * const Target, + HashStringList const &ExpectedHash, + indexRecords *MetaIndexParser); + void Init(std::string const &URI, std::string const &URIDesc, + std::string const &ShortDesc); }; /*}}}*/ /** \brief An acquire item that is responsible for fetching a {{{ @@ -755,7 +761,7 @@ class pkgAcqIndexTrans : public pkgAcqIndex public: virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual std::string Custom600Headers(); + virtual std::string Custom600Headers() const; /** \brief Create a pkgAcqIndexTrans. * @@ -770,8 +776,8 @@ class pkgAcqIndexTrans : public pkgAcqIndex */ pkgAcqIndexTrans(pkgAcquire *Owner,std::string URI,std::string URIDesc, std::string ShortDesc); - pkgAcqIndexTrans(pkgAcquire *Owner, struct IndexTarget const * const Target, - HashString const &ExpectedHash, indexRecords const *MetaIndexParser); + pkgAcqIndexTrans(pkgAcquire *Owner, IndexTarget const * const Target, + HashStringList const &ExpectedHashes, indexRecords *MetaIndexParser); }; /*}}}*/ /** \brief Information about an index file. */ /*{{{*/ @@ -839,9 +845,6 @@ class pkgAcqMetaSig : public pkgAcquire::Item /** \brief The last good signature file */ std::string LastGoodSig; - /** \brief The fetch request that is currently being processed. */ - pkgAcquire::ItemDesc Desc; - /** \brief The URI of the signature file. Unlike Desc.URI, this is * never modified; it is used to determine the file that is being * downloaded. @@ -869,21 +872,21 @@ class pkgAcqMetaSig : public pkgAcquire::Item * * \todo Why a list of pointers instead of a list of structs? */ - const std::vector* IndexTargets; + const std::vector* IndexTargets; public: // Specialized action members virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string Md5Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string Custom600Headers(); - virtual std::string DescURI() {return RealURI; }; + virtual std::string Custom600Headers() const; + virtual std::string DescURI() const {return RealURI; }; /** \brief Create a new pkgAcqMetaSig. */ pkgAcqMetaSig(pkgAcquire *Owner,std::string URI,std::string URIDesc, std::string ShortDesc, std::string MetaIndexURI, std::string MetaIndexURIDesc, std::string MetaIndexShortDesc, - const std::vector* IndexTargets, + const std::vector* IndexTargets, indexRecords* MetaIndexParser); virtual ~pkgAcqMetaSig(); }; @@ -901,9 +904,6 @@ class pkgAcqMetaSig : public pkgAcquire::Item class pkgAcqMetaIndex : public pkgAcquire::Item { protected: - /** \brief The fetch command that is currently being processed. */ - pkgAcquire::ItemDesc Desc; - /** \brief The URI that is actually being downloaded; never * modified by pkgAcqMetaIndex. */ @@ -917,7 +917,7 @@ class pkgAcqMetaIndex : public pkgAcquire::Item std::string SigFile; /** \brief The index files to download. */ - const std::vector* IndexTargets; + const std::vector* IndexTargets; /** \brief The parser for the meta-index file. */ indexRecords* MetaIndexParser; @@ -971,16 +971,16 @@ class pkgAcqMetaIndex : public pkgAcquire::Item // Specialized action members virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size, std::string Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string Custom600Headers(); - virtual std::string DescURI() {return RealURI; }; + virtual std::string Custom600Headers() const; + virtual std::string DescURI() const {return RealURI; }; /** \brief Create a new pkgAcqMetaIndex. */ pkgAcqMetaIndex(pkgAcquire *Owner, std::string URI,std::string URIDesc, std::string ShortDesc, std::string SigFile, - const std::vector* IndexTargets, + const std::vector* IndexTargets, indexRecords* MetaIndexParser); }; /*}}}*/ @@ -1007,14 +1007,14 @@ class pkgAcqMetaClearSig : public pkgAcqMetaIndex public: void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual std::string Custom600Headers(); + virtual std::string Custom600Headers() const; /** \brief Create a new pkgAcqMetaClearSig. */ pkgAcqMetaClearSig(pkgAcquire *Owner, std::string const &URI, std::string const &URIDesc, std::string const &ShortDesc, std::string const &MetaIndexURI, std::string const &MetaIndexURIDesc, std::string const &MetaIndexShortDesc, std::string const &MetaSigURI, std::string const &MetaSigURIDesc, std::string const &MetaSigShortDesc, - const std::vector* IndexTargets, + const std::vector* IndexTargets, indexRecords* MetaIndexParser); virtual ~pkgAcqMetaClearSig(); }; @@ -1030,9 +1030,6 @@ class pkgAcqArchive : public pkgAcquire::Item /** \brief The package version being fetched. */ pkgCache::VerIterator Version; - /** \brief The fetch command that is currently being processed. */ - pkgAcquire::ItemDesc Desc; - /** \brief The list of sources from which to pick archives to * download this package from. */ @@ -1043,9 +1040,6 @@ class pkgAcqArchive : public pkgAcquire::Item */ pkgRecords *Recs; - /** \brief The hashsum of this package. */ - HashString ExpectedHash; - /** \brief A location in which the actual filename of the package * should be stored. */ @@ -1072,13 +1066,12 @@ class pkgAcqArchive : public pkgAcquire::Item public: virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string Hash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string DescURI() {return Desc.URI;}; - virtual std::string ShortDesc() {return Desc.ShortDesc;}; + virtual std::string DescURI() const {return Desc.URI;}; + virtual std::string ShortDesc() const {return Desc.ShortDesc;}; virtual void Finished(); - virtual std::string HashSum() {return ExpectedHash.toStr(); }; - virtual bool IsTrusted(); + virtual bool IsTrusted() const; /** \brief Create a new pkgAcqArchive. * @@ -1111,12 +1104,6 @@ class pkgAcqArchive : public pkgAcquire::Item */ class pkgAcqFile : public pkgAcquire::Item { - /** \brief The currently active download process. */ - pkgAcquire::ItemDesc Desc; - - /** \brief The hashsum of the file to download, if it is known. */ - HashString ExpectedHash; - /** \brief How many times to retry the download, set from * Acquire::Retries. */ @@ -1129,11 +1116,10 @@ class pkgAcqFile : public pkgAcquire::Item // Specialized action members virtual void Failed(std::string Message,pkgAcquire::MethodConfig *Cnf); - virtual void Done(std::string Message,unsigned long long Size,std::string CalcHash, + virtual void Done(std::string Message,unsigned long long Size, HashStringList const &CalcHashes, pkgAcquire::MethodConfig *Cnf); - virtual std::string DescURI() {return Desc.URI;}; - virtual std::string HashSum() {return ExpectedHash.toStr(); }; - virtual std::string Custom600Headers(); + virtual std::string DescURI() const {return Desc.URI;}; + virtual std::string Custom600Headers() const; /** \brief Create a new pkgAcqFile object. * @@ -1142,8 +1128,8 @@ class pkgAcqFile : public pkgAcquire::Item * * \param URI The URI to download. * - * \param Hash The hashsum of the file to download, if it is known; - * otherwise "". + * \param Hashes The hashsums of the file to download, if they are known; + * otherwise empty list. * * \param Size The size of the file to download, if it is known; * otherwise 0. @@ -1166,7 +1152,7 @@ class pkgAcqFile : public pkgAcquire::Item * is the absolute name to which the file should be downloaded. */ - pkgAcqFile(pkgAcquire *Owner, std::string URI, std::string Hash, unsigned long long Size, + pkgAcqFile(pkgAcquire *Owner, std::string URI, HashStringList const &Hashes, unsigned long long Size, std::string Desc, std::string ShortDesc, const std::string &DestDir="", const std::string &DestFilename="", bool IsIndexFile=false); diff --git a/apt-pkg/acquire-method.cc b/apt-pkg/acquire-method.cc index 746c553f1..e4a937d1d 100644 --- a/apt-pkg/acquire-method.cc +++ b/apt-pkg/acquire-method.cc @@ -147,6 +147,16 @@ void pkgAcqMethod::URIStart(FetchResult &Res) // AcqMethod::URIDone - A URI is finished /*{{{*/ // --------------------------------------------------------------------- /* */ +static void printHashStringList(HashStringList const * const list) +{ + for (HashStringList::const_iterator hash = list->begin(); hash != list->end(); ++hash) + { + // very old compatibility name for MD5Sum + if (hash->HashType() == "MD5Sum") + std::cout << "MD5-Hash: " << hash->HashValue() << "\n"; + std::cout << hash->HashType() << "-Hash: " << hash->HashValue() << "\n"; + } +} void pkgAcqMethod::URIDone(FetchResult &Res, FetchResult *Alt) { if (Queue == 0) @@ -164,15 +174,8 @@ void pkgAcqMethod::URIDone(FetchResult &Res, FetchResult *Alt) if (Res.LastModified != 0) std::cout << "Last-Modified: " << TimeRFC1123(Res.LastModified) << "\n"; - if (Res.MD5Sum.empty() == false) - std::cout << "MD5-Hash: " << Res.MD5Sum << "\n" - << "MD5Sum-Hash: " << Res.MD5Sum << "\n"; - if (Res.SHA1Sum.empty() == false) - std::cout << "SHA1-Hash: " << Res.SHA1Sum << "\n"; - if (Res.SHA256Sum.empty() == false) - std::cout << "SHA256-Hash: " << Res.SHA256Sum << "\n"; - if (Res.SHA512Sum.empty() == false) - std::cout << "SHA512-Hash: " << Res.SHA512Sum << "\n"; + printHashStringList(&Res.Hashes); + if (UsedMirror.empty() == false) std::cout << "UsedMirror: " << UsedMirror << "\n"; if (Res.GPGVOutput.empty() == false) @@ -200,15 +203,8 @@ void pkgAcqMethod::URIDone(FetchResult &Res, FetchResult *Alt) if (Alt->LastModified != 0) std::cout << "Alt-Last-Modified: " << TimeRFC1123(Alt->LastModified) << "\n"; - if (Alt->MD5Sum.empty() == false) - std::cout << "Alt-MD5-Hash: " << Alt->MD5Sum << "\n"; - if (Alt->SHA1Sum.empty() == false) - std::cout << "Alt-SHA1-Hash: " << Alt->SHA1Sum << "\n"; - if (Alt->SHA256Sum.empty() == false) - std::cout << "Alt-SHA256-Hash: " << Alt->SHA256Sum << "\n"; - if (Alt->SHA512Sum.empty() == false) - std::cout << "Alt-SHA512-Hash: " << Alt->SHA512Sum << "\n"; - + printHashStringList(&Alt->Hashes); + if (Alt->IMSHit == true) std::cout << "Alt-IMS-Hit: true\n"; } @@ -355,6 +351,15 @@ int pkgAcqMethod::Run(bool Single) Tmp->LastModified = 0; Tmp->IndexFile = StringToBool(LookupTag(Message,"Index-File"),false); Tmp->FailIgnore = StringToBool(LookupTag(Message,"Fail-Ignore"),false); + Tmp->ExpectedHashes = HashStringList(); + for (char const * const * t = HashString::SupportedHashes(); *t != NULL; ++t) + { + std::string tag = "Expected-"; + tag.append(*t); + std::string const hash = LookupTag(Message, tag.c_str()); + if (hash.empty() == false) + Tmp->ExpectedHashes.push_back(HashString(*t, hash)); + } Tmp->Next = 0; // Append it to the list @@ -442,12 +447,9 @@ pkgAcqMethod::FetchResult::FetchResult() : LastModified(0), // --------------------------------------------------------------------- /* This hides the number of hashes we are supporting from the caller. It just deals with the hash class. */ -void pkgAcqMethod::FetchResult::TakeHashes(Hashes &Hash) +void pkgAcqMethod::FetchResult::TakeHashes(class Hashes &Hash) { - MD5Sum = Hash.MD5.Result(); - SHA1Sum = Hash.SHA1.Result(); - SHA256Sum = Hash.SHA256.Result(); - SHA512Sum = Hash.SHA512.Result(); + Hashes = Hash.GetHashStringList(); } /*}}}*/ void pkgAcqMethod::Dequeue() { /*{{{*/ diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index 221ccf273..cbf79f860 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -20,6 +20,7 @@ #ifndef PKGLIB_ACQUIRE_METHOD_H #define PKGLIB_ACQUIRE_METHOD_H +#include #include #include @@ -33,7 +34,6 @@ #include #endif -class Hashes; class pkgAcqMethod { protected: @@ -47,14 +47,12 @@ class pkgAcqMethod time_t LastModified; bool IndexFile; bool FailIgnore; + HashStringList ExpectedHashes; }; struct FetchResult { - std::string MD5Sum; - std::string SHA1Sum; - std::string SHA256Sum; - std::string SHA512Sum; + HashStringList Hashes; std::vector GPGVOutput; time_t LastModified; bool IMSHit; @@ -62,7 +60,7 @@ class pkgAcqMethod unsigned long long Size; unsigned long long ResumePoint; - void TakeHashes(Hashes &Hash); + void TakeHashes(class Hashes &Hash); FetchResult(); }; diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index 047a655ce..54be8e99f 100644 --- a/apt-pkg/acquire-worker.cc +++ b/apt-pkg/acquire-worker.cc @@ -326,25 +326,30 @@ bool pkgAcquire::Worker::RunMessages() Owner->DestFile.c_str(), LookupTag(Message,"Size","0").c_str(),TotalSize); // see if there is a hash to verify - string RecivedHash; - HashString expectedHash(Owner->HashSum()); - if(!expectedHash.empty()) + HashStringList RecivedHashes; + HashStringList expectedHashes = Owner->HashSums(); + for (HashStringList::const_iterator hs = expectedHashes.begin(); hs != expectedHashes.end(); ++hs) { - string hashTag = expectedHash.HashType()+"-Hash"; - string hashSum = LookupTag(Message, hashTag.c_str()); - if(!hashSum.empty()) - RecivedHash = expectedHash.HashType() + ":" + hashSum; - if(_config->FindB("Debug::pkgAcquire::Auth", false) == true) - { - clog << "201 URI Done: " << Owner->DescURI() << endl - << "RecivedHash: " << RecivedHash << endl - << "ExpectedHash: " << expectedHash.toStr() - << endl << endl; - } + std::string const tagname = hs->HashType() + "-Hash"; + std::string const hashsum = LookupTag(Message, tagname.c_str()); + if (hashsum.empty() == false) + RecivedHashes.push_back(HashString(hs->HashType(), hashsum)); + } + + if(_config->FindB("Debug::pkgAcquire::Auth", false) == true) + { + std::clog << "201 URI Done: " << Owner->DescURI() << endl + << "RecivedHash:" << endl; + for (HashStringList::const_iterator hs = RecivedHashes.begin(); hs != RecivedHashes.end(); ++hs) + std::clog << "\t- " << hs->toStr() << std::endl; + std::clog << "ExpectedHash:" << endl; + for (HashStringList::const_iterator hs = expectedHashes.begin(); hs != expectedHashes.end(); ++hs) + std::clog << "\t- " << hs->toStr() << std::endl; + std::clog << endl; } - Owner->Done(Message, ServerSize, RecivedHash.c_str(), Config); + Owner->Done(Message, ServerSize, RecivedHashes, Config); ItemDone(); - + // Log that we are done if (Log != 0) { @@ -525,6 +530,9 @@ bool pkgAcquire::Worker::QueueItem(pkgAcquire::Queue::QItem *Item) Message.reserve(300); Message += "URI: " + Item->URI; Message += "\nFilename: " + Item->Owner->DestFile; + HashStringList const hsl = Item->Owner->HashSums(); + for (HashStringList::const_iterator hs = hsl.begin(); hs != hsl.end(); ++hs) + Message += "\nExpected-" + hs->HashType() + ": " + hs->HashValue(); Message += Item->Owner->Custom600Headers(); Message += "\n\n"; diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index 057bc24cd..8467dab5b 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -31,6 +31,7 @@ #include #include #include +#include #include #include @@ -824,7 +825,9 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) // Compute the total number of bytes to fetch unsigned int Unknown = 0; unsigned int Count = 0; - for (pkgAcquire::ItemCIterator I = Owner->ItemsBegin(); I != Owner->ItemsEnd(); + bool UnfetchedReleaseFiles = false; + for (pkgAcquire::ItemCIterator I = Owner->ItemsBegin(); + I != Owner->ItemsEnd(); ++I, ++Count) { TotalItems++; @@ -835,6 +838,13 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) if ((*I)->Local == true) continue; + // see if the method tells us to expect more + TotalItems += (*I)->ExpectedAdditionalItems; + + // check if there are unfetched Release files + if ((*I)->Complete == false && (*I)->ExpectedAdditionalItems > 0) + UnfetchedReleaseFiles = true; + TotalBytes += (*I)->FileSize; if ((*I)->Complete == true) CurrentBytes += (*I)->FileSize; @@ -846,6 +856,7 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) unsigned long long ResumeSize = 0; for (pkgAcquire::Worker *I = Owner->WorkersBegin(); I != 0; I = Owner->WorkerStep(I)) + { if (I->CurrentItem != 0 && I->CurrentItem->Owner->Complete == false) { CurrentBytes += I->CurrentSize; @@ -856,6 +867,7 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) I->CurrentItem->Owner->Complete == false) TotalBytes += I->CurrentSize; } + } // Normalize the figures and account for unknown size downloads if (TotalBytes <= 0) @@ -866,6 +878,12 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) // Wha?! Is not supposed to happen. if (CurrentBytes > TotalBytes) CurrentBytes = TotalBytes; + + // debug + if (_config->FindB("Debug::acquire::progress", false) == true) + std::clog << " Bytes: " + << SizeToStr(CurrentBytes) << " / " << SizeToStr(TotalBytes) + << std::endl; // Compute the CPS struct timeval NewTime; @@ -886,6 +904,14 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) Time = NewTime; } + // calculate the percentage, if we have too little data assume 1% + if (TotalBytes > 0 && UnfetchedReleaseFiles) + Percent = 0; + else + // use both files and bytes because bytes can be unreliable + Percent = (0.8 * (CurrentBytes/float(TotalBytes)*100.0) + + 0.2 * (CurrentItems/float(TotalItems)*100.0)); + int fd = _config->FindI("APT::Status-Fd",-1); if(fd > 0) { @@ -903,13 +929,11 @@ bool pkgAcquireStatus::Pulse(pkgAcquire *Owner) else snprintf(msg,sizeof(msg), _("Retrieving file %li of %li"), i, TotalItems); - - // build the status str status << "dlstatus:" << i - << ":" << (CurrentBytes/float(TotalBytes)*100.0) - << ":" << msg - << endl; + << ":" << std::setprecision(3) << Percent + << ":" << msg + << endl; std::string const dlstatus = status.str(); FileFd::Write(fd, dlstatus.c_str(), dlstatus.size()); diff --git a/apt-pkg/acquire.h b/apt-pkg/acquire.h index ef16d8556..0113021b2 100644 --- a/apt-pkg/acquire.h +++ b/apt-pkg/acquire.h @@ -714,6 +714,10 @@ class pkgAcquireStatus /** \brief The number of items that have been successfully downloaded. */ unsigned long CurrentItems; + /** \brief The estimated percentage of the download (0-100) + */ + double Percent; + public: /** \brief If \b true, the download scheduler should call Pulse() diff --git a/apt-pkg/aptconfiguration.cc b/apt-pkg/aptconfiguration.cc index 9982759c6..94b6bc246 100644 --- a/apt-pkg/aptconfiguration.cc +++ b/apt-pkg/aptconfiguration.cc @@ -540,7 +540,7 @@ std::string const Configuration::getBuildProfilesString() { return ""; std::vector::const_iterator p = profiles.begin(); std::string list = *p; - for (; p != profiles.end(); ++p) + for (++p; p != profiles.end(); ++p) list.append(",").append(*p); return list; } diff --git a/apt-pkg/cachefilter.h b/apt-pkg/cachefilter.h index 49d2855f5..d9b957c67 100644 --- a/apt-pkg/cachefilter.h +++ b/apt-pkg/cachefilter.h @@ -16,71 +16,14 @@ namespace APT { namespace CacheFilter { -#define PACKAGE_MATCHER_ABI_COMPAT 1 -#ifdef PACKAGE_MATCHER_ABI_COMPAT - -// PackageNameMatchesRegEx /*{{{*/ -class PackageNameMatchesRegEx { - /** \brief dpointer placeholder (for later in case we need it) */ - void *d; - regex_t* pattern; -public: - PackageNameMatchesRegEx(std::string const &Pattern); - bool operator() (pkgCache::PkgIterator const &Pkg); - bool operator() (pkgCache::GrpIterator const &Grp); - ~PackageNameMatchesRegEx(); -}; - /*}}}*/ -// PackageNameMatchesFnmatch /*{{{*/ - class PackageNameMatchesFnmatch { - /** \brief dpointer placeholder (for later in case we need it) */ - void *d; - const std::string Pattern; -public: - PackageNameMatchesFnmatch(std::string const &Pattern) - : Pattern(Pattern) {}; - bool operator() (pkgCache::PkgIterator const &Pkg); - bool operator() (pkgCache::GrpIterator const &Grp); - ~PackageNameMatchesFnmatch() {}; -}; - /*}}}*/ -// PackageArchitectureMatchesSpecification /*{{{*/ -/** \class PackageArchitectureMatchesSpecification - \brief matching against architecture specification strings - - The strings are of the format \-\ where either component, - or the whole string, can be the wildcard "any" as defined in - debian-policy §11.1 "Architecture specification strings". - - Examples: i386, mipsel, linux-any, any-amd64, any */ -class PackageArchitectureMatchesSpecification { - std::string literal; - std::string complete; - bool isPattern; - /** \brief dpointer placeholder (for later in case we need it) */ - void *d; -public: - /** \brief matching against architecture specification strings - * - * @param pattern is the architecture specification string - * @param isPattern defines if the given \b pattern is a - * architecture specification pattern to match others against - * or if it is the fixed string and matched against patterns - */ - PackageArchitectureMatchesSpecification(std::string const &pattern, bool const isPattern = true); - bool operator() (char const * const &arch); - bool operator() (pkgCache::PkgIterator const &Pkg); - bool operator() (pkgCache::VerIterator const &Ver); - ~PackageArchitectureMatchesSpecification(); -}; - -#else - class PackageMatcher { public: - virtual bool operator() (pkgCache::PkgIterator const &Pkg) { return false; }; - virtual bool operator() (pkgCache::GrpIterator const &Grp) { return false; }; - virtual bool operator() (pkgCache::VerIterator const &Ver) { return false; }; + virtual bool operator() (pkgCache::PkgIterator const &/*Pkg*/) { + return false; }; + virtual bool operator() (pkgCache::GrpIterator const &/*Grp*/) { + return false; }; + virtual bool operator() (pkgCache::VerIterator const &/*Ver*/) { + return false; }; virtual ~PackageMatcher() {}; }; @@ -139,7 +82,6 @@ public: virtual bool operator() (pkgCache::VerIterator const &Ver); virtual ~PackageArchitectureMatchesSpecification(); }; -#endif /*}}}*/ } } diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index 2fdf8404d..f2aae7272 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -160,7 +160,11 @@ class pkgCache::PkgIterator: public Iterator { // Accessors inline const char *Name() const {return S->Name == 0?0:Owner->StrP + S->Name;} - inline const char *Section() const {return S->Section == 0?0:Owner->StrP + S->Section;} + // Versions have sections - and packages can have different versions with different sections + // so this interface is broken by design. It used to return the section of the "first parsed + // package stanza", but as this can potentially be anything it now returns the section of the + // newest version instead (if any). aka: Run as fast as you can to Version.Section(). + APT_DEPRECATED const char *Section() const; inline bool Purge() const {return S->CurrentState == pkgCache::State::Purge || (S->CurrentVer == 0 && S->CurrentState == pkgCache::State::NotInstalled);} inline const char *Arch() const {return S->Arch == 0?0:Owner->StrP + S->Arch;} diff --git a/apt-pkg/cacheset.cc b/apt-pkg/cacheset.cc index 2ed6a96da..5d7f28515 100644 --- a/apt-pkg/cacheset.cc +++ b/apt-pkg/cacheset.cc @@ -321,7 +321,8 @@ bool PackageContainerInterface::FromString(PackageContainerInterface * const pci if (FromGroup(pci, Cache, str, helper) == false && FromTask(pci, Cache, str, helper) == false && #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) - FromFnmatch(pci, Cache, str, helper) == false) + // FIXME: hm, hm, regexp/fnmatch incompatible? + FromFnmatch(pci, Cache, str, helper) == false && #endif FromRegEx(pci, Cache, str, helper) == false) { @@ -610,7 +611,7 @@ void CacheSetHelper::canNotFindRegEx(PackageContainerInterface * const /*pci*/, } #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) // canNotFindFnmatch - handle the case no package is found by a fnmatch /*{{{*/ -void CacheSetHelper::canNotFindFnmatch(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) { + void CacheSetHelper::canNotFindFnmatch(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string pattern) { if (ShowError == true) _error->Insert(ErrorType, _("Couldn't find any package by glob '%s'"), pattern.c_str()); } @@ -676,8 +677,8 @@ APT_CONST void CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const &/ /*}}}*/ #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) // showFnmatchSelection /*{{{*/ -APT_CONST void CacheSetHelper::showFnmatchSelection(pkgCache::PkgIterator const &pkg, - std::string const &pattern) { +APT_CONST void CacheSetHelper::showFnmatchSelection(pkgCache::PkgIterator const &/*pkg*/, + std::string const &/*pattern*/) { } /*}}}*/ #endif diff --git a/apt-pkg/cacheset.h b/apt-pkg/cacheset.h index 16a3daa42..36f41c34d 100644 --- a/apt-pkg/cacheset.h +++ b/apt-pkg/cacheset.h @@ -118,7 +118,16 @@ public: inline const char *Name() const {return getPkg().Name(); } inline std::string FullName(bool const Pretty) const { return getPkg().FullName(Pretty); } inline std::string FullName() const { return getPkg().FullName(); } - inline const char *Section() const {return getPkg().Section(); } + APT_DEPRECATED inline const char *Section() const { +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + return getPkg().Section(); +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + } inline bool Purge() const {return getPkg().Purge(); } inline const char *Arch() const {return getPkg().Arch(); } inline pkgCache::GrpIterator Group() const { return getPkg().Group(); } @@ -584,7 +593,7 @@ public: /*{{{*/ static VersionContainer FromString(pkgCacheFile &Cache, std::string const &pkg, Version const &fallback, CacheSetHelper &helper, - bool const onlyFromName = false) { + bool const /*onlyFromName = false*/) { VersionContainer vercon; VersionContainerInterface::FromString(&vercon, Cache, pkg, fallback, helper); return vercon; diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 00f6ad0f9..fbe180f8e 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -254,7 +254,9 @@ string Configuration::FindDir(const char *Name,const char *Default) const // --------------------------------------------------------------------- /* Returns a vector of config values under the given item */ #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) -vector Configuration::FindVector(const char *Name) const { return FindVector(Name, ""); } +vector Configuration::FindVector(const char *Name) const { + return FindVector(Name, ""); +} #endif vector Configuration::FindVector(const char *Name, std::string const &Default) const { diff --git a/apt-pkg/contrib/configuration.h b/apt-pkg/contrib/configuration.h index c256139f4..6345c8a5d 100644 --- a/apt-pkg/contrib/configuration.h +++ b/apt-pkg/contrib/configuration.h @@ -84,12 +84,10 @@ class Configuration * \param Default list of values separated by commas */ std::vector FindVector(const char *Name, std::string const &Default) const; std::vector FindVector(std::string const &Name, std::string const &Default) const { return FindVector(Name.c_str(), Default); }; -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) - std::vector FindVector(const char *Name) const { return FindVector(Name, ""); }; -#else +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) std::vector FindVector(const char *Name) const; #endif - std::vector FindVector(std::string const &Name) const { return FindVector(Name.c_str(), ""); }; + std::vector FindVector(std::string const &Name="") const { return FindVector(Name.c_str(), ""); }; int FindI(const char *Name,int const &Default = 0) const; int FindI(std::string const &Name,int const &Default = 0) const {return FindI(Name.c_str(),Default);}; bool FindB(const char *Name,bool const &Default = false) const; diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 1ba4674e5..6b8f04dea 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -47,6 +47,7 @@ #include #include #include +#include #include #include @@ -656,6 +657,22 @@ string flCombine(string Dir,string File) return Dir + '/' + File; } /*}}}*/ +// flAbsPath - Return the absolute path of the filename /*{{{*/ +// --------------------------------------------------------------------- +/* */ +string flAbsPath(string File) +{ + char *p = realpath(File.c_str(), NULL); + if (p == NULL) + { + _error->Errno("realpath", "flAbsPath failed"); + return ""; + } + std::string AbsPath(p); + free(p); + return AbsPath; +} + /*}}}*/ // SetCloseExec - Set the close on exec flag /*{{{*/ // --------------------------------------------------------------------- /* */ @@ -836,6 +853,27 @@ bool ExecWait(pid_t Pid,const char *Name,bool Reap) } /*}}}*/ + +// StartsWithGPGClearTextSignature - Check if a file is Pgp/GPG clearsigned /*{{{*/ +// --------------------------------------------------------------------- +/* */ +bool StartsWithGPGClearTextSignature(string const &FileName) +{ + static const char* SIGMSG = "-----BEGIN PGP SIGNED MESSAGE-----\n"; + char buffer[strlen(SIGMSG)+1]; + FILE* gpg = fopen(FileName.c_str(), "r"); + if (gpg == NULL) + return false; + + char const * const test = fgets(buffer, sizeof(buffer), gpg); + fclose(gpg); + if (test == NULL || strcmp(buffer, SIGMSG) != 0) + return false; + + return true; +} + + class FileFdPrivate { /*{{{*/ public: #ifdef HAVE_ZLIB @@ -1913,7 +1951,6 @@ bool FileFd::Close() { if ((Flags & Compressed) != Compressed && iFd > 0 && close(iFd) != 0) Res &= _error->Errno("close",_("Problem closing the file %s"), FileName.c_str()); - if (d != NULL) { Res &= d->CloseDown(FileName); @@ -2040,6 +2077,31 @@ std::string GetTempDir() return string(tmpdir); } +FileFd* GetTempFile(std::string const &Prefix, bool ImmediateUnlink) +{ + char fn[512]; + FileFd *Fd = new FileFd(); + + std::string tempdir = GetTempDir(); + snprintf(fn, sizeof(fn), "%s/%s.XXXXXX", + tempdir.c_str(), Prefix.c_str()); + int fd = mkstemp(fn); + if(ImmediateUnlink) + unlink(fn); + if (fd < 0) + { + _error->Errno("GetTempFile",_("Unable to mkstemp %s"), fn); + return NULL; + } + if (!Fd->OpenDescriptor(fd, FileFd::WriteOnly, FileFd::None, true)) + { + _error->Errno("GetTempFile",_("Unable to write to %s"),fn); + return NULL; + } + + return Fd; +} + bool Rename(std::string From, std::string To) { if (rename(From.c_str(),To.c_str()) != 0) @@ -2050,3 +2112,75 @@ bool Rename(std::string From, std::string To) } return true; } + +bool Popen(const char* Args[], FileFd &Fd, pid_t &Child, FileFd::OpenMode Mode) +{ + int fd; + if (Mode != FileFd::ReadOnly && Mode != FileFd::WriteOnly) + return _error->Error("Popen supports ReadOnly (x)or WriteOnly mode only"); + + int Pipe[2] = {-1, -1}; + if(pipe(Pipe) != 0) + { + return _error->Errno("pipe", _("Failed to create subprocess IPC")); + return NULL; + } + std::set keep_fds; + keep_fds.insert(Pipe[0]); + keep_fds.insert(Pipe[1]); + Child = ExecFork(keep_fds); + if(Child < 0) + return _error->Errno("fork", "Failed to fork"); + if(Child == 0) + { + if(Mode == FileFd::ReadOnly) + { + close(Pipe[0]); + fd = Pipe[1]; + } + else if(Mode == FileFd::WriteOnly) + { + close(Pipe[1]); + fd = Pipe[0]; + } + + if(Mode == FileFd::ReadOnly) + { + dup2(fd, 1); + dup2(fd, 2); + } else if(Mode == FileFd::WriteOnly) + dup2(fd, 0); + + execv(Args[0], (char**)Args); + _exit(100); + } + if(Mode == FileFd::ReadOnly) + { + close(Pipe[1]); + fd = Pipe[0]; + } else if(Mode == FileFd::WriteOnly) + { + close(Pipe[0]); + fd = Pipe[1]; + } + Fd.OpenDescriptor(fd, Mode, FileFd::None, true); + + return true; +} + +bool DropPrivs() +{ + if (getuid() != 0) + return true; + + const std::string nobody = _config->Find("APT::User::Nobody", "nobody"); + struct passwd *pw = getpwnam(nobody.c_str()); + if (pw == NULL) + return _error->Warning("No user %s, can not drop rights", nobody.c_str()); + if (setgid(pw->pw_gid) != 0) + return _error->Errno("setgid", "Failed to setgid"); + if (setuid(pw->pw_uid) != 0) + return _error->Errno("setuid", "Failed to setuid"); + + return true; +} diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index cc1a98eae..e04f75e2a 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -168,6 +168,8 @@ time_t GetModificationTime(std::string const &Path); bool Rename(std::string From, std::string To); std::string GetTempDir(); +FileFd* GetTempFile(std::string const &Prefix = "", + bool ImmediateUnlink = true); /** \brief Ensure the existence of the given Path * @@ -191,6 +193,13 @@ pid_t ExecFork(std::set keep_fds); void MergeKeepFdsFromConfiguration(std::set &keep_fds); bool ExecWait(pid_t Pid,const char *Name,bool Reap = false); + +// check if the given file starts with a PGP cleartext signature +bool StartsWithGPGClearTextSignature(std::string const &FileName); + +// process releated +bool DropPrivs(); + // File string manipulators std::string flNotDir(std::string File); std::string flNotFile(std::string File); @@ -198,7 +207,23 @@ std::string flNoLink(std::string File); std::string flExtension(std::string File); std::string flCombine(std::string Dir,std::string File); +/** \brief Takes a file path and returns the absolute path + */ +std::string flAbsPath(std::string File); + // simple c++ glob std::vector Glob(std::string const &pattern, int flags=0); +/** \brief Popen() implementation that execv() instead of using a shell + * + * \param Args the execv style command to run + * \param FileFd is a referenz to the FileFd to use for input or output + * \param Child a reference to the integer that stores the child pid + * Note that you must call ExecWait() or similar to cleanup + * \param Mode is either FileFd::ReadOnly or FileFd::WriteOnly + * \return true on success, false on failure with _error set + */ +bool Popen(const char* Args[], FileFd &Fd, pid_t &Child, FileFd::OpenMode Mode); + + #endif diff --git a/apt-pkg/contrib/hashes.cc b/apt-pkg/contrib/hashes.cc index 15f83615d..199e395f6 100644 --- a/apt-pkg/contrib/hashes.cc +++ b/apt-pkg/contrib/hashes.cc @@ -27,7 +27,7 @@ #include /*}}}*/ -const char* HashString::_SupportedHashes[] = +const char * HashString::_SupportedHashes[] = { "SHA512", "SHA256", "SHA1", "MD5Sum", NULL }; @@ -42,11 +42,16 @@ HashString::HashString(std::string Type, std::string Hash) : Type(Type), Hash(Ha HashString::HashString(std::string StringedHash) /*{{{*/ { - // legacy: md5sum without "MD5Sum:" prefix - if (StringedHash.find(":") == std::string::npos && StringedHash.size() == 32) + if (StringedHash.find(":") == std::string::npos) { - Type = "MD5Sum"; - Hash = StringedHash; + // legacy: md5sum without "MD5Sum:" prefix + if (StringedHash.size() == 32) + { + Type = "MD5Sum"; + Hash = StringedHash; + } + if(_config->FindB("Debug::Hashes",false) == true) + std::clog << "HashString(string): invalid StringedHash " << StringedHash << std::endl; return; } std::string::size_type pos = StringedHash.find(":"); @@ -82,25 +87,25 @@ std::string HashString::GetHashForFile(std::string filename) const /*{{{*/ std::string fileHash; FileFd Fd(filename, FileFd::ReadOnly); - if(Type == "MD5Sum") + if(strcasecmp(Type.c_str(), "MD5Sum") == 0) { MD5Summation MD5; MD5.AddFD(Fd); fileHash = (std::string)MD5.Result(); } - else if (Type == "SHA1") + else if (strcasecmp(Type.c_str(), "SHA1") == 0) { SHA1Summation SHA1; SHA1.AddFD(Fd); fileHash = (std::string)SHA1.Result(); } - else if (Type == "SHA256") + else if (strcasecmp(Type.c_str(), "SHA256") == 0) { SHA256Summation SHA256; SHA256.AddFD(Fd); fileHash = (std::string)SHA256.Result(); } - else if (Type == "SHA512") + else if (strcasecmp(Type.c_str(), "SHA512") == 0) { SHA512Summation SHA512; SHA512.AddFD(Fd); @@ -111,26 +116,147 @@ std::string HashString::GetHashForFile(std::string filename) const /*{{{*/ return fileHash; } /*}}}*/ -const char** HashString::SupportedHashes() +const char** HashString::SupportedHashes() /*{{{*/ { return _SupportedHashes; } - -APT_PURE bool HashString::empty() const + /*}}}*/ +APT_PURE bool HashString::empty() const /*{{{*/ { return (Type.empty() || Hash.empty()); } + /*}}}*/ +std::string HashString::toStr() const /*{{{*/ +{ + return Type + ":" + Hash; +} + /*}}}*/ +APT_PURE bool HashString::operator==(HashString const &other) const /*{{{*/ +{ + return (strcasecmp(Type.c_str(), other.Type.c_str()) == 0 && Hash == other.Hash); +} +APT_PURE bool HashString::operator!=(HashString const &other) const +{ + return !(*this == other); +} + /*}}}*/ + +bool HashStringList::usable() const /*{{{*/ +{ + if (empty() == true) + return false; + std::string const forcedType = _config->Find("Acquire::ForceHash", ""); + if (forcedType.empty() == true) + return true; + return find(forcedType) != NULL; +} + /*}}}*/ +HashString const * HashStringList::find(char const * const type) const /*{{{*/ +{ + if (type == NULL || type[0] == '\0') + { + std::string const forcedType = _config->Find("Acquire::ForceHash", ""); + if (forcedType.empty() == false) + return find(forcedType.c_str()); + for (char const * const * t = HashString::SupportedHashes(); *t != NULL; ++t) + for (std::vector::const_iterator hs = list.begin(); hs != list.end(); ++hs) + if (strcasecmp(hs->HashType().c_str(), *t) == 0) + return &*hs; + return NULL; + } + for (std::vector::const_iterator hs = list.begin(); hs != list.end(); ++hs) + if (strcasecmp(hs->HashType().c_str(), type) == 0) + return &*hs; + return NULL; +} + /*}}}*/ +bool HashStringList::supported(char const * const type) /*{{{*/ +{ + for (char const * const * t = HashString::SupportedHashes(); *t != NULL; ++t) + if (strcasecmp(*t, type) == 0) + return true; + return false; +} + /*}}}*/ +bool HashStringList::push_back(const HashString &hashString) /*{{{*/ +{ + if (hashString.HashType().empty() == true || + hashString.HashValue().empty() == true || + supported(hashString.HashType().c_str()) == false) + return false; + + // ensure that each type is added only once + HashString const * const hs = find(hashString.HashType().c_str()); + if (hs != NULL) + return *hs == hashString; -std::string HashString::toStr() const + list.push_back(hashString); + return true; +} + /*}}}*/ +bool HashStringList::VerifyFile(std::string filename) const /*{{{*/ { - return Type + std::string(":") + Hash; + if (list.empty() == true) + return false; + HashString const * const hs = find(NULL); + if (hs == NULL || hs->VerifyFile(filename) == false) + return false; + return true; } + /*}}}*/ +bool HashStringList::operator==(HashStringList const &other) const /*{{{*/ +{ + std::string const forcedType = _config->Find("Acquire::ForceHash", ""); + if (forcedType.empty() == false) + { + HashString const * const hs = other.find(forcedType); + HashString const * const ohs = other.find(forcedType); + if (hs == NULL || ohs == NULL) + return false; + return hs == ohs; + } + short matches = 0; + for (const_iterator hs = begin(); hs != end(); ++hs) + { + HashString const * const ohs = other.find(hs->HashType()); + if (ohs == NULL) + continue; + if (*hs != *ohs) + return false; + ++matches; + } + if (matches == 0) + return false; + return true; +} +bool HashStringList::operator!=(HashStringList const &other) const +{ + return !(*this == other); +} + /*}}}*/ -// Hashes::AddFD - Add the contents of the FD /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool Hashes::AddFD(int const Fd,unsigned long long Size, bool const addMD5, - bool const addSHA1, bool const addSHA256, bool const addSHA512) +// Hashes::Add* - Add the contents of data or FD /*{{{*/ +bool Hashes::Add(const unsigned char * const Data,unsigned long long const Size, unsigned int const Hashes) +{ + bool Res = true; +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + if ((Hashes & MD5SUM) == MD5SUM) + Res &= MD5.Add(Data, Size); + if ((Hashes & SHA1SUM) == SHA1SUM) + Res &= SHA1.Add(Data, Size); + if ((Hashes & SHA256SUM) == SHA256SUM) + Res &= SHA256.Add(Data, Size); + if ((Hashes & SHA512SUM) == SHA512SUM) + Res &= SHA512.Add(Data, Size); +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + return Res; +} +bool Hashes::AddFD(int const Fd,unsigned long long Size, unsigned int const Hashes) { unsigned char Buf[64*64]; bool const ToEOF = (Size == UntilEOF); @@ -144,19 +270,12 @@ bool Hashes::AddFD(int const Fd,unsigned long long Size, bool const addMD5, if (ToEOF && Res == 0) // EOF break; Size -= Res; - if (addMD5 == true) - MD5.Add(Buf,Res); - if (addSHA1 == true) - SHA1.Add(Buf,Res); - if (addSHA256 == true) - SHA256.Add(Buf,Res); - if (addSHA512 == true) - SHA512.Add(Buf,Res); + if (Add(Buf, Res, Hashes) == false) + return false; } return true; } -bool Hashes::AddFD(FileFd &Fd,unsigned long long Size, bool const addMD5, - bool const addSHA1, bool const addSHA256, bool const addSHA512) +bool Hashes::AddFD(FileFd &Fd,unsigned long long Size, unsigned int const Hashes) { unsigned char Buf[64*64]; bool const ToEOF = (Size == 0); @@ -175,15 +294,35 @@ bool Hashes::AddFD(FileFd &Fd,unsigned long long Size, bool const addMD5, else if (a == 0) // EOF break; Size -= a; - if (addMD5 == true) - MD5.Add(Buf, a); - if (addSHA1 == true) - SHA1.Add(Buf, a); - if (addSHA256 == true) - SHA256.Add(Buf, a); - if (addSHA512 == true) - SHA512.Add(Buf, a); + if (Add(Buf, a, Hashes) == false) + return false; } return true; } /*}}}*/ +HashStringList Hashes::GetHashStringList() +{ + HashStringList hashes; +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + hashes.push_back(HashString("MD5Sum", MD5.Result().Value())); + hashes.push_back(HashString("SHA1", SHA1.Result().Value())); + hashes.push_back(HashString("SHA256", SHA256.Result().Value())); + hashes.push_back(HashString("SHA512", SHA512.Result().Value())); +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + return hashes; +} +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" + #pragma GCC diagnostic ignored "-Wsuggest-attribute=const" +#endif +Hashes::Hashes() {} +Hashes::~Hashes() {} +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif diff --git a/apt-pkg/contrib/hashes.h b/apt-pkg/contrib/hashes.h index 7a62f8a8f..caeba006d 100644 --- a/apt-pkg/contrib/hashes.h +++ b/apt-pkg/contrib/hashes.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -41,7 +42,7 @@ class HashString protected: std::string Type; std::string Hash; - static const char* _SupportedHashes[10]; + static const char * _SupportedHashes[10]; // internal helper std::string GetHashForFile(std::string filename) const; @@ -52,7 +53,8 @@ class HashString HashString(); // get hash type used - std::string HashType() { return Type; }; + std::string HashType() const { return Type; }; + std::string HashValue() const { return Hash; }; // verify the given filename against the currently loaded hash bool VerifyFile(std::string filename) const; @@ -64,37 +66,160 @@ class HashString // helper std::string toStr() const; // convert to str as "type:hash" bool empty() const; + bool operator==(HashString const &other) const; + bool operator!=(HashString const &other) const; // return the list of hashes we support static APT_CONST const char** SupportedHashes(); }; +class HashStringList +{ + public: + /** find best hash if no specific one is requested + * + * @param type of the checksum to return, can be \b NULL + * @return If type is \b NULL (or the empty string) it will + * return the 'best' hash; otherwise the hash which was + * specifically requested. If no hash is found \b NULL will be returned. + */ + HashString const * find(char const * const type) const; + HashString const * find(std::string const &type) const { return find(type.c_str()); } + /** check if the given hash type is supported + * + * @param type to check + * @return true if supported, otherwise false + */ + static APT_PURE bool supported(char const * const type); + /** add the given #HashString to the list + * + * @param hashString to add + * @return true if the hash is added because it is supported and + * not already a different hash of the same type included, otherwise false + */ + bool push_back(const HashString &hashString); + /** @return size of the list of HashStrings */ + size_t size() const { return list.size(); } + + /** take the 'best' hash and verify file with it + * + * @param filename to verify + * @return true if the file matches the hashsum, otherwise false + */ + bool VerifyFile(std::string filename) const; + + /** is the list empty ? + * + * @return \b true if the list is empty, otherwise \b false + */ + bool empty() const { return list.empty(); } + + /** has the list at least one good entry + * + * similar to #empty, but handles forced hashes. + * + * @return if no hash is forced, same result as #empty, + * if one is forced \b true if this has is available, \b false otherwise + */ + bool usable() const; + + typedef std::vector::const_iterator const_iterator; + + /** iterator to the first element */ + const_iterator begin() const { return list.begin(); } + + /** iterator to the end element */ + const_iterator end() const { return list.end(); } + + /** start fresh with a clear list */ + void clear() { list.clear(); } + + /** compare two HashStringList for similarity. + * + * Two lists are similar if at least one hashtype is in both lists + * and the hashsum matches. All hashes are checked by default, + * if one doesn't match false is returned regardless of how many + * matched before. If a hash is forced, only this hash is compared, + * all others are ignored. + */ + bool operator==(HashStringList const &other) const; + bool operator!=(HashStringList const &other) const; + + HashStringList() {} + + // simplifying API-compatibility constructors + HashStringList(std::string const &hash) { + if (hash.empty() == false) + list.push_back(HashString(hash)); + } + HashStringList(char const * const hash) { + if (hash != NULL && hash[0] != '\0') + list.push_back(HashString(hash)); + } + + private: + std::vector list; +}; + class Hashes { + /** \brief dpointer placeholder */ + void *d; + public: + /* those will disappear in the future as it is hard to add new ones this way. + * Use Add* to build the results and get them via GetHashStringList() instead */ + APT_DEPRECATED MD5Summation MD5; + APT_DEPRECATED SHA1Summation SHA1; + APT_DEPRECATED SHA256Summation SHA256; + APT_DEPRECATED SHA512Summation SHA512; - MD5Summation MD5; - SHA1Summation SHA1; - SHA256Summation SHA256; - SHA512Summation SHA512; - static const int UntilEOF = 0; - inline bool Add(const unsigned char *Data,unsigned long long Size) + bool Add(const unsigned char * const Data, unsigned long long const Size, unsigned int const Hashes = ~0); + inline bool Add(const char * const Data) + {return Add((unsigned char const * const)Data,strlen(Data));}; + inline bool Add(const unsigned char * const Beg,const unsigned char * const End) + {return Add(Beg,End-Beg);}; + + enum SupportedHashes { MD5SUM = (1 << 0), SHA1SUM = (1 << 1), SHA256SUM = (1 << 2), + SHA512SUM = (1 << 3) }; + bool AddFD(int const Fd,unsigned long long Size = 0, unsigned int const Hashes = ~0); + bool AddFD(FileFd &Fd,unsigned long long Size = 0, unsigned int const Hashes = ~0); + + HashStringList GetHashStringList(); + +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + Hashes(); + virtual ~Hashes(); +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + + private: + APT_HIDDEN APT_CONST inline unsigned int boolsToFlag(bool const addMD5, bool const addSHA1, bool const addSHA256, bool const addSHA512) { - return MD5.Add(Data,Size) && SHA1.Add(Data,Size) && SHA256.Add(Data,Size) && SHA512.Add(Data,Size); + unsigned int Hashes = ~0; + if (addMD5 == false) Hashes &= ~MD5SUM; + if (addSHA1 == false) Hashes &= ~SHA1SUM; + if (addSHA256 == false) Hashes &= ~SHA256SUM; + if (addSHA512 == false) Hashes &= ~SHA512SUM; + return Hashes; + } + + public: + APT_DEPRECATED bool AddFD(int const Fd, unsigned long long Size, bool const addMD5, + bool const addSHA1, bool const addSHA256, bool const addSHA512) { + return AddFD(Fd, Size, boolsToFlag(addMD5, addSHA1, addSHA256, addSHA512)); + }; + + APT_DEPRECATED bool AddFD(FileFd &Fd, unsigned long long Size, bool const addMD5, + bool const addSHA1, bool const addSHA256, bool const addSHA512) { + return AddFD(Fd, Size, boolsToFlag(addMD5, addSHA1, addSHA256, addSHA512)); }; - inline bool Add(const char *Data) {return Add((unsigned char const *)Data,strlen(Data));}; - inline bool AddFD(int const Fd,unsigned long long Size = 0) - { return AddFD(Fd, Size, true, true, true, true); }; - bool AddFD(int const Fd, unsigned long long Size, bool const addMD5, - bool const addSHA1, bool const addSHA256, bool const addSHA512); - inline bool AddFD(FileFd &Fd,unsigned long long Size = 0) - { return AddFD(Fd, Size, true, true, true, true); }; - bool AddFD(FileFd &Fd, unsigned long long Size, bool const addMD5, - bool const addSHA1, bool const addSHA256, bool const addSHA512); - inline bool Add(const unsigned char *Beg,const unsigned char *End) - {return Add(Beg,End-Beg);}; }; #endif diff --git a/apt-pkg/contrib/macros.h b/apt-pkg/contrib/macros.h index 2d6448e5e..b268ce24c 100644 --- a/apt-pkg/contrib/macros.h +++ b/apt-pkg/contrib/macros.h @@ -138,7 +138,7 @@ // Non-ABI-Breaks should only increase RELEASE number. // See also buildlib/libversion.mak #define APT_PKG_MAJOR 4 -#define APT_PKG_MINOR 12 +#define APT_PKG_MINOR 13 #define APT_PKG_RELEASE 0 #endif diff --git a/apt-pkg/contrib/netrc.cc b/apt-pkg/contrib/netrc.cc index feaed67c8..1e3778f45 100644 --- a/apt-pkg/contrib/netrc.cc +++ b/apt-pkg/contrib/netrc.cc @@ -152,18 +152,6 @@ static int parsenetrc_string (char *host, std::string &login, std::string &passw return retcode; } -// for some unknown reason this method is exported so keep a compatible interface for now … -int parsenetrc (char *host, char *login, char *password, char *netrcfile = NULL) -{ - std::string login_string, password_string; - int const ret = parsenetrc_string(host, login_string, password_string, netrcfile); - if (ret < 0) - return ret; - strncpy(login, login_string.c_str(), LOGINSIZE - 1); - strncpy(password, password_string.c_str(), PASSWORDSIZE - 1); - return ret; -} - void maybe_add_auth (URI &Uri, string NetRCFile) { diff --git a/apt-pkg/contrib/netrc.h b/apt-pkg/contrib/netrc.h index dbeb45386..b5b56f5d4 100644 --- a/apt-pkg/contrib/netrc.h +++ b/apt-pkg/contrib/netrc.h @@ -27,9 +27,5 @@ class URI; -// FIXME: kill this export on the next ABI break - strongly doubt its in use anyway -// outside of the apt itself, its really a internal interface -APT_DEPRECATED int parsenetrc (char *host, char *login, char *password, char *filename); - void maybe_add_auth (URI &Uri, std::string NetRCFile); #endif diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index ce69c7a02..0f48860b1 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -1046,7 +1046,7 @@ bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base // --------------------------------------------------------------------- /* This is used in decoding the 256bit encoded fixed length fields in tar files */ -bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len) +bool Base256ToNum(const char *Str,unsigned long long &Res,unsigned int Len) { if ((Str[0] & 0x80) == 0) return false; @@ -1059,6 +1059,23 @@ bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len) } } /*}}}*/ +// Base256ToNum - Convert a fixed length binary to a number /*{{{*/ +// --------------------------------------------------------------------- +/* This is used in decoding the 256bit encoded fixed length fields in + tar files */ +bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len) +{ + unsigned long long Num; + bool rc; + + rc = Base256ToNum(Str, Num, Len); + Res = Num; + if (Res != Num) + return false; + + return rc; +} + /*}}}*/ // HexDigit - Convert a hex character into an integer /*{{{*/ // --------------------------------------------------------------------- /* Helper for Hex2Num */ diff --git a/apt-pkg/contrib/strutl.h b/apt-pkg/contrib/strutl.h index 185cdc3fc..5733fd6e2 100644 --- a/apt-pkg/contrib/strutl.h +++ b/apt-pkg/contrib/strutl.h @@ -72,6 +72,7 @@ bool ReadMessages(int Fd, std::vector &List); bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0); bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0); bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len); +bool Base256ToNum(const char *Str,unsigned long long &Res,unsigned int Len); bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length); // input changing string split diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index a0dd15cd8..c1c2b726a 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -618,7 +619,7 @@ bool debStatusIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const pkgCache::PkgFileIterator CFile = Gen.GetCurFile(); CFile->Size = Pkg.FileSize(); CFile->mtime = Pkg.ModificationTime(); - map_ptrloc const storage = Gen.WriteUniqString("now"); + map_stringitem_t const storage = Gen.WriteUniqString("now"); CFile->Archive = storage; if (Gen.MergeList(Parser) == false) @@ -667,6 +668,133 @@ APT_CONST bool debStatusIndex::Exists() const } /*}}}*/ +// debDebPkgFile - Single .deb file /*{{{*/ +// --------------------------------------------------------------------- +debDebPkgFileIndex::debDebPkgFileIndex(std::string DebFile) + : pkgIndexFile(true), DebFile(DebFile) +{ + DebFileFullPath = flAbsPath(DebFile); +} + +std::string debDebPkgFileIndex::ArchiveURI(std::string /*File*/) const +{ + return "file:" + DebFileFullPath; +} + +bool debDebPkgFileIndex::Exists() const +{ + return FileExists(DebFile); +} +bool debDebPkgFileIndex::Merge(pkgCacheGenerator& Gen, OpProgress* Prog) const +{ + if(Prog) + Prog->SubProgress(0, "Reading deb file"); + + // get the control data out of the deb file vid dpkg -I + // ... can I haz libdpkg? + std::string dpkg = _config->Find("Dir::Bin::dpkg","dpkg"); + const char *Args[5] = {dpkg.c_str(), + "-I", + DebFile.c_str(), + "control", + NULL}; + FileFd PipeFd; + pid_t Child; + if(Popen(Args, PipeFd, Child, FileFd::ReadOnly) == false) + return _error->Error("Popen failed"); + // FIXME: static buffer + char buf[8*1024]; + unsigned long long n = 0; + if(PipeFd.Read(buf, sizeof(buf)-1, &n) == false) + return _error->Errno("read", "Failed to read dpkg pipe"); + ExecWait(Child, "Popen"); + + // now write the control data to a tempfile + SPtr DebControl = GetTempFile("deb-file-" + DebFile); + if(DebControl == NULL) + return false; + DebControl->Write(buf, n); + // append size of the file + FileFd Fd(DebFile, FileFd::ReadOnly); + string Size; + strprintf(Size, "Size: %llu\n", Fd.Size()); + DebControl->Write(Size.c_str(), Size.size()); + // and rewind for the listparser + DebControl->Seek(0); + + // and give it to the list parser + debDebFileParser Parser(DebControl, DebFile); + if(Gen.SelectFile(DebFile, "local", *this) == false) + return _error->Error("Problem with SelectFile %s", DebFile.c_str()); + + pkgCache::PkgFileIterator File = Gen.GetCurFile(); + File->Size = DebControl->Size(); + File->mtime = DebControl->ModificationTime(); + + if (Gen.MergeList(Parser) == false) + return _error->Error("Problem with MergeLister for %s", DebFile.c_str()); + + return true; +} +pkgCache::PkgFileIterator debDebPkgFileIndex::FindInCache(pkgCache &Cache) const +{ + // FIXME: we could simply always return pkgCache::PkgFileIterator(Cache); + // to indicate its never in the cache which will force a Merge() + pkgCache::PkgFileIterator File = Cache.FileBegin(); + for (; File.end() == false; ++File) + { + if (File.FileName() == NULL || DebFile != File.FileName()) + continue; + + return File; + } + + return File; +} +unsigned long debDebPkgFileIndex::Size() const +{ + struct stat buf; + if(stat(DebFile.c_str(), &buf) != 0) + return 0; + return buf.st_size; +} + /*}}}*/ + +// debDscFileIndex stuff +debDscFileIndex::debDscFileIndex(std::string &DscFile) + : pkgIndexFile(true), DscFile(DscFile) +{ +} + +bool debDscFileIndex::Exists() const +{ + return FileExists(DscFile); +} + +unsigned long debDscFileIndex::Size() const +{ + struct stat buf; + if(stat(DscFile.c_str(), &buf) == 0) + return buf.st_size; + return 0; +} + +// DscFileIndex::CreateSrcParser - Get a parser for the .dsc file /*{{{*/ +// --------------------------------------------------------------------- +/* */ +pkgSrcRecords::Parser *debDscFileIndex::CreateSrcParser() const +{ + if (!FileExists(DscFile)) + return NULL; + + return new debDscRecordParser(DscFile,this); +} + /*}}}*/ + + + + +// --------------------------------------------------------------------- // Index File types for Debian /*{{{*/ class debIFTypeSrc : public pkgIndexFile::Type { @@ -699,10 +827,42 @@ class debIFTypeStatus : public pkgIndexFile::Type }; debIFTypeStatus() {Label = "Debian dpkg status file";}; }; +class debIFTypeDebPkgFile : public pkgIndexFile::Type +{ + public: + virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator File) const + { + return new debDebFileRecordParser(File.FileName(),*File.Cache()); + }; + debIFTypeDebPkgFile() {Label = "deb Package file";}; +}; +class debIFTypeDscFile : public pkgIndexFile::Type +{ + public: + virtual pkgSrcRecords::Parser *CreateSrcPkgParser(std::string DscFile) const + { + return new debDscRecordParser(DscFile, NULL); + }; + debIFTypeDscFile() {Label = "dsc File Source Index";}; +}; +class debIFTypeDebianSourceDir : public pkgIndexFile::Type +{ + public: + virtual pkgSrcRecords::Parser *CreateSrcPkgParser(std::string SourceDir) const + { + return new debDscRecordParser(SourceDir + string("/debian/control"), NULL); + }; + debIFTypeDebianSourceDir() {Label = "debian/control File Source Index";}; +}; + static debIFTypeSrc _apt_Src; static debIFTypePkg _apt_Pkg; static debIFTypeTrans _apt_Trans; static debIFTypeStatus _apt_Status; +static debIFTypeDebPkgFile _apt_DebPkgFile; +// file based pseudo indexes +static debIFTypeDscFile _apt_DscFile; +static debIFTypeDebianSourceDir _apt_DebianSourceDir; const pkgIndexFile::Type *debSourcesIndex::GetType() const { @@ -720,5 +880,16 @@ const pkgIndexFile::Type *debStatusIndex::GetType() const { return &_apt_Status; } - +const pkgIndexFile::Type *debDebPkgFileIndex::GetType() const +{ + return &_apt_DebPkgFile; +} +const pkgIndexFile::Type *debDscFileIndex::GetType() const +{ + return &_apt_DscFile; +} +const pkgIndexFile::Type *debDebianSourceDirIndex::GetType() const +{ + return &_apt_DebianSourceDir; +} /*}}}*/ diff --git a/apt-pkg/deb/debindexfile.h b/apt-pkg/deb/debindexfile.h index 017c69a0a..18322dc1b 100644 --- a/apt-pkg/deb/debindexfile.h +++ b/apt-pkg/deb/debindexfile.h @@ -164,4 +164,57 @@ class debSourcesIndex : public pkgIndexFile virtual ~debSourcesIndex() {}; }; +class debDebPkgFileIndex : public pkgIndexFile +{ + private: + void *d; + std::string DebFile; + std::string DebFileFullPath; + + public: + virtual const Type *GetType() const APT_CONST; + + virtual std::string Describe(bool /*Short*/) const { + return DebFile; + } + + // Interface for the Cache Generator + virtual bool Exists() const; + virtual bool HasPackages() const { + return true; + }; + virtual unsigned long Size() const; + virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const; + virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const; + + // Interface for acquire + virtual std::string ArchiveURI(std::string /*File*/) const; + + debDebPkgFileIndex(std::string DebFile); + virtual ~debDebPkgFileIndex() {}; +}; + +class debDscFileIndex : public pkgIndexFile +{ + private: + std::string DscFile; + public: + virtual const Type *GetType() const APT_CONST; + virtual pkgSrcRecords::Parser *CreateSrcParser() const; + virtual bool Exists() const; + virtual bool HasPackages() const {return false;}; + virtual unsigned long Size() const; + virtual std::string Describe(bool /*Short*/) const { + return DscFile; + }; + + debDscFileIndex(std::string &DscFile); + virtual ~debDscFileIndex() {}; +}; + +class debDebianSourceDirIndex : public debDscFileIndex +{ + virtual const Type *GetType() const APT_CONST; +}; + #endif diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 02b9cb239..30ae91cca 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -61,7 +61,7 @@ debListParser::debListParser(FileFd *File, string const &Arch) : Tags(File), // ListParser::UniqFindTagWrite - Find the tag and write a unq string /*{{{*/ // --------------------------------------------------------------------- /* */ -unsigned long debListParser::UniqFindTagWrite(const char *Tag) +map_stringitem_t debListParser::UniqFindTagWrite(const char *Tag) { const char *Start; const char *Stop; @@ -195,35 +195,31 @@ bool debListParser::NewVersion(pkgCache::VerIterator &Ver) /* This is to return the string describing the package in debian form. If this returns the blank string then the entry is assumed to only describe package properties */ -string debListParser::Description() +string debListParser::Description(std::string const &lang) { - string const lang = DescriptionLanguage(); if (lang.empty()) return Section.FindS("Description"); else return Section.FindS(string("Description-").append(lang).c_str()); } - /*}}}*/ -// ListParser::DescriptionLanguage - Return the description lang string /*{{{*/ -// --------------------------------------------------------------------- -/* This is to return the string describing the language of - description. If this returns the blank string then the entry is - assumed to describe original description. */ -string debListParser::DescriptionLanguage() + /*}}}*/ +// ListParser::AvailableDescriptionLanguages /*{{{*/ +std::vector debListParser::AvailableDescriptionLanguages() { - if (Section.FindS("Description").empty() == false) - return ""; - - std::vector const lang = APT::Configuration::getLanguages(true); - for (std::vector::const_iterator l = lang.begin(); - l != lang.end(); ++l) - if (Section.FindS(string("Description-").append(*l).c_str()).empty() == false) - return *l; - - return ""; + std::vector const understood = APT::Configuration::getLanguages(); + std::vector avail; + if (Section.Exists("Description") == true) + avail.push_back(""); + for (std::vector::const_iterator lang = understood.begin(); lang != understood.end(); ++lang) + { + std::string const tagname = "Description-" + *lang; + if (Section.Exists(tagname.c_str()) == true) + avail.push_back(*lang); + } + return avail; } - /*}}}*/ -// ListParser::Description - Return the description_md5 MD5SumValue /*{{{*/ + /*}}}*/ +// ListParser::Description_md5 - Return the description_md5 MD5SumValue /*{{{*/ // --------------------------------------------------------------------- /* This is to return the md5 string to allow the check if it is the right description. If no Description-md5 is found in the section it will be @@ -234,7 +230,7 @@ MD5SumValue debListParser::Description_md5() string const value = Section.FindS("Description-md5"); if (value.empty() == true) { - std::string const desc = Description() + "\n"; + std::string const desc = Description("") + "\n"; if (desc == "\n") return MD5SumValue(); @@ -260,12 +256,6 @@ MD5SumValue debListParser::Description_md5() bool debListParser::UsePackage(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver) { - if (Pkg->Section == 0) - { - 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" // The "installed" mode is handled by ParseStatus(), See #544481 and friends. @@ -901,7 +891,7 @@ bool debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator &FileI, { // apt-secure does no longer download individual (per-section) Release // file. to provide Component pinning we use the section name now - map_ptrloc const storage = WriteUniqString(component); + map_stringitem_t const storage = WriteUniqString(component); FileI->Component = storage; pkgTagFile TagFile(&File, File.Size()); @@ -914,7 +904,7 @@ bool debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator &FileI, data = Section.FindS(TAG); \ if (data.empty() == false) \ { \ - map_ptrloc const storage = WriteUniqString(data); \ + map_stringitem_t const storage = WriteUniqString(data); \ STORE = storage; \ } APT_INRELEASE("Suite", FileI->Archive) @@ -963,3 +953,23 @@ bool debListParser::SameVersion(unsigned short const Hash, /*{{{*/ } /*}}}*/ #endif + + +debDebFileParser::debDebFileParser(FileFd *File, std::string const &DebFile) + : debListParser(File, ""), DebFile(DebFile) +{ +} + +bool debDebFileParser::UsePackage(pkgCache::PkgIterator &Pkg, + pkgCache::VerIterator &Ver) +{ + bool res = debListParser::UsePackage(Pkg, Ver); + // we use the full file path as a provides so that the file is found + // by its name + if(NewProvidesAllArch(Ver, DebFile, Ver.VerStr()) == false) + return false; + return res; +} + + + diff --git a/apt-pkg/deb/deblistparser.h b/apt-pkg/deb/deblistparser.h index 3b6963211..f5ac47e1e 100644 --- a/apt-pkg/deb/deblistparser.h +++ b/apt-pkg/deb/deblistparser.h @@ -44,19 +44,20 @@ class debListParser : public pkgCacheGenerator::ListParser protected: pkgTagFile Tags; pkgTagSection Section; - unsigned long iOffset; + map_filesize_t iOffset; std::string Arch; std::vector Architectures; bool MultiArchEnabled; - unsigned long UniqFindTagWrite(const char *Tag); + map_stringitem_t UniqFindTagWrite(const char *Tag); virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver); bool ParseDepends(pkgCache::VerIterator &Ver,const char *Tag, unsigned int Type); bool ParseProvides(pkgCache::VerIterator &Ver); bool NewProvidesAllArch(pkgCache::VerIterator &Ver, std::string const &Package, std::string const &Version); static bool GrabWord(std::string Word,WordList *List,unsigned char &Out); - + APT_HIDDEN unsigned char ParseMultiArch(bool const showErrors); + public: static unsigned char GetPrio(std::string Str); @@ -67,8 +68,8 @@ class debListParser : public pkgCacheGenerator::ListParser virtual bool ArchitectureAll(); virtual std::string Version(); virtual bool NewVersion(pkgCache::VerIterator &Ver); - virtual std::string Description(); - virtual std::string DescriptionLanguage(); + virtual std::string Description(std::string const &lang); + virtual std::vector AvailableDescriptionLanguages(); virtual MD5SumValue Description_md5(); virtual unsigned short VersionHash(); #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) @@ -76,8 +77,8 @@ class debListParser : public pkgCacheGenerator::ListParser #endif virtual bool UsePackage(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver); - virtual unsigned long Offset() {return iOffset;}; - virtual unsigned long Size() {return Section.size();}; + virtual map_filesize_t Offset() {return iOffset;}; + virtual map_filesize_t Size() {return Section.size();}; virtual bool Step(); @@ -101,9 +102,17 @@ class debListParser : public pkgCacheGenerator::ListParser debListParser(FileFd *File, std::string const &Arch = ""); virtual ~debListParser() {}; +}; - private: - APT_HIDDEN unsigned char ParseMultiArch(bool const showErrors); +class debDebFileParser : public debListParser +{ + private: + std::string DebFile; + + public: + debDebFileParser(FileFd *File, std::string const &DebFile); + virtual bool UsePackage(pkgCache::PkgIterator &Pkg, + pkgCache::VerIterator &Ver); }; class debTranslationsParser : public debListParser diff --git a/apt-pkg/deb/debmetaindex.cc b/apt-pkg/deb/debmetaindex.cc index 6fd12add8..73010e867 100644 --- a/apt-pkg/deb/debmetaindex.cc +++ b/apt-pkg/deb/debmetaindex.cc @@ -186,8 +186,8 @@ debReleaseIndex::~debReleaseIndex() { delete *S; } -vector * debReleaseIndex::ComputeIndexTargets() const { - vector * IndexTargets = new vector ; +vector * debReleaseIndex::ComputeIndexTargets() const { + vector * IndexTargets = new vector ; map >::const_iterator const src = ArchEntries.find("source"); if (src != ArchEntries.end()) { @@ -255,10 +255,10 @@ bool debReleaseIndex::GetIndexes(pkgAcquire *Owner, bool const &GetAll) const // special case for --print-uris if (GetAll) { - vector *targets = ComputeIndexTargets(); - for (vector ::const_iterator Target = targets->begin(); Target != targets->end(); ++Target) { + vector *targets = ComputeIndexTargets(); + for (vector ::const_iterator Target = targets->begin(); Target != targets->end(); ++Target) { new pkgAcqIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, HashString()); + (*Target)->ShortDesc, HashStringList()); } delete targets; @@ -471,6 +471,15 @@ class debSLTypeDebian : public pkgSourceList::Type } }; +debDebFileMetaIndex::debDebFileMetaIndex(std::string const &DebFile) + : metaIndex(DebFile, "local-uri", "deb-dist"), DebFile(DebFile) +{ + DebIndex = new debDebPkgFileIndex(DebFile); + Indexes = new vector(); + Indexes->push_back(DebIndex); +} + + class debSLTypeDeb : public debSLTypeDebian { public: @@ -507,5 +516,25 @@ class debSLTypeDebSrc : public debSLTypeDebian } }; +class debSLTypeDebFile : public pkgSourceList::Type +{ + public: + + bool CreateItem(vector &List, string const &URI, + string const &/*Dist*/, string const &/*Section*/, + std::map const &/*Options*/) const + { + metaIndex *mi = new debDebFileMetaIndex(URI); + List.push_back(mi); + return true; + } + + debSLTypeDebFile() + { + Name = "deb-file"; + Label = "Debian Deb File"; + } +}; debSLTypeDeb _apt_DebType; debSLTypeDebSrc _apt_DebSrcType; +debSLTypeDebFile _apt_DebFileType; diff --git a/apt-pkg/deb/debmetaindex.h b/apt-pkg/deb/debmetaindex.h index 2286fa8b2..7091c198f 100644 --- a/apt-pkg/deb/debmetaindex.h +++ b/apt-pkg/deb/debmetaindex.h @@ -18,6 +18,8 @@ class pkgAcquire; class pkgIndexFile; +class debDebPkgFileIndex; +class IndexTarget; class debReleaseIndex : public metaIndex { public: @@ -44,7 +46,7 @@ class debReleaseIndex : public metaIndex { virtual std::string ArchiveURI(std::string const &File) const {return URI + File;}; virtual bool GetIndexes(pkgAcquire *Owner, bool const &GetAll=false) const; - std::vector * ComputeIndexTargets() const; + std::vector * ComputeIndexTargets() const; std::string Info(const char *Type, std::string const &Section, std::string const &Arch="") const; std::string MetaIndexInfo(const char *Type) const; @@ -71,4 +73,27 @@ class debReleaseIndex : public metaIndex { void PushSectionEntry(const debSectionEntry *Entry); }; +class debDebFileMetaIndex : public metaIndex +{ + private: + std::string DebFile; + debDebPkgFileIndex *DebIndex; + public: + virtual std::string ArchiveURI(std::string const& /*File*/) const { + return DebFile; + } + virtual bool GetIndexes(pkgAcquire* /*Owner*/, const bool& /*GetAll=false*/) const { + return true; + } + virtual std::vector *GetIndexFiles() { + return Indexes; + } + virtual bool IsTrusted() const { + return true; + } + debDebFileMetaIndex(std::string const &DebFile); + virtual ~debDebFileMetaIndex() {}; + +}; + #endif diff --git a/apt-pkg/deb/debrecords.cc b/apt-pkg/deb/debrecords.cc index 6063db5a8..d2c04d8b2 100644 --- a/apt-pkg/deb/debrecords.cc +++ b/apt-pkg/deb/debrecords.cc @@ -73,36 +73,17 @@ string debRecordParser::Homepage() return Section.FindS("Homepage"); } /*}}}*/ -// RecordParser::MD5Hash - Return the archive hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -string debRecordParser::MD5Hash() -{ - return Section.FindS("MD5Sum"); -} - /*}}}*/ -// RecordParser::SHA1Hash - Return the archive hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -string debRecordParser::SHA1Hash() -{ - return Section.FindS("SHA1"); -} - /*}}}*/ -// RecordParser::SHA256Hash - Return the archive hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -string debRecordParser::SHA256Hash() -{ - return Section.FindS("SHA256"); -} - /*}}}*/ -// RecordParser::SHA512Hash - Return the archive hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -string debRecordParser::SHA512Hash() +// RecordParser::Hashes - return the available archive hashes /*{{{*/ +HashStringList debRecordParser::Hashes() const { - return Section.FindS("SHA512"); + HashStringList hashes; + for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type) + { + std::string const hash = Section.FindS(*type); + if (hash.empty() == false) + hashes.push_back(HashString(*type, hash)); + } + return hashes; } /*}}}*/ // RecordParser::Maintainer - Return the maintainer email /*{{{*/ @@ -125,10 +106,12 @@ string debRecordParser::RecordField(const char *fieldName) // RecordParser::ShortDesc - Return a 1 line description /*{{{*/ // --------------------------------------------------------------------- /* */ -string debRecordParser::ShortDesc() +string debRecordParser::ShortDesc(std::string const &lang) { - string Res = LongDesc(); - string::size_type Pos = Res.find('\n'); + string const Res = LongDesc(lang); + if (Res.empty() == true) + return ""; + string::size_type const Pos = Res.find('\n'); if (Pos == string::npos) return Res; return string(Res,0,Pos); @@ -137,26 +120,44 @@ string debRecordParser::ShortDesc() // RecordParser::LongDesc - Return a longer description /*{{{*/ // --------------------------------------------------------------------- /* */ -string debRecordParser::LongDesc() -{ - string orig, dest; +string debRecordParser::LongDesc(std::string const &lang) +{ + string orig; + if (lang.empty() == true) + { + std::vector const lang = APT::Configuration::getLanguages(); + for (std::vector::const_iterator l = lang.begin(); + l != lang.end(); ++l) + { + std::string const tagname = "Description-" + *l; + orig = Section.FindS(tagname.c_str()); + if (orig.empty() == false) + break; + else if (*l == "en") + { + orig = Section.FindS("Description"); + if (orig.empty() == false) + break; + } + } + if (orig.empty() == true) + orig = Section.FindS("Description"); + } + else + { + std::string const tagname = "Description-" + lang; + orig = Section.FindS(tagname.c_str()); + if (orig.empty() == true && lang == "en") + orig = Section.FindS("Description"); + } - if (!Section.FindS("Description").empty()) - orig = Section.FindS("Description").c_str(); - else - { - std::vector const lang = APT::Configuration::getLanguages(); - for (std::vector::const_iterator l = lang.begin(); - orig.empty() && l != lang.end(); ++l) - orig = Section.FindS(string("Description-").append(*l).c_str()); - } + char const * const codeset = nl_langinfo(CODESET); + if (strcmp(codeset,"UTF-8") != 0) { + string dest; + UTF8ToCodeset(codeset, orig, &dest); + return dest; + } - char const * const codeset = nl_langinfo(CODESET); - if (strcmp(codeset,"UTF-8") != 0) { - UTF8ToCodeset(codeset, orig, &dest); - orig = dest; - } - return orig; } /*}}}*/ diff --git a/apt-pkg/deb/debrecords.h b/apt-pkg/deb/debrecords.h index bdac6c90b..2bd3f3c8f 100644 --- a/apt-pkg/deb/debrecords.h +++ b/apt-pkg/deb/debrecords.h @@ -29,31 +29,28 @@ class debRecordParser : public pkgRecords::Parser { /** \brief dpointer placeholder (for later in case we need it) */ void *d; - + + protected: FileFd File; pkgTagFile Tags; pkgTagSection Section; - protected: - virtual bool Jump(pkgCache::VerFileIterator const &Ver); virtual bool Jump(pkgCache::DescFileIterator const &Desc); - public: + public: // These refer to the archive file for the Version virtual std::string FileName(); - virtual std::string MD5Hash(); - virtual std::string SHA1Hash(); - virtual std::string SHA256Hash(); - virtual std::string SHA512Hash(); virtual std::string SourcePkg(); virtual std::string SourceVer(); - + + virtual HashStringList Hashes() const; + // These are some general stats about the package virtual std::string Maintainer(); - virtual std::string ShortDesc(); - virtual std::string LongDesc(); + virtual std::string ShortDesc(std::string const &lang); + virtual std::string LongDesc(std::string const &lang); virtual std::string Name(); virtual std::string Homepage(); @@ -66,4 +63,15 @@ class debRecordParser : public pkgRecords::Parser virtual ~debRecordParser() {}; }; +// custom record parser that reads deb files directly +class debDebFileRecordParser : public debRecordParser +{ + public: + virtual std::string FileName() { + return File.Name(); + } + debDebFileRecordParser(std::string FileName,pkgCache &Cache) + : debRecordParser(FileName, Cache) {}; +}; + #endif diff --git a/apt-pkg/deb/debsrcrecords.cc b/apt-pkg/deb/debsrcrecords.cc index a444cbe4d..97f43aca2 100644 --- a/apt-pkg/deb/debsrcrecords.cc +++ b/apt-pkg/deb/debsrcrecords.cc @@ -18,6 +18,8 @@ #include #include #include +#include +#include #include #include @@ -55,12 +57,13 @@ const char **debSrcRecordParser::Binaries() char* binStartNext = strchrnul(bin, ','); char* binEnd = binStartNext - 1; for (; isspace(*binEnd) != 0; --binEnd) - binEnd = '\0'; + binEnd = 0; StaticBinList.push_back(bin); if (*binStartNext != ',') break; *binStartNext = '\0'; - for (bin = binStartNext + 1; isspace(*bin) != 0; ++bin); + for (bin = binStartNext + 1; isspace(*bin) != 0; ++bin) + ; } while (*bin != '\0'); StaticBinList.push_back(NULL); @@ -121,10 +124,6 @@ bool debSrcRecordParser::BuildDepends(std::vector &List) { List.erase(List.begin(),List.end()); - - string Files = Sect.FindS("Files"); - if (Files.empty() == true) - return false; // Stash the / terminated directory prefix string Base = Sect.FindS("Directory"); @@ -133,51 +132,105 @@ bool debSrcRecordParser::Files(std::vector &List) std::vector const compExts = APT::Configuration::getCompressorExtensions(); - // Iterate over the entire list grabbing each triplet - const char *C = Files.c_str(); - while (*C != 0) - { - pkgSrcRecords::File F; - string Size; - - // Parse each of the elements - if (ParseQuoteWord(C,F.MD5Hash) == false || - ParseQuoteWord(C,Size) == false || - ParseQuoteWord(C,F.Path) == false) - return _error->Error("Error parsing file record"); - - // Parse the size and append the directory - F.Size = atoi(Size.c_str()); - F.Path = Base + F.Path; - - // Try to guess what sort of file it is we are getting. - string::size_type Pos = F.Path.length()-1; - while (1) + for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type) + { + // derive field from checksum type + std::string checksumField("Checksums-"); + if (strcmp(*type, "MD5Sum") == 0) + checksumField = "Files"; // historic name for MD5 checksums + else + checksumField.append(*type); + + string const Files = Sect.FindS(checksumField.c_str()); + if (Files.empty() == true) + continue; + + // Iterate over the entire list grabbing each triplet + const char *C = Files.c_str(); + while (*C != 0) { - string::size_type Tmp = F.Path.rfind('.',Pos); - if (Tmp == string::npos) - break; - if (F.Type == "tar") { - // source v3 has extension 'debian.tar.*' instead of 'diff.*' - if (string(F.Path, Tmp+1, Pos-Tmp) == "debian") - F.Type = "diff"; - break; - } - F.Type = string(F.Path,Tmp+1,Pos-Tmp); - - if (std::find(compExts.begin(), compExts.end(), std::string(".").append(F.Type)) != compExts.end() || - F.Type == "tar") + string hash, size, path; + + // Parse each of the elements + if (ParseQuoteWord(C, hash) == false || + ParseQuoteWord(C, size) == false || + ParseQuoteWord(C, path) == false) + return _error->Error("Error parsing file record in %s of source package %s", checksumField.c_str(), Package().c_str()); + + HashString const hashString(*type, hash); + if (Base.empty() == false) + path = Base + path; + + // look if we have a record for this file already + std::vector::iterator file = List.begin(); + for (; file != List.end(); ++file) + if (file->Path == path) + break; + + // we have it already, store the new hash and be done + if (file != List.end()) { - Pos = Tmp-1; +#if __GNUC__ >= 4 + // set for compatibility only, so warn users not us + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + if (checksumField == "Files") + file->MD5Hash = hash; +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + // an error here indicates that we have two different hashes for the same file + if (file->Hashes.push_back(hashString) == false) + return _error->Error("Error parsing checksum in %s of source package %s", checksumField.c_str(), Package().c_str()); continue; } - - break; + + // we haven't seen this file yet + pkgSrcRecords::File F; + F.Path = path; + F.Size = strtoull(size.c_str(), NULL, 10); + F.Hashes.push_back(hashString); + +#if __GNUC__ >= 4 + // set for compatibility only, so warn users not us + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + if (checksumField == "Files") + F.MD5Hash = hash; +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + + // Try to guess what sort of file it is we are getting. + string::size_type Pos = F.Path.length()-1; + while (1) + { + string::size_type Tmp = F.Path.rfind('.',Pos); + if (Tmp == string::npos) + break; + if (F.Type == "tar") { + // source v3 has extension 'debian.tar.*' instead of 'diff.*' + if (string(F.Path, Tmp+1, Pos-Tmp) == "debian") + F.Type = "diff"; + break; + } + F.Type = string(F.Path,Tmp+1,Pos-Tmp); + + if (std::find(compExts.begin(), compExts.end(), std::string(".").append(F.Type)) != compExts.end() || + F.Type == "tar") + { + Pos = Tmp-1; + continue; + } + + break; + } + List.push_back(F); } - - List.push_back(F); } - + return true; } /*}}}*/ @@ -190,3 +243,21 @@ debSrcRecordParser::~debSrcRecordParser() free(Buffer); } /*}}}*/ + + +debDscRecordParser::debDscRecordParser(std::string const &DscFile, pkgIndexFile const *Index) + : debSrcRecordParser(DscFile, Index) +{ + // support clear signed files + if (OpenMaybeClearSignedFile(DscFile, Fd) == false) + { + _error->Error("Failed to open %s", DscFile.c_str()); + return; + } + + // re-init to ensure the updated Fd is used + Tags.Init(&Fd); + // read the first (and only) record + Step(); + +} diff --git a/apt-pkg/deb/debsrcrecords.h b/apt-pkg/deb/debsrcrecords.h index b65d1480b..a0a151875 100644 --- a/apt-pkg/deb/debsrcrecords.h +++ b/apt-pkg/deb/debsrcrecords.h @@ -26,6 +26,7 @@ class debSrcRecordParser : public pkgSrcRecords::Parser /** \brief dpointer placeholder (for later in case we need it) */ void *d; + protected: FileFd Fd; pkgTagFile Tags; pkgTagSection Sect; @@ -60,4 +61,10 @@ class debSrcRecordParser : public pkgSrcRecords::Parser virtual ~debSrcRecordParser(); }; +class debDscRecordParser : public debSrcRecordParser +{ + public: + debDscRecordParser(std::string const &DscFile, pkgIndexFile const *Index); +}; + #endif diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 613a4de9f..2dcdf916f 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -517,7 +517,7 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) void pkgDPkgPM::DoStdin(int master) { unsigned char input_buf[256] = {0,}; - ssize_t len = read(0, input_buf, sizeof(input_buf)); + ssize_t len = read(STDIN_FILENO, input_buf, sizeof(input_buf)); if (len) FileFd::Write(master, input_buf, len); else @@ -1031,7 +1031,6 @@ void pkgDPkgPM::BuildPackagesProgressMap() } } /*}}}*/ -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) bool pkgDPkgPM::Go(int StatusFd) { APT::Progress::PackageManager *progress = NULL; @@ -1040,9 +1039,8 @@ bool pkgDPkgPM::Go(int StatusFd) else progress = new APT::Progress::PackageManagerProgressFd(StatusFd); - return GoNoABIBreak(progress); + return Go(progress); } -#endif void pkgDPkgPM::StartPtyMagic() { @@ -1114,11 +1112,7 @@ void pkgDPkgPM::StopPtyMagic() * through to human readable (and i10n-able) * names and calculates a percentage for each step. */ -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) bool pkgDPkgPM::Go(APT::Progress::PackageManager *progress) -#else -bool pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager *progress) -#endif { pkgPackageManager::SigINTStop = false; d->progress = progress; diff --git a/apt-pkg/deb/dpkgpm.h b/apt-pkg/deb/dpkgpm.h index 859c74b46..e967bfe99 100644 --- a/apt-pkg/deb/dpkgpm.h +++ b/apt-pkg/deb/dpkgpm.h @@ -117,27 +117,14 @@ class pkgDPkgPM : public pkgPackageManager void DoTerminalPty(int master); void DoDpkgStatusFd(int statusfd); void ProcessDpkgStatusLine(char *line); -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) - void DoDpkgStatusFd(int statusfd, int /*unused*/) { - DoDpkgStatusFd(statusfd); - } - void ProcessDpkgStatusLine(int /*unused*/, char *line) { - ProcessDpkgStatusLine(line); - } -#endif - // The Actuall installation implementation virtual bool Install(PkgIterator Pkg,std::string File); virtual bool Configure(PkgIterator Pkg); virtual bool Remove(PkgIterator Pkg,bool Purge = false); -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) virtual bool Go(APT::Progress::PackageManager *progress); -#else virtual bool Go(int StatusFd=-1); - bool GoNoABIBreak(APT::Progress::PackageManager *progress); -#endif virtual void Reset(); diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index c25672d1c..492d16029 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -1225,7 +1225,7 @@ bool pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, continue; } // now check if we should consider it a automatic dependency or not - if(InstPkg->CurrentVer == 0 && Pkg->Section != 0 && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", Pkg.Section())) + if(InstPkg->CurrentVer == 0 && InstVer->Section != 0 && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", InstVer.Section())) { if(DebugAutoInstall == true) std::clog << OutputInDepth(Depth) << "Setting NOT as auto-installed (direct " diff --git a/apt-pkg/edsp/edspindexfile.cc b/apt-pkg/edsp/edspindexfile.cc index 10313fd61..e013dd44c 100644 --- a/apt-pkg/edsp/edspindexfile.cc +++ b/apt-pkg/edsp/edspindexfile.cc @@ -56,7 +56,7 @@ bool edspIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const pkgCache::PkgFileIterator CFile = Gen.GetCurFile(); CFile->Size = Pkg.FileSize(); CFile->mtime = Pkg.ModificationTime(); - map_ptrloc const storage = Gen.WriteUniqString("edsp::scenario"); + map_stringitem_t const storage = Gen.WriteUniqString("edsp::scenario"); CFile->Archive = storage; if (Gen.MergeList(Parser) == false) diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index 854ba1bd7..bb3b5d340 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -516,7 +516,7 @@ bool SigVerify::Verify(string prefix, string file, indexRecords *MetaIndex) return false; } - if (!Record->Hash.VerifyFile(prefix+file)) + if (!Record->Hashes.VerifyFile(prefix+file)) { _error->Warning(_("Hash mismatch for: %s"),file.c_str()); return false; @@ -524,8 +524,10 @@ bool SigVerify::Verify(string prefix, string file, indexRecords *MetaIndex) if(Debug == true) { - cout << "File: " << prefix+file << endl; - cout << "Expected Hash " << Record->Hash.toStr() << endl; + cout << "File: " << prefix+file << endl + << "Expected Hash " << endl; + for (HashStringList::const_iterator hs = Record->Hashes.begin(); hs != Record->Hashes.end(); ++hs) + std::cout << "\t- " << hs->toStr() << std::endl; } return true; diff --git a/apt-pkg/indexfile.h b/apt-pkg/indexfile.h index b5c9ac77e..817165f08 100644 --- a/apt-pkg/indexfile.h +++ b/apt-pkg/indexfile.h @@ -59,6 +59,7 @@ class pkgIndexFile const char *Label; virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator /*File*/) const {return 0;}; + virtual pkgSrcRecords::Parser *CreateSrcPkgParser(std::string /*File*/) const {return 0;}; Type(); virtual ~Type() {}; }; diff --git a/apt-pkg/indexrecords.cc b/apt-pkg/indexrecords.cc index 5353d1098..e97ea0ac9 100644 --- a/apt-pkg/indexrecords.cc +++ b/apt-pkg/indexrecords.cc @@ -37,6 +37,11 @@ APT_PURE string indexRecords::GetSuite() const return this->Suite; } +APT_PURE bool indexRecords::GetSupportsAcquireByHash() const +{ + return this->SupportsAcquireByHash; +} + APT_PURE bool indexRecords::CheckDist(const string MaybeDist) const { return (this->Dist == MaybeDist @@ -53,7 +58,7 @@ APT_PURE time_t indexRecords::GetValidUntil() const return this->ValidUntil; } -APT_PURE const indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) +APT_PURE indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) { std::map::const_iterator sum = Entries.find(MetaKey); if (sum == Entries.end()) @@ -86,12 +91,14 @@ bool indexRecords::Load(const string Filename) /*{{{*/ strprintf(ErrorText, _("No sections in Release file %s"), Filename.c_str()); return false; } + // FIXME: find better tag name + SupportsAcquireByHash = Section.FindB("Acquire-By-Hash", false); Suite = Section.FindS("Suite"); Dist = Section.FindS("Codename"); - int i; - for (i=0;HashString::SupportedHashes()[i] != NULL; i++) + bool FoundHashSum = false; + for (int i=0;HashString::SupportedHashes()[i] != NULL; i++) { if (!Section.Find(HashString::SupportedHashes()[i], Start, End)) continue; @@ -103,16 +110,28 @@ bool indexRecords::Load(const string Filename) /*{{{*/ { if (!parseSumData(Start, End, Name, Hash, Size)) return false; - indexRecords::checkSum *Sum = new indexRecords::checkSum; - Sum->MetaKeyFilename = Name; - Sum->Hash = HashString(HashString::SupportedHashes()[i],Hash); - Sum->Size = Size; - Entries[Name] = Sum; + + if (Entries.find(Name) == Entries.end()) + { + indexRecords::checkSum *Sum = new indexRecords::checkSum; + Sum->MetaKeyFilename = Name; + Sum->Size = Size; +#if __GNUC__ >= 4 + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + Sum->Hash = HashString(HashString::SupportedHashes()[i],Hash); +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + Entries[Name] = Sum; + } + Entries[Name]->Hashes.push_back(HashString(HashString::SupportedHashes()[i],Hash)); + FoundHashSum = true; } - break; } - if(HashString::SupportedHashes()[i] == NULL) + if(FoundHashSum == false) { strprintf(ErrorText, _("No Hash entry in Release file %s"), Filename.c_str()); return false; @@ -239,6 +258,6 @@ indexRecords::indexRecords() } indexRecords::indexRecords(const string ExpectedDist) : - ExpectedDist(ExpectedDist), ValidUntil(0) + ExpectedDist(ExpectedDist), ValidUntil(0), SupportsAcquireByHash(false) { } diff --git a/apt-pkg/indexrecords.h b/apt-pkg/indexrecords.h index e31f889ad..bb0fd5564 100644 --- a/apt-pkg/indexrecords.h +++ b/apt-pkg/indexrecords.h @@ -26,12 +26,15 @@ class indexRecords public: struct checkSum; std::string ErrorText; + // dpointer (for later9 + void * d; protected: std::string Dist; std::string Suite; std::string ExpectedDist; time_t ValidUntil; + bool SupportsAcquireByHash; std::map Entries; @@ -41,7 +44,7 @@ class indexRecords indexRecords(const std::string ExpectedDist); // Lookup function - virtual const checkSum *Lookup(const std::string MetaKey); + virtual checkSum *Lookup(const std::string MetaKey); /** \brief tests if a checksum for this file is available */ bool Exists(std::string const &MetaKey) const; std::vector MetaKeys(); @@ -49,17 +52,28 @@ class indexRecords virtual bool Load(std::string Filename); std::string GetDist() const; std::string GetSuite() const; + bool GetSupportsAcquireByHash() const; time_t GetValidUntil() const; virtual bool CheckDist(const std::string MaybeDist) const; std::string GetExpectedDist() const; virtual ~indexRecords(){}; }; +#if __GNUC__ >= 4 + // ensure that con- & de-structor don't trigger this warning + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif struct indexRecords::checkSum { std::string MetaKeyFilename; - HashString Hash; + HashStringList Hashes; unsigned long long Size; + + APT_DEPRECATED HashString Hash; }; +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif #endif diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index 393f836f7..d9df28ba3 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -28,6 +28,7 @@ #include #include #include +#include #include #include diff --git a/apt-pkg/packagemanager.h b/apt-pkg/packagemanager.h index d72790b6e..4972dcd04 100644 --- a/apt-pkg/packagemanager.h +++ b/apt-pkg/packagemanager.h @@ -44,6 +44,11 @@ class pkgDepCache; class pkgSourceList; class pkgOrderList; class pkgRecords; +namespace APT { + namespace Progress { + class PackageManager; + }; +}; class pkgPackageManager : protected pkgCache::Namespace @@ -93,6 +98,7 @@ class pkgPackageManager : protected pkgCache::Namespace virtual bool Remove(PkgIterator /*Pkg*/,bool /*Purge*/=false) {return false;}; #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) virtual bool Go(APT::Progress::PackageManager * /*progress*/) {return true;}; + virtual bool Go(int /*statusFd*/=-1) {return true;}; #else virtual bool Go(int /*statusFd*/=-1) {return true;}; #endif diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 58a63459f..b1ed0129d 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -54,12 +54,8 @@ pkgCache::Header::Header() /* Whenever the structures change the major version should be bumped, whenever the generator changes the minor version should be bumped. */ - MajorVersion = 8; -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) - MinorVersion = 2; -#else - MinorVersion = 1; -#endif + MajorVersion = 10; + MinorVersion = 0; Dirty = false; HeaderSz = sizeof(pkgCache::Header); @@ -89,8 +85,7 @@ pkgCache::Header::Header() StringList = 0; VerSysName = 0; Architecture = 0; - memset(PkgHashTable,0,sizeof(PkgHashTable)); - memset(GrpHashTable,0,sizeof(GrpHashTable)); + HashTableSize = _config->FindI("APT::Cache-HashTableSize", 10 * 1048); memset(Pools,0,sizeof(Pools)); CacheFileSize = 0; @@ -168,15 +163,23 @@ bool pkgCache::ReMap(bool const &Errorchecks) if (Map.Size() < HeaderP->CacheFileSize) return _error->Error(_("The package cache file is corrupted, it is too small")); + if (HeaderP->VerSysName == 0 || HeaderP->Architecture == 0 || HeaderP->Architectures == 0) + return _error->Error(_("The package cache file is corrupted")); + // Locate our VS.. - if (HeaderP->VerSysName == 0 || - (VS = pkgVersioningSystem::GetVS(StrP + HeaderP->VerSysName)) == 0) + if ((VS = pkgVersioningSystem::GetVS(StrP + HeaderP->VerSysName)) == 0) return _error->Error(_("This APT does not support the versioning system '%s'"),StrP + HeaderP->VerSysName); - // Chcek the arhcitecture - if (HeaderP->Architecture == 0 || - _config->Find("APT::Architecture") != StrP + HeaderP->Architecture) - return _error->Error(_("The package cache was built for a different architecture")); + // Check the architecture + std::vector archs = APT::Configuration::getArchitectures(); + std::vector::const_iterator a = archs.begin(); + std::string list = *a; + for (++a; a != archs.end(); ++a) + list.append(",").append(*a); + if (_config->Find("APT::Architecture") != StrP + HeaderP->Architecture || + list != StrP + HeaderP->Architectures) + return _error->Error(_("The package cache was built for different architectures: %s vs %s"), StrP + HeaderP->Architectures, list.c_str()); + return true; } /*}}}*/ @@ -185,20 +188,20 @@ bool pkgCache::ReMap(bool const &Errorchecks) /* This is used to generate the hash entries for the HashTable. With my package list from bo this function gets 94% table usage on a 512 item table (480 used items) */ -unsigned long pkgCache::sHash(const string &Str) const +map_id_t pkgCache::sHash(const string &Str) const { unsigned long Hash = 0; for (string::const_iterator I = Str.begin(); I != Str.end(); ++I) Hash = 41 * Hash + tolower_ascii(*I); - return Hash % _count(HeaderP->PkgHashTable); + return Hash % HeaderP->HashTableSize; } -unsigned long pkgCache::sHash(const char *Str) const +map_id_t pkgCache::sHash(const char *Str) const { unsigned long Hash = tolower_ascii(*Str); for (const char *I = Str + 1; *I != 0; ++I) Hash = 41 * Hash + tolower_ascii(*I); - return Hash % _count(HeaderP->PkgHashTable); + return Hash % HeaderP->HashTableSize; } /*}}}*/ // Cache::SingleArchFindPkg - Locate a package by name /*{{{*/ @@ -209,8 +212,8 @@ unsigned long pkgCache::sHash(const char *Str) const pkgCache::PkgIterator pkgCache::SingleArchFindPkg(const string &Name) { // Look at the hash bucket - Package *Pkg = PkgP + HeaderP->PkgHashTable[Hash(Name)]; - for (; Pkg != PkgP; Pkg = PkgP + Pkg->NextPackage) + Package *Pkg = PkgP + HeaderP->PkgHashTable()[Hash(Name)]; + for (; Pkg != PkgP; Pkg = PkgP + Pkg->Next) { if (unlikely(Pkg->Name == 0)) continue; @@ -274,7 +277,7 @@ pkgCache::GrpIterator pkgCache::FindGrp(const string &Name) { return GrpIterator(*this,0); // Look at the hash bucket for the group - Group *Grp = GrpP + HeaderP->GrpHashTable[sHash(Name)]; + Group *Grp = GrpP + HeaderP->GrpHashTable()[sHash(Name)]; for (; Grp != GrpP; Grp = GrpP + Grp->Next) { if (unlikely(Grp->Name == 0)) continue; @@ -366,7 +369,7 @@ pkgCache::PkgIterator pkgCache::GrpIterator::FindPkg(string Arch) const { (= different packages with same calculated hash), so we need to check the name also */ for (pkgCache::Package *Pkg = PackageList(); Pkg != Owner->PkgP; - Pkg = Owner->PkgP + Pkg->NextPackage) { + Pkg = Owner->PkgP + Pkg->Next) { if (S->Name == Pkg->Name && stringcasecmp(Arch, Owner->StrP + Pkg->Arch) == 0) return PkgIterator(*Owner, Pkg); @@ -415,7 +418,7 @@ pkgCache::PkgIterator pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const if (S->LastPackage == LastPkg.Index()) return PkgIterator(*Owner, 0); - return PkgIterator(*Owner, Owner->PkgP + LastPkg->NextPackage); + return PkgIterator(*Owner, Owner->PkgP + LastPkg->Next); } /*}}}*/ // GrpIterator::operator ++ - Postfix incr /*{{{*/ @@ -428,10 +431,10 @@ void pkgCache::GrpIterator::operator ++(int) S = Owner->GrpP + S->Next; // Follow the hash table - while (S == Owner->GrpP && (HashIndex+1) < (signed)_count(Owner->HeaderP->GrpHashTable)) + while (S == Owner->GrpP && (HashIndex+1) < (signed)Owner->HeaderP->HashTableSize) { HashIndex++; - S = Owner->GrpP + Owner->HeaderP->GrpHashTable[HashIndex]; + S = Owner->GrpP + Owner->HeaderP->GrpHashTable()[HashIndex]; } } /*}}}*/ @@ -442,13 +445,13 @@ void pkgCache::PkgIterator::operator ++(int) { // Follow the current links if (S != Owner->PkgP) - S = Owner->PkgP + S->NextPackage; + S = Owner->PkgP + S->Next; // Follow the hash table - while (S == Owner->PkgP && (HashIndex+1) < (signed)_count(Owner->HeaderP->PkgHashTable)) + while (S == Owner->PkgP && (HashIndex+1) < (signed)Owner->HeaderP->HashTableSize) { HashIndex++; - S = Owner->PkgP + Owner->HeaderP->PkgHashTable[HashIndex]; + S = Owner->PkgP + Owner->HeaderP->PkgHashTable()[HashIndex]; } } /*}}}*/ @@ -524,7 +527,10 @@ operator<<(std::ostream& out, pkgCache::PkgIterator Pkg) out << " -> " << candidate; if ( newest != "none" && candidate != newest) out << " | " << newest; - out << " > ( " << string(Pkg.Section()==0?"none":Pkg.Section()) << " )"; + if (Pkg->VersionList == 0) + out << " > ( none )"; + else + out << " > ( " << string(Pkg.VersionList().Section()==0?"unknown":Pkg.VersionList().Section()) << " )"; return out; } /*}}}*/ @@ -1036,3 +1042,9 @@ bool pkgCache::PrvIterator::IsMultiArchImplicit() const return false; } /*}}}*/ +APT_DEPRECATED APT_PURE const char * pkgCache::PkgIterator::Section() const {/*{{{*/ + if (S->VersionList == 0) + return 0; + return VersionList().Section(); +} + /*}}}*/ diff --git a/apt-pkg/pkgcache.h b/apt-pkg/pkgcache.h index 5e8a9630a..0ce2a2878 100644 --- a/apt-pkg/pkgcache.h +++ b/apt-pkg/pkgcache.h @@ -79,11 +79,23 @@ #include #include +#include #ifndef APT_8_CLEANER_HEADERS using std::string; #endif +// storing file sizes of indexes, which are way below 4 GB for now +typedef uint32_t map_filesize_t; +// each package/group/dependency gets an id +typedef uint32_t map_id_t; +// some files get an id, too, but in far less absolute numbers +typedef uint16_t map_fileid_t; +// relative pointer from cache start +typedef uint32_t map_pointer_t; +// same as the previous, but documented to be to a string item +typedef map_pointer_t map_stringitem_t; + class pkgVersioningSystem; class pkgCache /*{{{*/ { @@ -138,7 +150,7 @@ class pkgCache /*{{{*/ /** \brief priority of a package version Zero is used for unparsable or absent Priority fields. */ - enum VerPriority {Important=1,Required=2,Standard=3,Optional=4,Extra=5}; + enum VerPriority {Required=1,Important=2,Standard=3,Optional=4,Extra=5}; enum PkgSelectedState {Unknown=0,Install=1,Hold=2,DeInstall=3,Purge=4}; enum PkgInstState {Ok=0,ReInstReq=1,HoldInst=2,HoldReInstReq=3}; enum PkgCurrentState {NotInstalled=0,UnPacked=1,HalfConfigured=2, @@ -158,8 +170,8 @@ class pkgCache /*{{{*/ std::string CacheFile; MMap ⤅ - unsigned long sHash(const std::string &S) const APT_PURE; - unsigned long sHash(const char *S) const APT_PURE; + map_id_t sHash(const std::string &S) const APT_PURE; + map_id_t sHash(const char *S) const APT_PURE; public: @@ -183,8 +195,8 @@ class pkgCache /*{{{*/ inline void *DataEnd() {return ((unsigned char *)Map.Data()) + Map.Size();} // String hashing function (512 range) - inline unsigned long Hash(const std::string &S) const {return sHash(S);} - inline unsigned long Hash(const char *S) const {return sHash(S);} + inline map_id_t Hash(const std::string &S) const {return sHash(S);} + inline map_id_t Hash(const char *S) const {return sHash(S);} // Useful transformation things const char *Priority(unsigned char Priority); @@ -263,35 +275,37 @@ struct pkgCache::Header These indicate the number of each structure contained in the cache. PackageCount is especially useful for generating user state structures. See Package::Id for more info. */ - unsigned long GroupCount; - unsigned long PackageCount; - unsigned long VersionCount; - unsigned long DescriptionCount; - unsigned long DependsCount; - unsigned long PackageFileCount; - unsigned long VerFileCount; - unsigned long DescFileCount; - unsigned long ProvidesCount; + map_id_t GroupCount; + map_id_t PackageCount; + map_id_t VersionCount; + map_id_t DescriptionCount; + map_id_t DependsCount; + map_fileid_t PackageFileCount; + map_fileid_t VerFileCount; + map_fileid_t DescFileCount; + map_id_t ProvidesCount; /** \brief index of the first PackageFile structure The PackageFile structures are singly linked lists that represent all package files that have been merged into the cache. */ - map_ptrloc FileList; + map_pointer_t FileList; /** \brief index of the first StringItem structure The cache contains a list of all the unique strings (StringItems). The parser reads this list into memory so it can match strings against it.*/ - map_ptrloc StringList; + map_pointer_t StringList; /** \brief String representing the version system used */ - map_ptrloc VerSysName; - /** \brief Architecture(s) the cache was built against */ - map_ptrloc Architecture; + map_pointer_t VerSysName; + /** \brief native architecture the cache was built against */ + map_pointer_t Architecture; + /** \brief all architectures the cache was built against */ + map_pointer_t Architectures; /** \brief The maximum size of a raw entry from the original Package file */ - unsigned long MaxVerFileSize; + map_filesize_t MaxVerFileSize; /** \brief The maximum size of a raw entry from the original Translation file */ - unsigned long MaxDescFileSize; + map_filesize_t MaxDescFileSize; /** \brief The Pool structures manage the allocation pools that the generator uses @@ -302,23 +316,23 @@ struct pkgCache::Header stores this information so future additions can make use of any unused pool blocks. */ DynamicMMap::Pool Pools[9]; - + /** \brief hash tables providing rapid group/package name lookup - Each group/package name is inserted into the hash table using pkgCache::Hash(const &string) + Each group/package name is inserted into a hash table using pkgCache::Hash(const &string) By iterating over each entry in the hash table it is possible to iterate over the entire list of packages. Hash Collisions are handled with a singly linked list of packages based at the hash item. The linked list contains only packages that match the hashing function. In the PkgHashTable is it possible that multiple packages have the same name - these packages are stored as a sequence in the list. - - Beware: The Hashmethod assumes that the hash table sizes are equal */ - map_ptrloc PkgHashTable[2*1048]; - map_ptrloc GrpHashTable[2*1048]; + The size of both tables is the same. */ + unsigned int HashTableSize; + map_pointer_t * PkgHashTable() const { return (map_pointer_t*) (this + 1); } + map_pointer_t * GrpHashTable() const { return PkgHashTable() + HashTableSize; } /** \brief Size of the complete cache file */ - unsigned long CacheFileSize; + unsigned long long CacheFileSize; bool CheckSizes(Header &Against) const APT_PURE; Header(); @@ -334,17 +348,17 @@ struct pkgCache::Header struct pkgCache::Group { /** \brief Name of the group */ - map_ptrloc Name; // StringItem + map_stringitem_t Name; // Linked List /** \brief Link to the first package which belongs to the group */ - map_ptrloc FirstPackage; // Package + map_pointer_t FirstPackage; // Package /** \brief Link to the last package which belongs to the group */ - map_ptrloc LastPackage; // Package + map_pointer_t LastPackage; // Package /** \brief Link to the next Group */ - map_ptrloc Next; // Group + map_pointer_t Next; // Group /** \brief unique sequel ID */ - unsigned int ID; + map_id_t ID; }; /*}}}*/ @@ -363,9 +377,9 @@ struct pkgCache::Group struct pkgCache::Package { /** \brief Name of the package */ - map_ptrloc Name; // StringItem + map_stringitem_t Name; /** \brief Architecture of the package */ - map_ptrloc Arch; // StringItem + map_stringitem_t Arch; /** \brief Base of a singly linked list of versions Each structure represents a unique version of the package. @@ -375,24 +389,19 @@ struct pkgCache::Package versions of a package can be cleanly handled by the system. Furthermore, this linked list is guaranteed to be sorted from Highest version to lowest version with no duplicate entries. */ - map_ptrloc VersionList; // Version + map_pointer_t VersionList; // Version /** \brief index to the installed version */ - map_ptrloc CurrentVer; // Version - /** \brief indicates the deduced section - - Should be the index to the string "Unknown" or to the section - of the last parsed item. */ - map_ptrloc Section; // StringItem + map_pointer_t CurrentVer; // Version /** \brief index of the group this package belongs to */ - map_ptrloc Group; // Group the Package belongs to + map_pointer_t Group; // Group the Package belongs to // Linked list /** \brief Link to the next package in the same bucket */ - map_ptrloc NextPackage; // Package + map_pointer_t Next; // Package /** \brief List of all dependencies on this package */ - map_ptrloc RevDepends; // Dependency + map_pointer_t RevDepends; // Dependency /** \brief List of all "packages" this package provide */ - map_ptrloc ProvidesList; // Provides + map_pointer_t ProvidesList; // Provides // Install/Remove/Purge etc /** \brief state that the user wishes the package to be in */ @@ -412,7 +421,7 @@ struct pkgCache::Package This allows clients to create an array of size PackageCount and use it to store state information for the package map. For instance the status file emitter uses this to track which packages have been emitted already. */ - unsigned int ID; + map_id_t ID; /** \brief some useful indicators of the package's state */ unsigned long Flags; }; @@ -426,30 +435,30 @@ struct pkgCache::Package struct pkgCache::PackageFile { /** \brief physical disk file that this PackageFile represents */ - map_ptrloc FileName; // StringItem + map_pointer_t FileName; // StringItem /** \brief the release information Please see the files document for a description of what the release information means. */ - map_ptrloc Archive; // StringItem - map_ptrloc Codename; // StringItem - map_ptrloc Component; // StringItem - map_ptrloc Version; // StringItem - map_ptrloc Origin; // StringItem - map_ptrloc Label; // StringItem - map_ptrloc Architecture; // StringItem + map_stringitem_t Archive; + map_stringitem_t Codename; + map_stringitem_t Component; + map_stringitem_t Version; + map_stringitem_t Origin; + map_stringitem_t Label; + map_stringitem_t Architecture; /** \brief The site the index file was fetched from */ - map_ptrloc Site; // StringItem + map_stringitem_t Site; /** \brief indicates what sort of index file this is @TODO enumerate at least the possible indexes */ - map_ptrloc IndexType; // StringItem + map_stringitem_t IndexType; /** \brief Size of the file Used together with the modification time as a simple check to ensure that the Packages file has not been altered since Cache generation. */ - unsigned long Size; + map_filesize_t Size; /** \brief Modification time for the file */ time_t mtime; @@ -458,9 +467,9 @@ struct pkgCache::PackageFile // Linked list /** \brief Link to the next PackageFile in the Cache */ - map_ptrloc NextFile; // PackageFile + map_pointer_t NextFile; // PackageFile /** \brief unique sequel ID */ - unsigned int ID; + map_fileid_t ID; }; /*}}}*/ // VerFile structure /*{{{*/ @@ -471,13 +480,13 @@ struct pkgCache::PackageFile struct pkgCache::VerFile { /** \brief index of the package file that this version was found in */ - map_ptrloc File; // PackageFile + map_pointer_t File; // PackageFile /** \brief next step in the linked list */ - map_ptrloc NextFile; // PkgVerFile + map_pointer_t NextFile; // PkgVerFile /** \brief position in the package file */ - map_ptrloc Offset; // File offset + map_filesize_t Offset; // File offset /** @TODO document pkgCache::VerFile::Size */ - unsigned long Size; + map_filesize_t Size; }; /*}}}*/ // DescFile structure /*{{{*/ @@ -485,13 +494,13 @@ struct pkgCache::VerFile struct pkgCache::DescFile { /** \brief index of the file that this description was found in */ - map_ptrloc File; // PackageFile + map_pointer_t File; // PackageFile /** \brief next step in the linked list */ - map_ptrloc NextFile; // PkgVerFile + map_pointer_t NextFile; // PkgVerFile /** \brief position in the file */ - map_ptrloc Offset; // File offset + map_filesize_t Offset; // File offset /** @TODO document pkgCache::DescFile::Size */ - unsigned long Size; + map_filesize_t Size; }; /*}}}*/ // Version structure /*{{{*/ @@ -503,9 +512,9 @@ struct pkgCache::DescFile struct pkgCache::Version { /** \brief complete version string */ - map_ptrloc VerStr; // StringItem + map_stringitem_t VerStr; /** \brief section this version is filled in */ - map_ptrloc Section; // StringItem + map_stringitem_t Section; /** \brief Multi-Arch capabilities of a package version */ enum VerMultiArch { None = 0, /*!< is the default and doesn't trigger special behaviour */ @@ -527,33 +536,33 @@ struct pkgCache::Version applies to. If FileList is 0 then this is a blank version. The structure should also have a 0 in all other fields excluding pkgCache::Version::VerStr and Possibly pkgCache::Version::NextVer. */ - map_ptrloc FileList; // VerFile + map_pointer_t FileList; // VerFile /** \brief next (lower or equal) version in the linked list */ - map_ptrloc NextVer; // Version + map_pointer_t NextVer; // Version /** \brief next description in the linked list */ - map_ptrloc DescriptionList; // Description + map_pointer_t DescriptionList; // Description /** \brief base of the dependency list */ - map_ptrloc DependsList; // Dependency + map_pointer_t DependsList; // Dependency /** \brief links to the owning package This allows reverse dependencies to determine the package */ - map_ptrloc ParentPkg; // Package + map_pointer_t ParentPkg; // Package /** \brief list of pkgCache::Provides */ - map_ptrloc ProvidesList; // Provides + map_pointer_t ProvidesList; // Provides /** \brief archive size for this version For Debian this is the size of the .deb file. */ - unsigned long long Size; // These are the .deb size + uint64_t Size; // These are the .deb size /** \brief uncompressed size for this version */ - unsigned long long InstalledSize; + uint64_t InstalledSize; /** \brief characteristic value representing this version No two packages in existence should have the same VerStr and Hash with different contents. */ unsigned short Hash; /** \brief unique sequel ID */ - unsigned int ID; + map_id_t ID; /** \brief parsed priority value */ unsigned char Priority; }; @@ -566,22 +575,22 @@ struct pkgCache::Description If the value has a 0 length then this is read using the Package file else the Translation-CODE file is used. */ - map_ptrloc language_code; // StringItem + map_stringitem_t language_code; /** \brief MD5sum of the original description Used to map Translations of a description to a version and to check that the Translation is up-to-date. */ - map_ptrloc md5sum; // StringItem + map_stringitem_t md5sum; /** @TODO document pkgCache::Description::FileList */ - map_ptrloc FileList; // DescFile + map_pointer_t FileList; // DescFile /** \brief next translation for this description */ - map_ptrloc NextDesc; // Description + map_pointer_t NextDesc; // Description /** \brief the text is a description of this package */ - map_ptrloc ParentPkg; // Package + map_pointer_t ParentPkg; // Package /** \brief unique sequel ID */ - unsigned int ID; + map_id_t ID; }; /*}}}*/ // Dependency structure /*{{{*/ @@ -594,21 +603,21 @@ struct pkgCache::Description struct pkgCache::Dependency { /** \brief string of the version the dependency is applied against */ - map_ptrloc Version; // StringItem + map_stringitem_t Version; // StringItem /** \brief index of the package this depends applies to The generator will - if the package does not already exist - create a blank (no version records) package. */ - map_ptrloc Package; // Package + map_pointer_t Package; // Package /** \brief next dependency of this version */ - map_ptrloc NextDepends; // Dependency + map_pointer_t NextDepends; // Dependency /** \brief next reverse dependency of this package */ - map_ptrloc NextRevDepends; // Dependency + map_pointer_t NextRevDepends; // Dependency /** \brief version of the package which has the reverse depends */ - map_ptrloc ParentVer; // Version + map_pointer_t ParentVer; // Version /** \brief unique sequel ID */ - map_ptrloc ID; + map_id_t ID; /** \brief Dependency type - Depends, Recommends, Conflicts, etc */ unsigned char Type; /** \brief comparison operator specified on the depends line @@ -629,19 +638,19 @@ struct pkgCache::Dependency struct pkgCache::Provides { /** \brief index of the package providing this */ - map_ptrloc ParentPkg; // Package + map_pointer_t ParentPkg; // Package /** \brief index of the version this provide line applies to */ - map_ptrloc Version; // Version + map_pointer_t Version; // Version /** \brief version in the provides line (if any) This version allows dependencies to depend on specific versions of a Provides, as well as allowing Provides to override existing packages. This is experimental. Note that Debian doesn't allow versioned provides */ - map_ptrloc ProvideVersion; // StringItem + map_stringitem_t ProvideVersion; /** \brief next provides (based of package) */ - map_ptrloc NextProvides; // Provides + map_pointer_t NextProvides; // Provides /** \brief next provides (based of version) */ - map_ptrloc NextPkgProv; // Provides + map_pointer_t NextPkgProv; // Provides }; /*}}}*/ // StringItem structure /*{{{*/ @@ -656,9 +665,9 @@ struct pkgCache::Provides struct pkgCache::StringItem { /** \brief string this refers to */ - map_ptrloc String; // StringItem + map_stringitem_t String; /** \brief Next link in the chain */ - map_ptrloc NextItem; // StringItem + map_stringitem_t NextItem; }; /*}}}*/ diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 810f0b022..a4d5d8783 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -73,14 +73,37 @@ pkgCacheGenerator::pkgCacheGenerator(DynamicMMap *pMap,OpProgress *Prog) : // Starting header *Cache.HeaderP = pkgCache::Header(); - map_ptrloc const idxVerSysName = WriteStringInMap(_system->VS->Label); + + // make room for the hashtables for packages and groups + if (Map.RawAllocate(2 * (Cache.HeaderP->HashTableSize * sizeof(map_pointer_t))) == 0) + return; + + map_stringitem_t const idxVerSysName = WriteStringInMap(_system->VS->Label); + if (unlikely(idxVerSysName == 0)) + return; Cache.HeaderP->VerSysName = idxVerSysName; // this pointer is set in ReMap, but we need it now for WriteUniqString Cache.StringItemP = (pkgCache::StringItem *)Map.Data(); - map_ptrloc const idxArchitecture = WriteUniqString(_config->Find("APT::Architecture")); - Cache.HeaderP->Architecture = idxArchitecture; - if (unlikely(idxVerSysName == 0 || idxArchitecture == 0)) + map_stringitem_t const idxArchitecture = WriteUniqString(_config->Find("APT::Architecture")); + if (unlikely(idxArchitecture == 0)) return; + Cache.HeaderP->Architecture = idxArchitecture; + + std::vector archs = APT::Configuration::getArchitectures(); + if (archs.size() > 1) + { + std::vector::const_iterator a = archs.begin(); + std::string list = *a; + for (++a; a != archs.end(); ++a) + list.append(",").append(*a); + map_stringitem_t const idxArchitectures = WriteStringInMap(list); + if (unlikely(idxArchitectures == 0)) + return; + Cache.HeaderP->Architectures = idxArchitectures; + } + else + Cache.HeaderP->Architectures = idxArchitecture; + Cache.ReMap(); } else @@ -92,9 +115,9 @@ pkgCacheGenerator::pkgCacheGenerator(DynamicMMap *pMap,OpProgress *Prog) : { _error->Error(_("Cache has an incompatible versioning system")); return; - } + } } - + Cache.HeaderP->Dirty = true; Map.Sync(0,sizeof(pkgCache::Header)); } @@ -153,27 +176,27 @@ void pkgCacheGenerator::ReMap(void const * const oldMap, void const * const newM (*i)->ReMap(oldMap, newMap); } /*}}}*/ // CacheGenerator::WriteStringInMap /*{{{*/ -map_ptrloc pkgCacheGenerator::WriteStringInMap(const char *String, +map_stringitem_t pkgCacheGenerator::WriteStringInMap(const char *String, const unsigned long &Len) { void const * const oldMap = Map.Data(); - map_ptrloc const index = Map.WriteString(String, Len); + map_stringitem_t const index = Map.WriteString(String, Len); if (index != 0) ReMap(oldMap, Map.Data()); return index; } /*}}}*/ // CacheGenerator::WriteStringInMap /*{{{*/ -map_ptrloc pkgCacheGenerator::WriteStringInMap(const char *String) { +map_stringitem_t pkgCacheGenerator::WriteStringInMap(const char *String) { void const * const oldMap = Map.Data(); - map_ptrloc const index = Map.WriteString(String); + map_stringitem_t const index = Map.WriteString(String); if (index != 0) ReMap(oldMap, Map.Data()); return index; } /*}}}*/ -map_ptrloc pkgCacheGenerator::AllocateInMap(const unsigned long &size) {/*{{{*/ +map_pointer_t pkgCacheGenerator::AllocateInMap(const unsigned long &size) {/*{{{*/ void const * const oldMap = Map.Data(); - map_ptrloc const index = Map.Allocate(size); + map_pointer_t const index = Map.Allocate(size); if (index != 0) ReMap(oldMap, Map.Data()); return index; @@ -253,16 +276,16 @@ bool pkgCacheGenerator::MergeList(ListParser &List, } } - if (Cache.HeaderP->PackageCount >= (1ULL<ID)*8)-1) + if (Cache.HeaderP->PackageCount >= std::numeric_limits::max()) return _error->Error(_("Wow, you exceeded the number of package " "names this APT is capable of.")); - if (Cache.HeaderP->VersionCount >= (1ULL<<(sizeof(Cache.VerP->ID)*8))-1) + if (Cache.HeaderP->VersionCount >= std::numeric_limits::max()) return _error->Error(_("Wow, you exceeded the number of versions " "this APT is capable of.")); - if (Cache.HeaderP->DescriptionCount >= (1ULL<<(sizeof(Cache.DescP->ID)*8))-1) + if (Cache.HeaderP->DescriptionCount >= std::numeric_limits::max()) return _error->Error(_("Wow, you exceeded the number of descriptions " "this APT is capable of.")); - if (Cache.HeaderP->DependsCount >= (1ULL<<(sizeof(Cache.DepP->ID)*8))-1ULL) + if (Cache.HeaderP->DependsCount >= std::numeric_limits::max()) return _error->Error(_("Wow, you exceeded the number of dependencies " "this APT is capable of.")); @@ -302,10 +325,9 @@ bool pkgCacheGenerator::MergeListPackage(ListParser &List, pkgCache::PkgIterator // Find the right version to write the description MD5SumValue CurMd5 = List.Description_md5(); - if (CurMd5.Value().empty() == true || List.Description().empty() == true) + if (CurMd5.Value().empty() == true && List.Description("").empty() == true) return true; - std::string CurLang = List.DescriptionLanguage(); - + std::vector availDesc = List.AvailableDescriptionLanguages(); for (Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) { pkgCache::DescIterator VerDesc = Ver.DescriptionList(); @@ -314,31 +336,16 @@ bool pkgCacheGenerator::MergeListPackage(ListParser &List, pkgCache::PkgIterator if (VerDesc.end() == true || MD5SumValue(VerDesc.md5()) != CurMd5) continue; - // don't add a new description if we have one for the given - // md5 && language - if (IsDuplicateDescription(VerDesc, CurMd5, CurLang) == true) - continue; - - pkgCache::DescIterator Desc; - Dynamic DynDesc(Desc); - - map_ptrloc const descindex = NewDescription(Desc, CurLang, CurMd5, VerDesc->md5sum); - if (unlikely(descindex == 0 && _error->PendingError())) - return _error->Error(_("Error occurred while processing %s (%s%d)"), - Pkg.Name(), "NewDescription", 1); - - Desc->ParentPkg = Pkg.Index(); - - // we add at the end, so that the start is constant as we need - // that to be able to efficiently share these lists - VerDesc = Ver.DescriptionList(); // old value might be invalid after ReMap - for (;VerDesc.end() == false && VerDesc->NextDesc != 0; ++VerDesc); - map_ptrloc * const LastNextDesc = (VerDesc.end() == true) ? &Ver->DescriptionList : &VerDesc->NextDesc; - *LastNextDesc = descindex; + map_stringitem_t md5idx = VerDesc->md5sum; + for (std::vector::const_iterator CurLang = availDesc.begin(); CurLang != availDesc.end(); ++CurLang) + { + // don't add a new description if we have one for the given + // md5 && language + if (IsDuplicateDescription(VerDesc, CurMd5, *CurLang) == true) + continue; - if (NewFileDesc(Desc,List) == false) - return _error->Error(_("Error occurred while processing %s (%s%d)"), - Pkg.Name(), "NewFileDesc", 1); + AddNewDescription(List, Ver, *CurLang, CurMd5, md5idx); + } // we can stop here as all "same" versions will share the description break; @@ -353,7 +360,7 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator { pkgCache::VerIterator Ver = Pkg.VersionList(); Dynamic DynVer(Ver); - map_ptrloc *LastVer = &Pkg->VersionList; + map_pointer_t *LastVer = &Pkg->VersionList; void const * oldMap = Map.Data(); unsigned short const Hash = List.VersionHash(); @@ -398,13 +405,13 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator } // Add a new version - map_ptrloc const verindex = NewVersion(Ver, Version, Pkg.Index(), Hash, *LastVer); + map_pointer_t const verindex = NewVersion(Ver, Version, Pkg.Index(), Hash, *LastVer); if (verindex == 0 && _error->PendingError()) return _error->Error(_("Error occurred while processing %s (%s%d)"), Pkg.Name(), "NewVersion", 1); if (oldMap != Map.Data()) - LastVer += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; + LastVer += (map_pointer_t const * const) Map.Data() - (map_pointer_t const * const) oldMap; *LastVer = verindex; if (unlikely(List.NewVersion(Ver) == false)) @@ -465,7 +472,7 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator D.ParentPkg().Group() == Grp) continue; - map_ptrloc *OldDepLast = NULL; + map_pointer_t *OldDepLast = NULL; pkgCache::VerIterator ConVersion = D.ParentVer(); Dynamic DynV(ConVersion); // duplicate the Conflicts/Breaks/Replaces for :none arch @@ -486,11 +493,10 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator return true; } - /* Record the Description (it is not translated) */ + /* Record the Description(s) based on their master md5sum */ MD5SumValue CurMd5 = List.Description_md5(); - if (CurMd5.Value().empty() == true || List.Description().empty() == true) + if (CurMd5.Value().empty() == true && List.Description("").empty() == true) return true; - std::string CurLang = List.DescriptionLanguage(); /* Before we add a new description we first search in the group for a version with a description of the same MD5 - if so we reuse this @@ -501,28 +507,44 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator for (pkgCache::VerIterator V = P.VersionList(); V.end() == false; ++V) { - if (IsDuplicateDescription(V.DescriptionList(), CurMd5, "") == false) + if (V->DescriptionList == 0 || MD5SumValue(V.DescriptionList().md5()) != CurMd5) continue; Ver->DescriptionList = V->DescriptionList; - return true; } } - // We haven't found reusable descriptions, so add the first description - pkgCache::DescIterator Desc = Ver.DescriptionList(); + // We haven't found reusable descriptions, so add the first description(s) + map_stringitem_t md5idx = Ver->DescriptionList == 0 ? 0 : Ver.DescriptionList()->md5sum; + std::vector availDesc = List.AvailableDescriptionLanguages(); + for (std::vector::const_iterator CurLang = availDesc.begin(); CurLang != availDesc.end(); ++CurLang) + if (AddNewDescription(List, Ver, *CurLang, CurMd5, md5idx) == false) + return false; + return true; +} + /*}}}*/ +bool pkgCacheGenerator::AddNewDescription(ListParser &List, pkgCache::VerIterator &Ver, std::string const &lang, MD5SumValue const &CurMd5, map_stringitem_t &md5idx) /*{{{*/ +{ + pkgCache::DescIterator Desc; Dynamic DynDesc(Desc); - map_ptrloc const descindex = NewDescription(Desc, CurLang, CurMd5, 0); + map_pointer_t const descindex = NewDescription(Desc, lang, CurMd5, md5idx); if (unlikely(descindex == 0 && _error->PendingError())) return _error->Error(_("Error occurred while processing %s (%s%d)"), - Pkg.Name(), "NewDescription", 2); + Ver.ParentPkg().Name(), "NewDescription", 1); + + md5idx = Desc->md5sum; + Desc->ParentPkg = Ver.ParentPkg().Index(); - Desc->ParentPkg = Pkg.Index(); - Ver->DescriptionList = descindex; + // we add at the end, so that the start is constant as we need + // that to be able to efficiently share these lists + pkgCache::DescIterator VerDesc = Ver.DescriptionList(); // old value might be invalid after ReMap + for (;VerDesc.end() == false && VerDesc->NextDesc != 0; ++VerDesc); + map_pointer_t * const LastNextDesc = (VerDesc.end() == true) ? &Ver->DescriptionList : &VerDesc->NextDesc; + *LastNextDesc = descindex; if (NewFileDesc(Desc,List) == false) return _error->Error(_("Error occurred while processing %s (%s%d)"), - Pkg.Name(), "NewFileDesc", 2); + Ver.ParentPkg().Name(), "NewFileDesc", 1); return true; } @@ -589,19 +611,19 @@ bool pkgCacheGenerator::NewGroup(pkgCache::GrpIterator &Grp, const string &Name) return true; // Get a structure - map_ptrloc const Group = AllocateInMap(sizeof(pkgCache::Group)); + map_pointer_t const Group = AllocateInMap(sizeof(pkgCache::Group)); if (unlikely(Group == 0)) return false; Grp = pkgCache::GrpIterator(Cache, Cache.GrpP + Group); - map_ptrloc const idxName = WriteStringInMap(Name); + map_pointer_t const idxName = WriteStringInMap(Name); if (unlikely(idxName == 0)) return false; Grp->Name = idxName; // Insert it into the hash table unsigned long const Hash = Cache.Hash(Name); - map_ptrloc *insertAt = &Cache.HeaderP->GrpHashTable[Hash]; + map_pointer_t *insertAt = &Cache.HeaderP->GrpHashTable()[Hash]; while (*insertAt != 0 && strcasecmp(Name.c_str(), Cache.StrP + (Cache.GrpP + *insertAt)->Name) > 0) insertAt = &(Cache.GrpP + *insertAt)->Next; Grp->Next = *insertAt; @@ -626,7 +648,7 @@ bool pkgCacheGenerator::NewPackage(pkgCache::PkgIterator &Pkg,const string &Name return true; // Get a structure - map_ptrloc const Package = AllocateInMap(sizeof(pkgCache::Package)); + map_pointer_t const Package = AllocateInMap(sizeof(pkgCache::Package)); if (unlikely(Package == 0)) return false; Pkg = pkgCache::PkgIterator(Cache,Cache.PkgP + Package); @@ -636,19 +658,19 @@ bool pkgCacheGenerator::NewPackage(pkgCache::PkgIterator &Pkg,const string &Name { Grp->FirstPackage = Package; // Insert it into the hash table - unsigned long const Hash = Cache.Hash(Name); - map_ptrloc *insertAt = &Cache.HeaderP->PkgHashTable[Hash]; + map_id_t const Hash = Cache.Hash(Name); + map_pointer_t *insertAt = &Cache.HeaderP->PkgHashTable()[Hash]; while (*insertAt != 0 && strcasecmp(Name.c_str(), Cache.StrP + (Cache.PkgP + *insertAt)->Name) > 0) - insertAt = &(Cache.PkgP + *insertAt)->NextPackage; - Pkg->NextPackage = *insertAt; + insertAt = &(Cache.PkgP + *insertAt)->Next; + Pkg->Next = *insertAt; *insertAt = Package; } else // Group the Packages together { // this package is the new last package pkgCache::PkgIterator LastPkg(Cache, Cache.PkgP + Grp->LastPackage); - Pkg->NextPackage = LastPkg->NextPackage; - LastPkg->NextPackage = Package; + Pkg->Next = LastPkg->Next; + LastPkg->Next = Package; } Grp->LastPackage = Package; @@ -656,7 +678,7 @@ bool pkgCacheGenerator::NewPackage(pkgCache::PkgIterator &Pkg,const string &Name Pkg->Name = Grp->Name; Pkg->Group = Grp.Index(); // all is mapped to the native architecture - map_ptrloc const idxArch = (Arch == "all") ? Cache.HeaderP->Architecture : WriteUniqString(Arch.c_str()); + map_stringitem_t const idxArch = (Arch == "all") ? Cache.HeaderP->Architecture : WriteUniqString(Arch.c_str()); if (unlikely(idxArch == 0)) return false; Pkg->Arch = idxArch; @@ -673,14 +695,14 @@ bool pkgCacheGenerator::AddImplicitDepends(pkgCache::GrpIterator &G, // copy P.Arch() into a string here as a cache remap // in NewDepends() later may alter the pointer location string Arch = P.Arch() == NULL ? "" : P.Arch(); - map_ptrloc *OldDepLast = NULL; + map_pointer_t *OldDepLast = NULL; /* MultiArch handling introduces a lot of implicit Dependencies: - MultiArch: same → Co-Installable if they have the same version - All others conflict with all other group members */ bool const coInstall = ((V->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same); pkgCache::PkgIterator D = G.PackageList(); Dynamic DynD(D); - map_ptrloc const VerStrIdx = V->VerStr; + map_stringitem_t const VerStrIdx = V->VerStr; for (; D.end() != true; D = G.NextPkg(D)) { if (Arch == D.Arch() || D->VersionList == 0) @@ -713,11 +735,11 @@ bool pkgCacheGenerator::AddImplicitDepends(pkgCache::VerIterator &V, /* MultiArch handling introduces a lot of implicit Dependencies: - MultiArch: same → Co-Installable if they have the same version - All others conflict with all other group members */ - map_ptrloc *OldDepLast = NULL; + map_pointer_t *OldDepLast = NULL; bool const coInstall = ((V->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same); if (coInstall == true) { - map_ptrloc const VerStrIdx = V->VerStr; + map_stringitem_t const VerStrIdx = V->VerStr; // Replaces: ${self}:other ( << ${binary:Version}) NewDepends(D, V, VerStrIdx, pkgCache::Dep::Less, pkgCache::Dep::Replaces, @@ -746,15 +768,15 @@ bool pkgCacheGenerator::NewFileVer(pkgCache::VerIterator &Ver, return true; // Get a structure - map_ptrloc const VerFile = AllocateInMap(sizeof(pkgCache::VerFile)); + map_pointer_t const VerFile = AllocateInMap(sizeof(pkgCache::VerFile)); if (VerFile == 0) - return 0; + return false; pkgCache::VerFileIterator VF(Cache,Cache.VerFileP + VerFile); VF->File = CurrentFile - Cache.PkgFileP; // Link it to the end of the list - map_ptrloc *Last = &Ver->FileList; + map_pointer_t *Last = &Ver->FileList; for (pkgCache::VerFileIterator V = Ver.FileList(); V.end() == false; ++V) Last = &V->NextFile; VF->NextFile = *Last; @@ -772,14 +794,14 @@ bool pkgCacheGenerator::NewFileVer(pkgCache::VerIterator &Ver, // CacheGenerator::NewVersion - Create a new Version /*{{{*/ // --------------------------------------------------------------------- /* This puts a version structure in the linked list */ -unsigned long pkgCacheGenerator::NewVersion(pkgCache::VerIterator &Ver, +map_pointer_t pkgCacheGenerator::NewVersion(pkgCache::VerIterator &Ver, const string &VerStr, - map_ptrloc const ParentPkg, - unsigned long const Hash, - unsigned long Next) + map_pointer_t const ParentPkg, + unsigned short const Hash, + map_pointer_t const Next) { // Get a structure - map_ptrloc const Version = AllocateInMap(sizeof(pkgCache::Version)); + map_pointer_t const Version = AllocateInMap(sizeof(pkgCache::Version)); if (Version == 0) return 0; @@ -814,7 +836,7 @@ unsigned long pkgCacheGenerator::NewVersion(pkgCache::VerIterator &Ver, } } // haven't found the version string, so create - map_ptrloc const idxVerStr = WriteStringInMap(VerStr); + map_stringitem_t const idxVerStr = WriteStringInMap(VerStr); if (unlikely(idxVerStr == 0)) return 0; Ver->VerStr = idxVerStr; @@ -831,7 +853,7 @@ bool pkgCacheGenerator::NewFileDesc(pkgCache::DescIterator &Desc, return true; // Get a structure - map_ptrloc const DescFile = AllocateInMap(sizeof(pkgCache::DescFile)); + map_pointer_t const DescFile = AllocateInMap(sizeof(pkgCache::DescFile)); if (DescFile == 0) return false; @@ -839,7 +861,7 @@ bool pkgCacheGenerator::NewFileDesc(pkgCache::DescIterator &Desc, DF->File = CurrentFile - Cache.PkgFileP; // Link it to the end of the list - map_ptrloc *Last = &Desc->FileList; + map_pointer_t *Last = &Desc->FileList; for (pkgCache::DescFileIterator D = Desc.FileList(); D.end() == false; ++D) Last = &D->NextFile; @@ -858,20 +880,20 @@ bool pkgCacheGenerator::NewFileDesc(pkgCache::DescIterator &Desc, // CacheGenerator::NewDescription - Create a new Description /*{{{*/ // --------------------------------------------------------------------- /* This puts a description structure in the linked list */ -map_ptrloc pkgCacheGenerator::NewDescription(pkgCache::DescIterator &Desc, +map_pointer_t pkgCacheGenerator::NewDescription(pkgCache::DescIterator &Desc, const string &Lang, const MD5SumValue &md5sum, - map_ptrloc idxmd5str) + map_stringitem_t const idxmd5str) { // Get a structure - map_ptrloc const Description = AllocateInMap(sizeof(pkgCache::Description)); + map_pointer_t const Description = AllocateInMap(sizeof(pkgCache::Description)); if (Description == 0) return 0; // Fill it in Desc = pkgCache::DescIterator(Cache,Cache.DescP + Description); Desc->ID = Cache.HeaderP->DescriptionCount++; - map_ptrloc const idxlanguage_code = WriteUniqString(Lang); + map_stringitem_t const idxlanguage_code = WriteUniqString(Lang); if (unlikely(idxlanguage_code == 0)) return 0; Desc->language_code = idxlanguage_code; @@ -880,7 +902,7 @@ map_ptrloc pkgCacheGenerator::NewDescription(pkgCache::DescIterator &Desc, Desc->md5sum = idxmd5str; else { - map_ptrloc const idxmd5sum = WriteStringInMap(md5sum.Value()); + map_stringitem_t const idxmd5sum = WriteStringInMap(md5sum.Value()); if (unlikely(idxmd5sum == 0)) return 0; Desc->md5sum = idxmd5sum; @@ -898,9 +920,9 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, string const &Version, unsigned int const &Op, unsigned int const &Type, - map_ptrloc* &OldDepLast) + map_stringitem_t* &OldDepLast) { - map_ptrloc index = 0; + map_stringitem_t index = 0; if (Version.empty() == false) { int const CmpOp = Op & 0x0F; @@ -915,21 +937,21 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, if (unlikely(index == 0)) return false; if (OldDepLast != 0 && oldMap != Map.Data()) - OldDepLast += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; + OldDepLast += (map_pointer_t const * const) Map.Data() - (map_pointer_t const * const) oldMap; } } return NewDepends(Pkg, Ver, index, Op, Type, OldDepLast); } bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, - map_ptrloc const Version, + map_pointer_t const Version, unsigned int const &Op, unsigned int const &Type, - map_ptrloc* &OldDepLast) + map_pointer_t* &OldDepLast) { void const * const oldMap = Map.Data(); // Get a structure - map_ptrloc const Dependency = AllocateInMap(sizeof(pkgCache::Dependency)); + map_pointer_t const Dependency = AllocateInMap(sizeof(pkgCache::Dependency)); if (unlikely(Dependency == 0)) return false; @@ -954,7 +976,7 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, for (pkgCache::DepIterator D = Ver.DependsList(); D.end() == false; ++D) OldDepLast = &D->NextDepends; } else if (oldMap != Map.Data()) - OldDepLast += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; + OldDepLast += (map_pointer_t const * const) Map.Data() - (map_pointer_t const * const) oldMap; Dep->NextDepends = *OldDepLast; *OldDepLast = Dep.Index(); @@ -1019,7 +1041,7 @@ bool pkgCacheGenerator::ListParser::NewProvides(pkgCache::VerIterator &Ver, return true; // Get a structure - map_ptrloc const Provides = Owner->AllocateInMap(sizeof(pkgCache::Provides)); + map_pointer_t const Provides = Owner->AllocateInMap(sizeof(pkgCache::Provides)); if (unlikely(Provides == 0)) return false; Cache.HeaderP->ProvidesCount++; @@ -1031,7 +1053,7 @@ bool pkgCacheGenerator::ListParser::NewProvides(pkgCache::VerIterator &Ver, Prv->NextPkgProv = Ver->ProvidesList; Ver->ProvidesList = Prv.Index(); if (Version.empty() == false) { - map_ptrloc const idxProvideVersion = WriteString(Version); + map_stringitem_t const idxProvideVersion = WriteString(Version); Prv->ProvideVersion = idxProvideVersion; if (unlikely(idxProvideVersion == 0)) return false; @@ -1066,14 +1088,14 @@ bool pkgCacheGenerator::SelectFile(const string &File,const string &Site, unsigned long Flags) { // Get some space for the structure - map_ptrloc const idxFile = AllocateInMap(sizeof(*CurrentFile)); + map_pointer_t const idxFile = AllocateInMap(sizeof(*CurrentFile)); if (unlikely(idxFile == 0)) return false; CurrentFile = Cache.PkgFileP + idxFile; // Fill it in - map_ptrloc const idxFileName = WriteStringInMap(File); - map_ptrloc const idxSite = WriteUniqString(Site); + map_stringitem_t const idxFileName = WriteStringInMap(File); + map_stringitem_t const idxSite = WriteUniqString(Site); if (unlikely(idxFileName == 0 || idxSite == 0)) return false; CurrentFile->FileName = idxFileName; @@ -1081,7 +1103,7 @@ bool pkgCacheGenerator::SelectFile(const string &File,const string &Site, CurrentFile->NextFile = Cache.HeaderP->FileList; CurrentFile->Flags = Flags; CurrentFile->ID = Cache.HeaderP->PackageFileCount; - map_ptrloc const idxIndexType = WriteUniqString(Index.GetType()->Label); + map_stringitem_t const idxIndexType = WriteUniqString(Index.GetType()->Label); if (unlikely(idxIndexType == 0)) return false; CurrentFile->IndexType = idxIndexType; @@ -1098,7 +1120,7 @@ bool pkgCacheGenerator::SelectFile(const string &File,const string &Site, // --------------------------------------------------------------------- /* This is used to create handles to strings. Given the same text it always returns the same number */ -unsigned long pkgCacheGenerator::WriteUniqString(const char *S, +map_stringitem_t pkgCacheGenerator::WriteUniqString(const char *S, unsigned int Size) { /* We use a very small transient hash table here, this speeds up generation @@ -1111,7 +1133,7 @@ unsigned long pkgCacheGenerator::WriteUniqString(const char *S, // Search for an insertion point pkgCache::StringItem *I = Cache.StringItemP + Cache.HeaderP->StringList; int Res = 1; - map_ptrloc *Last = &Cache.HeaderP->StringList; + map_stringitem_t *Last = &Cache.HeaderP->StringList; for (; I != Cache.StringItemP; Last = &I->NextItem, I = Cache.StringItemP + I->NextItem) { @@ -1129,15 +1151,15 @@ unsigned long pkgCacheGenerator::WriteUniqString(const char *S, // Get a structure void const * const oldMap = Map.Data(); - map_ptrloc const Item = AllocateInMap(sizeof(pkgCache::StringItem)); + map_pointer_t const Item = AllocateInMap(sizeof(pkgCache::StringItem)); if (Item == 0) return 0; - map_ptrloc const idxString = WriteStringInMap(S,Size); + map_stringitem_t const idxString = WriteStringInMap(S,Size); if (unlikely(idxString == 0)) return 0; if (oldMap != Map.Data()) { - Last += (map_ptrloc const * const) Map.Data() - (map_ptrloc const * const) oldMap; + Last += (map_pointer_t const * const) Map.Data() - (map_pointer_t const * const) oldMap; I += (pkgCache::StringItem const * const) Map.Data() - (pkgCache::StringItem const * const) oldMap; } *Last = Item; @@ -1258,9 +1280,9 @@ static bool CheckValidity(const string &CacheFile, // --------------------------------------------------------------------- /* Size is kind of an abstract notion that is only used for the progress meter */ -static unsigned long ComputeSize(FileIterator Start,FileIterator End) +static map_filesize_t ComputeSize(FileIterator Start,FileIterator End) { - unsigned long TotalSize = 0; + map_filesize_t TotalSize = 0; for (; Start < End; ++Start) { if ((*Start)->HasPackages() == false) @@ -1275,7 +1297,7 @@ static unsigned long ComputeSize(FileIterator Start,FileIterator End) /* */ static bool BuildCache(pkgCacheGenerator &Gen, OpProgress *Progress, - unsigned long &CurrentSize,unsigned long TotalSize, + map_filesize_t &CurrentSize,map_filesize_t TotalSize, FileIterator Start, FileIterator End) { FileIterator I; @@ -1294,7 +1316,7 @@ static bool BuildCache(pkgCacheGenerator &Gen, continue; } - unsigned long Size = (*I)->Size(); + map_filesize_t Size = (*I)->Size(); if (Progress != NULL) Progress->OverallProgress(CurrentSize,TotalSize,Size,_("Reading package lists")); CurrentSize += Size; @@ -1311,7 +1333,7 @@ static bool BuildCache(pkgCacheGenerator &Gen, CurrentSize = 0; for (I = Start; I != End; ++I) { - unsigned long Size = (*I)->Size(); + map_filesize_t Size = (*I)->Size(); if (Progress != NULL) Progress->OverallProgress(CurrentSize,TotalSize,Size,_("Collecting File Provides")); CurrentSize += Size; @@ -1325,9 +1347,9 @@ static bool BuildCache(pkgCacheGenerator &Gen, /*}}}*/ // CacheGenerator::CreateDynamicMMap - load an mmap with configuration options /*{{{*/ DynamicMMap* pkgCacheGenerator::CreateDynamicMMap(FileFd *CacheF, unsigned long Flags) { - unsigned long const MapStart = _config->FindI("APT::Cache-Start", 24*1024*1024); - unsigned long const MapGrow = _config->FindI("APT::Cache-Grow", 1*1024*1024); - unsigned long const MapLimit = _config->FindI("APT::Cache-Limit", 0); + map_filesize_t const MapStart = _config->FindI("APT::Cache-Start", 24*1024*1024); + map_filesize_t const MapGrow = _config->FindI("APT::Cache-Grow", 1*1024*1024); + map_filesize_t const MapLimit = _config->FindI("APT::Cache-Limit", 0); Flags |= MMap::Moveable; if (_config->FindB("APT::Cache-Fallback", false) == true) Flags |= MMap::Fallback; @@ -1365,7 +1387,7 @@ bool pkgCacheGenerator::MakeStatusCache(pkgSourceList &List,OpProgress *Progress Files.push_back (*j); } - unsigned long const EndOfSource = Files.size(); + map_filesize_t const EndOfSource = Files.size(); if (_system->AddStatusFiles(Files) == false) return false; @@ -1455,8 +1477,8 @@ bool pkgCacheGenerator::MakeStatusCache(pkgSourceList &List,OpProgress *Progress } // Lets try the source cache. - unsigned long CurrentSize = 0; - unsigned long TotalSize = 0; + map_filesize_t CurrentSize = 0; + map_filesize_t TotalSize = 0; if (CheckValidity(SrcCacheFile, List, Files.begin(), Files.begin()+EndOfSource) == true) { @@ -1464,7 +1486,7 @@ bool pkgCacheGenerator::MakeStatusCache(pkgSourceList &List,OpProgress *Progress std::clog << "srcpkgcache.bin is valid - populate MMap with it." << std::endl; // Preload the map with the source cache FileFd SCacheF(SrcCacheFile,FileFd::ReadOnly); - unsigned long const alloc = Map->RawAllocate(SCacheF.Size()); + map_pointer_t const alloc = Map->RawAllocate(SCacheF.Size()); if ((alloc == 0 && _error->PendingError()) || SCacheF.Read((unsigned char *)Map->Data() + alloc, SCacheF.Size()) == false) @@ -1551,13 +1573,13 @@ APT_DEPRECATED bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **Ou bool pkgCacheGenerator::MakeOnlyStatusCache(OpProgress *Progress,DynamicMMap **OutMap) { std::vector Files; - unsigned long EndOfSource = Files.size(); + map_filesize_t EndOfSource = Files.size(); if (_system->AddStatusFiles(Files) == false) return false; SPtr Map = CreateDynamicMMap(NULL); - unsigned long CurrentSize = 0; - unsigned long TotalSize = 0; + map_filesize_t CurrentSize = 0; + map_filesize_t TotalSize = 0; TotalSize = ComputeSize(Files.begin()+EndOfSource,Files.end()); diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index 1e1a71026..42da7b12d 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -38,10 +38,10 @@ class pkgCacheGenerator /*{{{*/ private: pkgCache::StringItem *UniqHash[26]; - APT_HIDDEN map_ptrloc WriteStringInMap(std::string const &String) { return WriteStringInMap(String.c_str()); }; - APT_HIDDEN map_ptrloc WriteStringInMap(const char *String); - APT_HIDDEN map_ptrloc WriteStringInMap(const char *String, const unsigned long &Len); - APT_HIDDEN map_ptrloc AllocateInMap(const unsigned long &size); + APT_HIDDEN map_stringitem_t WriteStringInMap(std::string const &String) { return WriteStringInMap(String.c_str()); }; + APT_HIDDEN map_stringitem_t WriteStringInMap(const char *String); + APT_HIDDEN map_stringitem_t WriteStringInMap(const char *String, const unsigned long &Len); + APT_HIDDEN map_pointer_t AllocateInMap(const unsigned long &size); public: @@ -78,21 +78,21 @@ class pkgCacheGenerator /*{{{*/ bool NewFileDesc(pkgCache::DescIterator &Desc,ListParser &List); bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, std::string const &Version, unsigned int const &Op, - unsigned int const &Type, map_ptrloc* &OldDepLast); + unsigned int const &Type, map_pointer_t* &OldDepLast); bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, - map_ptrloc const Version, unsigned int const &Op, - unsigned int const &Type, map_ptrloc* &OldDepLast); - unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,unsigned long Next) APT_DEPRECATED + map_pointer_t const Version, unsigned int const &Op, + unsigned int const &Type, map_pointer_t* &OldDepLast); + map_pointer_t NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,map_pointer_t const Next) APT_DEPRECATED { return NewVersion(Ver, VerStr, 0, 0, Next); } - unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr, - map_ptrloc const ParentPkg, unsigned long const Hash, - unsigned long Next); - map_ptrloc NewDescription(pkgCache::DescIterator &Desc,const std::string &Lang,const MD5SumValue &md5sum,map_ptrloc Next); + map_pointer_t NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr, + map_pointer_t const ParentPkg, unsigned short const Hash, + map_pointer_t const Next); + map_pointer_t NewDescription(pkgCache::DescIterator &Desc,const std::string &Lang,const MD5SumValue &md5sum,map_stringitem_t const idxmd5str); public: - unsigned long WriteUniqString(const char *S,unsigned int Size); - inline unsigned long WriteUniqString(const std::string &S) {return WriteUniqString(S.c_str(),S.length());}; + map_stringitem_t WriteUniqString(const char *S,unsigned int const Size); + inline map_stringitem_t WriteUniqString(const std::string &S) {return WriteUniqString(S.c_str(),S.length());}; void DropProgress() {Progress = 0;}; bool SelectFile(const std::string &File,const std::string &Site,pkgIndexFile const &Index, @@ -125,6 +125,9 @@ class pkgCacheGenerator /*{{{*/ APT_HIDDEN bool AddImplicitDepends(pkgCache::GrpIterator &G, pkgCache::PkgIterator &P, pkgCache::VerIterator &V); APT_HIDDEN bool AddImplicitDepends(pkgCache::VerIterator &V, pkgCache::PkgIterator &D); + + APT_HIDDEN bool AddNewDescription(ListParser &List, pkgCache::VerIterator &Ver, + std::string const &lang, MD5SumValue const &CurMd5, map_stringitem_t &md5idx); }; /*}}}*/ // This is the abstract package list parser class. /*{{{*/ @@ -135,17 +138,17 @@ class pkgCacheGenerator::ListParser // Some cache items pkgCache::VerIterator OldDepVer; - map_ptrloc *OldDepLast; + map_pointer_t *OldDepLast; // Flag file dependencies bool FoundFileDeps; protected: - inline unsigned long WriteUniqString(std::string S) {return Owner->WriteUniqString(S);}; - inline unsigned long WriteUniqString(const char *S,unsigned int Size) {return Owner->WriteUniqString(S,Size);}; - inline unsigned long WriteString(const std::string &S) {return Owner->WriteStringInMap(S);}; - inline unsigned long WriteString(const char *S,unsigned int Size) {return Owner->WriteStringInMap(S,Size);}; + inline map_stringitem_t WriteUniqString(std::string S) {return Owner->WriteUniqString(S);}; + inline map_stringitem_t WriteUniqString(const char *S,unsigned int Size) {return Owner->WriteUniqString(S,Size);}; + inline map_stringitem_t WriteString(const std::string &S) {return Owner->WriteStringInMap(S);}; + inline map_stringitem_t WriteString(const char *S,unsigned int Size) {return Owner->WriteStringInMap(S,Size);}; bool NewDepends(pkgCache::VerIterator &Ver,const std::string &Package, const std::string &Arch, const std::string &Version,unsigned int Op, unsigned int Type); @@ -160,8 +163,8 @@ class pkgCacheGenerator::ListParser virtual bool ArchitectureAll() = 0; virtual std::string Version() = 0; virtual bool NewVersion(pkgCache::VerIterator &Ver) = 0; - virtual std::string Description() = 0; - virtual std::string DescriptionLanguage() = 0; + virtual std::string Description(std::string const &lang) = 0; + virtual std::vector AvailableDescriptionLanguages() = 0; virtual MD5SumValue Description_md5() = 0; virtual unsigned short VersionHash() = 0; /** compare currently parsed version with given version @@ -175,8 +178,8 @@ class pkgCacheGenerator::ListParser APT_PURE bool SameVersion(unsigned short const Hash, pkgCache::VerIterator const &Ver); virtual bool UsePackage(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver) = 0; - virtual unsigned long Offset() = 0; - virtual unsigned long Size() = 0; + virtual map_filesize_t Offset() = 0; + virtual map_filesize_t Size() = 0; virtual bool Step() = 0; diff --git a/apt-pkg/pkgrecords.cc b/apt-pkg/pkgrecords.cc index c403e4dc3..859af3a09 100644 --- a/apt-pkg/pkgrecords.cc +++ b/apt-pkg/pkgrecords.cc @@ -26,7 +26,7 @@ // Records::pkgRecords - Constructor /*{{{*/ // --------------------------------------------------------------------- /* This will create the necessary structures to access the status files */ -pkgRecords::pkgRecords(pkgCache &Cache) : d(NULL), Cache(Cache), +pkgRecords::pkgRecords(pkgCache &aCache) : d(NULL), Cache(aCache), Files(Cache.HeaderP->PackageFileCount) { for (pkgCache::PkgFileIterator I = Cache.FileBegin(); diff --git a/apt-pkg/pkgrecords.h b/apt-pkg/pkgrecords.h index b5237b3a0..a902da8b8 100644 --- a/apt-pkg/pkgrecords.h +++ b/apt-pkg/pkgrecords.h @@ -18,6 +18,8 @@ #define PKGLIB_PKGRECORDS_H #include +#include +#include #include #include @@ -56,17 +58,39 @@ class pkgRecords::Parser /*{{{*/ // These refer to the archive file for the Version virtual std::string FileName() {return std::string();}; - virtual std::string MD5Hash() {return std::string();}; - virtual std::string SHA1Hash() {return std::string();}; - virtual std::string SHA256Hash() {return std::string();}; - virtual std::string SHA512Hash() {return std::string();}; virtual std::string SourcePkg() {return std::string();}; virtual std::string SourceVer() {return std::string();}; + /** return all known hashes in this record. + * + * For authentication proposes packages come with hashsums which + * this method is supposed to parse and return so that clients can + * choose the hash to be used. + */ + virtual HashStringList Hashes() const { return HashStringList(); }; + APT_DEPRECATED std::string MD5Hash() const { return GetHashFromHashes("MD5Sum"); }; + APT_DEPRECATED std::string SHA1Hash() const { return GetHashFromHashes("SHA1"); }; + APT_DEPRECATED std::string SHA256Hash() const { return GetHashFromHashes("SHA256"); }; + APT_DEPRECATED std::string SHA512Hash() const { return GetHashFromHashes("SHA512"); }; + // These are some general stats about the package virtual std::string Maintainer() {return std::string();}; - virtual std::string ShortDesc() {return std::string();}; - virtual std::string LongDesc() {return std::string();}; + /** return short description in language from record. + * + * @see #LongDesc + */ + virtual std::string ShortDesc(std::string const &/*lang*/) {return std::string();}; + /** return long description in language from record. + * + * If \b lang is empty the "best" available language will be + * returned as determined by the APT::Languages configuration. + * If a (requested) language can't be found in this record an empty + * string will be returned. + */ + virtual std::string LongDesc(std::string const &/*lang*/) {return std::string();}; + std::string ShortDesc() {return ShortDesc("");}; + std::string LongDesc() {return LongDesc("");}; + virtual std::string Name() {return std::string();}; virtual std::string Homepage() {return std::string();} @@ -77,6 +101,14 @@ class pkgRecords::Parser /*{{{*/ virtual void GetRec(const char *&Start,const char *&Stop) {Start = Stop = 0;}; virtual ~Parser() {}; + + private: + APT_HIDDEN std::string GetHashFromHashes(char const * const type) const + { + HashStringList const hashes = Hashes(); + HashString const * const hs = hashes.find(type); + return hs != NULL ? hs->HashValue() : ""; + }; }; /*}}}*/ #endif diff --git a/apt-pkg/pkgsystem.h b/apt-pkg/pkgsystem.h index 6e33c67ed..f88ffa7c8 100644 --- a/apt-pkg/pkgsystem.h +++ b/apt-pkg/pkgsystem.h @@ -85,10 +85,12 @@ class pkgSystem virtual bool AddStatusFiles(std::vector &List) = 0; virtual bool FindIndex(pkgCache::PkgFileIterator File, pkgIndexFile *&Found) const = 0; - + /* Evauluate how 'right' we are for this system based on the filesystem etc.. */ - virtual signed Score(Configuration const &/*Cnf*/) {return 0;}; + virtual signed Score(Configuration const &/*Cnf*/) { + return 0; + }; pkgSystem(); virtual ~pkgSystem() {}; diff --git a/apt-pkg/sourcelist.h b/apt-pkg/sourcelist.h index 9df0c1d74..261dd8161 100644 --- a/apt-pkg/sourcelist.h +++ b/apt-pkg/sourcelist.h @@ -52,7 +52,15 @@ class pkgAcquire; class pkgIndexFile; class metaIndex; -class pkgSourceList +class pkgSource +{ + protected: + + std::vector SrcList; + +}; + +class pkgSourceList : public pkgSource { public: @@ -86,7 +94,7 @@ class pkgSourceList typedef std::vector::const_iterator const_iterator; - protected: + public: std::vector SrcList; diff --git a/apt-pkg/srcrecords.h b/apt-pkg/srcrecords.h index e000e176a..c68d374bb 100644 --- a/apt-pkg/srcrecords.h +++ b/apt-pkg/srcrecords.h @@ -14,6 +14,7 @@ #define PKGLIB_SRCRECORDS_H #include +#include #include #include @@ -29,15 +30,24 @@ class pkgSrcRecords { public: +#if __GNUC__ >= 4 + // ensure that con- & de-structor don't trigger this warning + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif // Describes a single file struct File { - std::string MD5Hash; - unsigned long Size; std::string Path; std::string Type; + unsigned long long Size; + HashStringList Hashes; + APT_DEPRECATED std::string MD5Hash; }; - +#if __GNUC__ >= 4 + #pragma GCC diagnostic pop +#endif + // Abstract parser for each source record class Parser { diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 91d176e3c..7085e7d69 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -47,16 +47,43 @@ public: unsigned long long Size; }; +static unsigned long AlphaHash(const char *Text, size_t Length) /*{{{*/ +{ + /* This very simple hash function for the last 8 letters gives + very good performance on the debian package files */ + if (Length > 8) + { + Text += (Length - 8); + Length = 8; + } + unsigned long Res = 0; + for (size_t i = 0; i < Length; ++i) + Res = ((unsigned long)(Text[i]) & 0xDF) ^ (Res << 1); + return Res & 0xFF; +} + /*}}}*/ + // TagFile::pkgTagFile - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ pkgTagFile::pkgTagFile(FileFd *pFd,unsigned long long Size) + : d(NULL) +{ + Init(pFd, Size); +} + +void pkgTagFile::Init(FileFd *pFd,unsigned long long Size) { /* The size is increased by 4 because if we start with the Size of the filename we need to try to read 1 char more to see an EOF faster, 1 char the end-pointer can be on and maybe 2 newlines need to be added to the end of the file -> 4 extra chars */ Size += 4; + if(d != NULL) + { + free(d->Buffer); + delete d; + } d = new pkgTagFilePrivate(pFd, Size); if (d->Fd.IsOpen() == false) @@ -128,18 +155,23 @@ bool pkgTagFile::Resize(unsigned long long const newSize) */ bool pkgTagFile::Step(pkgTagSection &Tag) { - while (Tag.Scan(d->Start,d->End - d->Start) == false) + if(Tag.Scan(d->Start,d->End - d->Start) == false) { - if (Fill() == false) - return false; - - if(Tag.Scan(d->Start,d->End - d->Start)) - break; + do + { + if (Fill() == false) + return false; - if (Resize() == false) - return _error->Error(_("Unable to parse package file %s (1)"), - d->Fd.Name().c_str()); + if(Tag.Scan(d->Start,d->End - d->Start, false)) + break; + + if (Resize() == false) + return _error->Error(_("Unable to parse package file %s (1)"), + d->Fd.Name().c_str()); + + } while (Tag.Scan(d->Start,d->End - d->Start, false) == false); } + d->Start += Tag.size(); d->iOffset += Tag.size(); @@ -233,7 +265,7 @@ bool pkgTagFile::Jump(pkgTagSection &Tag,unsigned long long Offset) if (Fill() == false) return false; - if (Tag.Scan(d->Start, d->End - d->Start) == false) + if (Tag.Scan(d->Start, d->End - d->Start, false) == false) return _error->Error(_("Unable to parse package file %s (2)"),d->Fd.Name().c_str()); return true; @@ -243,27 +275,46 @@ bool pkgTagFile::Jump(pkgTagSection &Tag,unsigned long long Offset) // --------------------------------------------------------------------- /* */ pkgTagSection::pkgTagSection() - : Section(0), TagCount(0), d(NULL), Stop(0) + : Section(0), d(NULL), Stop(0) { - memset(&Indexes, 0, sizeof(Indexes)); - memset(&AlphaIndexes, 0, sizeof(AlphaIndexes)); + memset(&LookupTable, 0, sizeof(LookupTable)); } /*}}}*/ // TagSection::Scan - Scan for the end of the header information /*{{{*/ -// --------------------------------------------------------------------- -/* This looks for the first double new line in the data stream. - It also indexes the tags in the section. */ -bool pkgTagSection::Scan(const char *Start,unsigned long MaxLength) +bool pkgTagSection::Scan(const char *Start,unsigned long MaxLength, bool const Restart) { + Section = Start; const char *End = Start + MaxLength; - Stop = Section = Start; - memset(AlphaIndexes,0,sizeof(AlphaIndexes)); + + if (Restart == false && Tags.empty() == false) + { + Stop = Section + Tags.back().StartTag; + if (End <= Stop) + return false; + Stop = (const char *)memchr(Stop,'\n',End - Stop); + if (Stop == NULL) + return false; + ++Stop; + } + else + { + Stop = Section; + if (Tags.empty() == false) + { + memset(&LookupTable, 0, sizeof(LookupTable)); + Tags.clear(); + } + Tags.reserve(0x100); + } + size_t TagCount = Tags.size(); if (Stop == 0) return false; - TagCount = 0; - while (TagCount+1 < sizeof(Indexes)/sizeof(Indexes[0]) && Stop < End) + TagData lastTagData(0); + lastTagData.EndTag = 0; + unsigned long lastTagHash = 0; + while (Stop < End) { TrimRecord(true,End); @@ -275,12 +326,39 @@ bool pkgTagSection::Scan(const char *Start,unsigned long MaxLength) // Start a new index and add it to the hash if (isspace(Stop[0]) == 0) { - Indexes[TagCount++] = Stop - Section; - AlphaIndexes[AlphaHash(Stop,End)] = TagCount; + // store the last found tag + if (lastTagData.EndTag != 0) + { + if (LookupTable[lastTagHash] != 0) + lastTagData.NextInBucket = LookupTable[lastTagHash]; + LookupTable[lastTagHash] = TagCount; + Tags.push_back(lastTagData); + } + + ++TagCount; + lastTagData = TagData(Stop - Section); + // find the colon separating tag and value + char const * Colon = (char const *) memchr(Stop, ':', End - Stop); + if (Colon == NULL) + return false; + // find the end of the tag (which might or might not be the colon) + char const * EndTag = Colon; + --EndTag; + for (; EndTag > Stop && isspace(*EndTag) != 0; --EndTag) + ; + ++EndTag; + lastTagData.EndTag = EndTag - Section; + lastTagHash = AlphaHash(Stop, EndTag - Stop); + // find the beginning of the value + Stop = Colon + 1; + for (; isspace(*Stop) != 0; ++Stop); + if (Stop >= End) + return false; + lastTagData.StartValue = Stop - Section; } Stop = (const char *)memchr(Stop,'\n',End - Stop); - + if (Stop == 0) return false; @@ -291,7 +369,16 @@ bool pkgTagSection::Scan(const char *Start,unsigned long MaxLength) // Double newline marks the end of the record if (Stop+1 < End && Stop[1] == '\n') { - Indexes[TagCount] = Stop - Section; + if (lastTagData.EndTag != 0) + { + if (LookupTable[lastTagHash] != 0) + lastTagData.NextInBucket = LookupTable[lastTagHash]; + LookupTable[lastTagHash] = TagCount; + Tags.push_back(lastTagData); + } + + TagData const td(Stop - Section); + Tags.push_back(td); TrimRecord(false,End); return true; } @@ -320,8 +407,8 @@ void pkgTagSection::Trim() for (; Stop > Section + 2 && (Stop[-2] == '\n' || Stop[-2] == '\r'); Stop--); } /*}}}*/ -// TagSection::Exists - return True if a tag exists /*{{{*/ -bool pkgTagSection::Exists(const char* const Tag) +// TagSection::Exists - return True if a tag exists /*{{{*/ +bool pkgTagSection::Exists(const char* const Tag) const { unsigned int tmp; return Find(Tag, tmp); @@ -332,73 +419,43 @@ bool pkgTagSection::Exists(const char* const Tag) /* This searches the section for a tag that matches the given string. */ bool pkgTagSection::Find(const char *Tag,unsigned int &Pos) const { - unsigned int Length = strlen(Tag); - unsigned int I = AlphaIndexes[AlphaHash(Tag)]; - if (I == 0) + size_t const Length = strlen(Tag); + unsigned int Bucket = LookupTable[AlphaHash(Tag, Length)]; + if (Bucket == 0) return false; - I--; - - for (unsigned int Counter = 0; Counter != TagCount; Counter++, - I = (I+1)%TagCount) + + for (; Bucket != 0; Bucket = Tags[Bucket - 1].NextInBucket) { - const char *St; - St = Section + Indexes[I]; - if (strncasecmp(Tag,St,Length) != 0) + if ((Tags[Bucket - 1].EndTag - Tags[Bucket - 1].StartTag) != Length) continue; - // Make sure the colon is in the right place - const char *C = St + Length; - for (; isspace(*C) != 0; C++); - if (*C != ':') + char const * const St = Section + Tags[Bucket - 1].StartTag; + if (strncasecmp(Tag,St,Length) != 0) continue; - Pos = I; + + Pos = Bucket - 1; return true; } Pos = 0; return false; } - /*}}}*/ -// TagSection::Find - Locate a tag /*{{{*/ -// --------------------------------------------------------------------- -/* This searches the section for a tag that matches the given string. */ bool pkgTagSection::Find(const char *Tag,const char *&Start, const char *&End) const { - unsigned int Length = strlen(Tag); - unsigned int I = AlphaIndexes[AlphaHash(Tag)]; - if (I == 0) + unsigned int Pos; + if (Find(Tag, Pos) == false) return false; - I--; - - for (unsigned int Counter = 0; Counter != TagCount; Counter++, - I = (I+1)%TagCount) - { - const char *St; - St = Section + Indexes[I]; - if (strncasecmp(Tag,St,Length) != 0) - continue; - - // Make sure the colon is in the right place - const char *C = St + Length; - for (; isspace(*C) != 0; C++); - if (*C != ':') - continue; - // Strip off the gunk from the start end - Start = C; - End = Section + Indexes[I+1]; - if (Start >= End) - return _error->Error("Internal parsing error"); - - for (; (isspace(*Start) != 0 || *Start == ':') && Start < End; Start++); - for (; isspace(End[-1]) != 0 && End > Start; End--); - - return true; - } - - Start = End = 0; - return false; + Start = Section + Tags[Pos].StartValue; + // Strip off the gunk from the end + End = Section + Tags[Pos + 1].StartTag; + if (unlikely(Start > End)) + return _error->Error("Internal parsing error"); + + for (; isspace(End[-1]) != 0 && End > Start; --End); + + return true; } /*}}}*/ // TagSection::FindS - Find a string /*{{{*/ @@ -461,6 +518,17 @@ unsigned long long pkgTagSection::FindULL(const char *Tag, unsigned long long co return Result; } /*}}}*/ +// TagSection::FindB - Find boolean value /*{{{*/ +// --------------------------------------------------------------------- +/* */ +bool pkgTagSection::FindB(const char *Tag, bool const &Default) const +{ + const char *Start, *Stop; + if (Find(Tag, Start, Stop) == false) + return Default; + return StringToBool(string(Start, Stop)); +} + /*}}}*/ // TagSection::FindFlag - Locate a yes/no type flag /*{{{*/ // --------------------------------------------------------------------- /* The bits marked in Flag are masked on/off in Flags */ @@ -493,6 +561,13 @@ bool pkgTagSection::FindFlag(unsigned long &Flags, unsigned long Flag, return true; } /*}}}*/ +APT_PURE unsigned int pkgTagSection::Count() const { /*{{{*/ + if (Tags.empty() == true) + return 0; + // the last element is just marking the end and isn't a real one + return Tags.size() - 1; +} + /*}}}*/ // TFRewrite - Rewrite a control record /*{{{*/ // --------------------------------------------------------------------- /* This writes the control record to stdout rewriting it as necessary. The diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index d5b62e76d..db43bfbf9 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -25,6 +25,8 @@ #include #include +#include +#include #ifndef APT_8_CLEANER_HEADERS #include @@ -35,23 +37,20 @@ class FileFd; class pkgTagSection { const char *Section; - // We have a limit of 256 tags per section. - unsigned int Indexes[256]; - unsigned int AlphaIndexes[0x100]; - unsigned int TagCount; + struct TagData { + unsigned int StartTag; + unsigned int EndTag; + unsigned int StartValue; + unsigned int NextInBucket; + + TagData(unsigned int const StartTag) : StartTag(StartTag), NextInBucket(0) {} + }; + std::vector Tags; + unsigned int LookupTable[0x100]; + // dpointer placeholder (for later in case we need it) void *d; - /* This very simple hash function for the last 8 letters gives - very good performance on the debian package files */ - inline static unsigned long AlphaHash(const char *Text, const char *End = 0) - { - unsigned long Res = 0; - for (; Text != End && *Text != ':' && *Text != 0; Text++) - Res = ((unsigned long)(*Text) & 0xDF) ^ (Res << 1); - return Res & 0xFF; - } - protected: const char *Stop; @@ -63,23 +62,46 @@ class pkgTagSection bool Find(const char *Tag,const char *&Start, const char *&End) const; bool Find(const char *Tag,unsigned int &Pos) const; std::string FindS(const char *Tag) const; - signed int FindI(const char *Tag,signed long Default = 0) const ; + signed int FindI(const char *Tag,signed long Default = 0) const; + bool FindB(const char *Tag, bool const &Default = false) const; unsigned long long FindULL(const char *Tag, unsigned long long const &Default = 0) const; bool FindFlag(const char *Tag,unsigned long &Flags, unsigned long Flag) const; bool static FindFlag(unsigned long &Flags, unsigned long Flag, const char* Start, const char* Stop); - bool Scan(const char *Start,unsigned long MaxLength); + + /** \brief searches the boundaries of the current section + * + * While parameter Start marks the beginning of the section, this method + * will search for the first double newline in the data stream which marks + * the end of the section. It also does a first pass over the content of + * the section parsing it as encountered for processing later on by Find + * + * @param Start is the beginning of the section + * @param MaxLength is the size of valid data in the stream pointed to by Start + * @param Restart if enabled internal state will be cleared, otherwise it is + * assumed that now more data is available in the stream and the parsing will + * start were it encountered insufficent data the last time. + * + * @return \b true if section end was found, \b false otherwise. + * Beware that internal state will be inconsistent if \b false is returned! + */ + APT_MUSTCHECK bool Scan(const char *Start, unsigned long MaxLength, bool const Restart = true); inline unsigned long size() const {return Stop - Section;}; void Trim(); virtual void TrimRecord(bool BeforeRecord, const char* &End); - - inline unsigned int Count() const {return TagCount;}; - bool Exists(const char* const Tag); - + + /** \brief amount of Tags in the current section + * + * Note: if a Tag is mentioned repeatly it will be counted multiple + * times, but only the last occurance is available via Find methods. + */ + unsigned int Count() const; + bool Exists(const char* const Tag) const; + inline void Get(const char *&Start,const char *&Stop,unsigned int I) const - {Start = Section + Indexes[I]; Stop = Section + Indexes[I+1];} - + {Start = Section + Tags[I].StartTag; Stop = Section + Tags[I+1].StartTag;} + inline void GetSection(const char *&Start,const char *&Stop) const { Start = Section; @@ -105,6 +127,8 @@ class pkgTagFile unsigned long Offset(); bool Jump(pkgTagSection &Tag,unsigned long long Offset); + void Init(FileFd *F,unsigned long long Size = 32*1024); + pkgTagFile(FileFd *F,unsigned long long Size = 32*1024); virtual ~pkgTagFile(); }; diff --git a/apt-private/acqprogress.cc b/apt-private/acqprogress.cc index 0f5b53e50..17a12799c 100644 --- a/apt-private/acqprogress.cc +++ b/apt-private/acqprogress.cc @@ -64,8 +64,6 @@ void AcqTextStatus::IMSHit(pkgAcquire::ItemDesc &Itm) cout << '\r' << BlankLine << '\r'; cout << _("Hit ") << Itm.Description; - if (Itm.Owner->FileSize != 0) - cout << " [" << SizeToStr(Itm.Owner->FileSize) << "B]"; cout << endl; Update = true; } @@ -142,6 +140,9 @@ void AcqTextStatus::Stop() if (Quiet <= 0) cout << '\r' << BlankLine << '\r' << flush; + if (_config->FindB("quiet::NoStatistic", false) == true) + return; + if (FetchedBytes != 0 && _error->PendingError() == false) ioprintf(cout,_("Fetched %sB in %s (%sB/s)\n"), SizeToStr(FetchedBytes).c_str(), @@ -170,7 +171,7 @@ bool AcqTextStatus::Pulse(pkgAcquire *Owner) ScreenWidth = sizeof(Buffer)-1; // Put in the percent done - sprintf(S,"%.0f%%",((CurrentBytes + CurrentItems)*100.0)/(TotalBytes+TotalItems)); + sprintf(S,"%.0f%%", Percent); bool Shown = false; for (pkgAcquire::Worker *I = Owner->WorkersBegin(); I != 0; diff --git a/apt-private/private-cachefile.h b/apt-private/private-cachefile.h index dce7e0a3a..1fddabfbd 100644 --- a/apt-private/private-cachefile.h +++ b/apt-private/private-cachefile.h @@ -6,7 +6,20 @@ #include #include #include +#include +#include +// FIXME: we need to find a way to export this +class APT_PUBLIC SourceList : public pkgSourceList +{ + + public: + // Add custom metaIndex (e.g. local files) + void AddMetaIndex(metaIndex *mi) { + SrcList.push_back(mi); + } + +}; // class CacheFile - Cover class for some dependency cache functions /*{{{*/ // --------------------------------------------------------------------- @@ -28,6 +41,16 @@ class APT_PUBLIC CacheFile : public pkgCacheFile return false; return true; } + // FIXME: this can go once the "libapt-pkg" pkgSourceList has a way + // to add custom metaIndexes (or custom local files or so) + bool BuildSourceList(OpProgress */*Progress*/ = NULL) { + if (SrcList != NULL) + return true; + SrcList = new SourceList(); + if (SrcList->ReadMainList() == false) + return _error->Error(_("The list of sources could not be read.")); + return true; + } bool Open(bool WithLock = true) { OpTextProgress Prog(*_config); diff --git a/apt-private/private-install.cc b/apt-private/private-install.cc index e08cd8057..55893bda0 100644 --- a/apt-private/private-install.cc +++ b/apt-private/private-install.cc @@ -20,6 +20,7 @@ #include #include #include +#include #include #include @@ -30,6 +31,7 @@ #include #include #include +#include #include #include @@ -680,10 +682,34 @@ bool DoCacheManipulationFromCommandLine(CommandLine &CmdL, CacheFile &Cache, bool DoInstall(CommandLine &CmdL) { CacheFile Cache; + // first check for local pkgs and add them to the cache + for (const char **I = CmdL.FileList; *I != 0; I++) + { + if(FileExists(*I)) + { + // FIXME: make this more elegant + std::string TypeStr = flExtension(*I) + "-file"; + pkgSourceList::Type *Type = pkgSourceList::Type::GetType(TypeStr.c_str()); + if(Type != 0) + { + std::vector List; + std::map Options; + if(Type->CreateItem(List, *I, "", "", Options)) + { + // we have our own CacheFile that gives us a SourceList + // with superpowerz + SourceList *sources = (SourceList*)Cache.GetSourceList(); + sources->AddMetaIndex(List[0]); + } + } + } + } + + // then open the cache if (Cache.OpenForInstall() == false || Cache.CheckDeps(CmdL.FileSize() != 1) == false) return false; - + std::map verset; if(!DoCacheManipulationFromCommandLine(CmdL, Cache, verset, 0)) diff --git a/apt-private/private-list.cc b/apt-private/private-list.cc index b69002103..e85aaf64c 100644 --- a/apt-private/private-list.cc +++ b/apt-private/private-list.cc @@ -37,28 +37,20 @@ struct PackageSortAlphabetic /*{{{*/ return (l_name < r_name); } }; - /*}}}*/ -class PackageNameMatcher : public Matcher /*{{{*/ + +class PackageNameMatcher : public Matcher { -#ifdef PACKAGE_MATCHER_ABI_COMPAT -#define PackageMatcher PackageNameMatchesFnmatch -#endif public: PackageNameMatcher(const char **patterns) { for(int i=0; patterns[i] != NULL; ++i) { std::string pattern = patterns[i]; -#ifdef PACKAGE_MATCHER_ABI_COMPAT - APT::CacheFilter::PackageNameMatchesFnmatch *cachefilter = NULL; - cachefilter = new APT::CacheFilter::PackageNameMatchesFnmatch(pattern); -#else APT::CacheFilter::PackageMatcher *cachefilter = NULL; if(_config->FindB("APT::Cmd::Use-Regexp", false) == true) cachefilter = new APT::CacheFilter::PackageNameMatchesRegEx(pattern); else cachefilter = new APT::CacheFilter::PackageNameMatchesFnmatch(pattern); -#endif filters.push_back(cachefilter); } } diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index 1414617eb..88a323280 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -264,6 +264,46 @@ static bool DumpPackage(CommandLine &CmdL) return true; } /*}}}*/ +// ShowHashTableStats - Show stats about a hashtable /*{{{*/ +// --------------------------------------------------------------------- +/* */ +template +static void ShowHashTableStats(std::string Type, + T *StartP, + map_pointer_t *Hashtable, + unsigned long Size) +{ + // hashtable stats for the HashTable + unsigned long NumBuckets = Size; + unsigned long UsedBuckets = 0; + unsigned long UnusedBuckets = 0; + unsigned long LongestBucket = 0; + unsigned long ShortestBucket = NumBuckets; + unsigned long Entries = 0; + for (unsigned int i=0; i < NumBuckets; ++i) + { + T *P = StartP + Hashtable[i]; + if(P == 0 || P == StartP) + { + ++UnusedBuckets; + continue; + } + ++UsedBuckets; + unsigned long ThisBucketSize = 0; + for (; P != StartP; P = StartP + P->Next) + ++ThisBucketSize; + Entries += ThisBucketSize; + LongestBucket = std::max(ThisBucketSize, LongestBucket); + ShortestBucket = std::min(ThisBucketSize, ShortestBucket); + } + cout << "Total buckets in " << Type << ": " << NumBuckets << std::endl; + cout << " Unused: " << UnusedBuckets << std::endl; + cout << " Used: " << UsedBuckets << std::endl; + cout << " Average entries: " << Entries/(double)NumBuckets << std::endl; + cout << " Longest: " << LongestBucket << std::endl; + cout << " Shortest: " << ShortestBucket << std::endl; +} + /*}}}*/ // Stats - Dump some nice statistics /*{{{*/ // --------------------------------------------------------------------- /* */ @@ -360,20 +400,32 @@ static bool Stats(CommandLine &) } } cout << _("Total dependency version space: ") << SizeToStr(DepVerSize) << endl; - + unsigned long Slack = 0; for (int I = 0; I != 7; I++) Slack += Cache->Head().Pools[I].ItemSize*Cache->Head().Pools[I].Count; cout << _("Total slack space: ") << SizeToStr(Slack) << endl; - + unsigned long Total = 0; - Total = Slack + Size + Cache->Head().DependsCount*Cache->Head().DependencySz + - Cache->Head().VersionCount*Cache->Head().VersionSz + - Cache->Head().PackageCount*Cache->Head().PackageSz + - Cache->Head().VerFileCount*Cache->Head().VerFileSz + - Cache->Head().ProvidesCount*Cache->Head().ProvidesSz; +#define APT_CACHESIZE(X,Y) (Cache->Head().X * Cache->Head().Y) + Total = Slack + Size + + APT_CACHESIZE(GroupCount, GroupSz) + + APT_CACHESIZE(PackageCount, PackageSz) + + APT_CACHESIZE(VersionCount, VersionSz) + + APT_CACHESIZE(DescriptionCount, DescriptionSz) + + APT_CACHESIZE(DependsCount, DependencySz) + + APT_CACHESIZE(PackageFileCount, PackageFileSz) + + APT_CACHESIZE(VerFileCount, VerFileSz) + + APT_CACHESIZE(DescFileCount, DescFileSz) + + APT_CACHESIZE(ProvidesCount, ProvidesSz) + + (2 * Cache->Head().HashTableSize * sizeof(map_id_t)); cout << _("Total space accounted for: ") << SizeToStr(Total) << endl; - +#undef APT_CACHESIZE + + // hashtable stats + ShowHashTableStats("PkgHashTable", Cache->PkgP, Cache->Head().PkgHashTable(), Cache->Head().HashTableSize); + ShowHashTableStats("GrpHashTable", Cache->GrpP, Cache->Head().GrpHashTable(), Cache->Head().HashTableSize); + return true; } /*}}}*/ @@ -1231,7 +1283,7 @@ static bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V) struct ExDescFile { pkgCache::DescFile *Df; - map_ptrloc ID; + map_id_t ID; }; // Search - Perform a search /*{{{*/ diff --git a/cmdline/apt-dump-solver.cc b/cmdline/apt-dump-solver.cc index 04e13bde9..424764b3c 100644 --- a/cmdline/apt-dump-solver.cc +++ b/cmdline/apt-dump-solver.cc @@ -40,6 +40,8 @@ int main(int argc,const char *argv[]) /*{{{*/ ShowHelp(); return 0; } + // we really don't need anything + DropPrivs(); FILE* input = fdopen(STDIN_FILENO, "r"); FILE* output = fopen("/tmp/dump.edsp", "w"); diff --git a/cmdline/apt-extracttemplates.cc b/cmdline/apt-extracttemplates.cc index e4428e051..f95b9e5ba 100644 --- a/cmdline/apt-extracttemplates.cc +++ b/cmdline/apt-extracttemplates.cc @@ -52,7 +52,7 @@ pkgCache *DebFile::Cache = 0; // --------------------------------------------------------------------- /* */ DebFile::DebFile(const char *debfile) - : File(debfile, FileFd::ReadOnly), Size(0), Control(NULL), ControlLen(0), + : File(debfile, FileFd::ReadOnly), Control(NULL), ControlLen(0), DepOp(0), PreDepOp(0), Config(0), Template(0), Which(None) { } @@ -103,10 +103,12 @@ bool DebFile::DoItem(Item &I, int &Fd) if (strcmp(I.Name, "control") == 0) { delete [] Control; - Control = new char[I.Size+1]; - Control[I.Size] = 0; + Control = new char[I.Size+3]; + Control[I.Size] = '\n'; + Control[I.Size + 1] = '\n'; + Control[I.Size + 2] = '\0'; Which = IsControl; - ControlLen = I.Size; + ControlLen = I.Size + 3; // make it call the Process method below. this is so evil Fd = -2; } @@ -138,7 +140,7 @@ bool DebFile::DoItem(Item &I, int &Fd) // --------------------------------------------------------------------- /* */ bool DebFile::Process(Item &/*I*/, const unsigned char *data, - unsigned long size, unsigned long pos) + unsigned long long size, unsigned long long pos) { switch (Which) { @@ -162,9 +164,10 @@ bool DebFile::Process(Item &/*I*/, const unsigned char *data, bool DebFile::ParseInfo() { if (Control == NULL) return false; - + pkgTagSection Section; - Section.Scan(Control, ControlLen); + if (Section.Scan(Control, ControlLen) == false) + return false; Package = Section.FindS("Package"); Version = GetInstalledVer(Package); diff --git a/cmdline/apt-extracttemplates.h b/cmdline/apt-extracttemplates.h index 9cc3f5f25..829cdae75 100644 --- a/cmdline/apt-extracttemplates.h +++ b/cmdline/apt-extracttemplates.h @@ -20,7 +20,6 @@ class pkgCache; class DebFile : public pkgDirStream { FileFd File; - unsigned long Size; char *Control; unsigned long ControlLen; @@ -29,7 +28,7 @@ public: ~DebFile(); bool DoItem(Item &I, int &fd); bool Process(pkgDirStream::Item &I, const unsigned char *data, - unsigned long size, unsigned long pos); + unsigned long long size, unsigned long long pos); bool Go(); bool ParseInfo(); diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index a58386eb0..bd866bc8c 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -832,23 +832,25 @@ static bool DoSource(CommandLine &CmdL) queued.insert(Last->Index().ArchiveURI(I->Path)); // check if we have a file with that md5 sum already localy - if(!I->MD5Hash.empty() && FileExists(flNotDir(I->Path))) - { - FileFd Fd(flNotDir(I->Path), FileFd::ReadOnly); - MD5Summation sum; - sum.AddFD(Fd.Fd(), Fd.Size()); - Fd.Close(); - if((string)sum.Result() == I->MD5Hash) + std::string localFile = flNotDir(I->Path); + if (FileExists(localFile) == true) + if(I->Hashes.VerifyFile(localFile) == true) { ioprintf(c1out,_("Skipping already downloaded file '%s'\n"), - flNotDir(I->Path).c_str()); + localFile.c_str()); continue; } + + // see if we have a hash (Acquire::ForceHash is the only way to have none) + if (I->Hashes.usable() == false && _config->FindB("APT::Get::AllowUnauthenticated",false) == false) + { + ioprintf(c1out, "Skipping download of file '%s' as requested hashsum is not available for authentication\n", + localFile.c_str()); + continue; } new pkgAcqFile(&Fetcher,Last->Index().ArchiveURI(I->Path), - I->MD5Hash,I->Size, - Last->Index().SourceInfo(*Last,*I),Src); + I->Hashes, I->Size, Last->Index().SourceInfo(*Last,*I), Src); } } @@ -1061,7 +1063,30 @@ static bool DoBuildDep(CommandLine &CmdL) for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++) { string Src; - pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,Cache); + pkgSrcRecords::Parser *Last = 0; + + // a unpacked debian source tree + if (DirectoryExists(*I)) + { + // FIXME: how can we make this more elegant? + std::string TypeName = "debian/control File Source Index"; + pkgIndexFile::Type *Type = pkgIndexFile::Type::GetType(TypeName.c_str()); + if(Type != NULL) + Last = Type->CreateSrcPkgParser(*I); + } + // if its a local file (e.g. .dsc) use this + else if (FileExists(*I)) + { + // see if we can get a parser for this pkgIndexFile type + string TypeName = flExtension(*I) + " File Source Index"; + pkgIndexFile::Type *Type = pkgIndexFile::Type::GetType(TypeName.c_str()); + if(Type != NULL) + Last = Type->CreateSrcPkgParser(*I); + } else { + // normal case, search the cache for the source file + Last = FindSrc(*I,Recs,SrcRecs,Src,Cache); + } + if (Last == 0) return _error->Error(_("Unable to find a source package for %s"),Src.c_str()); @@ -1079,7 +1104,7 @@ static bool DoBuildDep(CommandLine &CmdL) } else if (Last->BuildDepends(BuildDeps, _config->FindB("APT::Get::Arch-Only", false), StripMultiArch) == false) return _error->Error(_("Unable to get build-dependency information for %s"),Src.c_str()); - + // Also ensure that build-essential packages are present Configuration::Item const *Opts = _config->Tree("APT::Build-Essential"); if (Opts) diff --git a/cmdline/apt-internal-solver.cc b/cmdline/apt-internal-solver.cc index 5fda7b6a0..c24a96cdf 100644 --- a/cmdline/apt-internal-solver.cc +++ b/cmdline/apt-internal-solver.cc @@ -76,6 +76,9 @@ int main(int argc,const char *argv[]) /*{{{*/ {'o',"option",0,CommandLine::ArbItem}, {0,0,0,0}}; + // we really don't need anything + DropPrivs(); + CommandLine CmdL(Args,_config); if (pkgInitConfig(*_config) == false || CmdL.Parse(argc,argv) == false) { diff --git a/configure.ac b/configure.ac index ca0c0f3b6..ec0c00b41 100644 --- a/configure.ac +++ b/configure.ac @@ -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.5" +PACKAGE_VERSION="1.1~exp1" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index 70743a29d..eead11a1b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,59 @@ +apt (1.1~exp1) experimental; urgency=low + + [ David Kalnischkies ] + * [API Break] change "std::string pkgAcquire::Item::DescURI()" to + "std::string pkgAcquire::Item::DescURI() const" + * [ABI-Break] increase hashtable size for packages/groups by factor 5 + * [ABI-Break] cleanup datatypes mix used in binary cache + * [internal API-Break] remove the Section member from package struct + * use 'best' hash for source authentication (LP: 1098738) + * use HashStringList in the acquire system + * deal with hashes in ftparchive more dynamic as well + * reenable pipelining via hashsum reordering support + * parse and retrieve multiple Descriptions in one record + * improve pkgTagSection scanning and parsing + * invalid cache if architecture set doesn't match (Closes: 745036) + + [ Michael Vogt ] + * add support for "apt-get build-dep foo.dsc" + * add support for "apt-get build-dep unpacked-source-dir" + * add support for "apt-get install foo_1.0_all.deb" + * make "apt-get update" progress much more accurate by loading the + sizes of the targets into the fetcher early + * Implement simple by-hash for apt update to improve reliability of + the update. Apt will try to fetch the Packages file via + /by-hash/$hash_type/$hash_value if the repo supports that. + - add APT::Acquire::$(host)::By-Hash=1 knob + - add Acquire-By-Hash=1 to Release file + * add Debug::Acquire::Progress debug option + * [ABI-Break] lp:~mvo/apt/source-hashes: + - use sha{512,256,1} for deb-src when available LP: #1098738 + * [ABI-Break] stop exporting the accidently exported parsenetrc() symbol + * [ABI-Break] remove the PACKAGE_MATCHER_ABI_COMPAT defines + * [ABI BREAK] apt-pkg/pkgcache.h: + - adjust pkgCache::State::VerPriority enum, to match reality + * test/integration/test-debsrc-hashes: + - add integration test, thanks to Daniel Hartwig + * [ABI-Break] remove the PACKAGE_MATCHER_ABI_COMPAT defines + * [ABI-Break] Pass struct IndexTarget/indexRecords to + pkgAcqIndex{,Merge}Diffs + * [internal API-Break] rename pkgCache::Package::NextPackage to + pkgCache::Package::Next + * Calculate Percent as part of pkgAcquireStatus to provide a weighted + percent for both items and bytes + * apt-pkg/contrib/macros.h: bump library version to 4.13 + * apt-private/acqprogress.cc: do not show file size on IMSHit, it wasn't + fetched + * Fix warnings from clang -Wall/clang -fsanitize=address + * add DropPrivs() and drop privileges to nobody when running the + the buildin apt and dump solvers + * lp:~mvo/apt/webserver-simulate-broken-with-fix346386: + - fix invalid InRelease file download checking and add regression + test to server broken files to the buildin test webserver + - add regression test for LP: #34638 + + -- Michael Vogt Thu, 19 Jun 2014 12:01:48 +0200 + apt (1.0.5) unstable; urgency=low [ Michael Vogt ] diff --git a/debian/control b/debian/control index 0437aa737..317d0dc74 100644 --- a/debian/control +++ b/debian/control @@ -38,12 +38,12 @@ Description: commandline package manager * apt-config as an interface to the configuration settings * apt-key as an interface to manage authentication keys -Package: libapt-pkg4.12 +Package: libapt-pkg4.13 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends} -Breaks: apt (<< 0.9.4~), libapt-inst1.5 (<< 0.9.9~) +Breaks: apt (<< 0.9.4~), libapt-inst1.6 Section: libs Description: package management runtime library This library provides the common functionality for searching and @@ -61,7 +61,7 @@ Description: package management runtime library http, rsh as well as an interface to add more transports like https (apt-transport-https) and debtorrent (apt-transport-debtorrent). -Package: libapt-inst1.5 +Package: libapt-inst1.6 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} diff --git a/debian/gbp.conf b/debian/gbp.conf index 4b8d9a692..4991e409e 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -1,5 +1,5 @@ [DEFAULT] prebuild = ./prepare-release pre-export postbuild = ./prepare-release post-build -debian-branch = debian/sid +debian-branch = debian/experimental debian-tag = %(version)s diff --git a/debian/libapt-inst1.5.install.in b/debian/libapt-inst1.5.install.in deleted file mode 100644 index 8bcce2c28..000000000 --- a/debian/libapt-inst1.5.install.in +++ /dev/null @@ -1,2 +0,0 @@ -bin/libapt-inst*.so.* usr/lib/@DEB_HOST_MULTIARCH@/ -usr/share/locale/*/*/libapt-inst*.mo diff --git a/debian/libapt-inst1.5.symbols b/debian/libapt-inst1.5.symbols deleted file mode 100644 index 8ce707287..000000000 --- a/debian/libapt-inst1.5.symbols +++ /dev/null @@ -1,91 +0,0 @@ -libapt-inst.so.1.5 libapt-inst1.5 #MINVER# -* Build-Depends-Package: libapt-pkg-dev - (c++)"ExtractTar::Done(bool)@Base" 0.8.0 - (c++)"ExtractTar::Go(pkgDirStream&)@Base" 0.8.0 - (c++)"ExtractTar::StartGzip()@Base" 0.8.0 - (c++)"ExtractTar::ExtractTar(FileFd&, unsigned long, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"ExtractTar::~ExtractTar()@Base" 0.8.0 - (c++)"debDebFile::GotoMember(char const*)@Base" 0.8.0 - (c++)"debDebFile::CheckMember(char const*)@Base" 0.8.0 - (c++)"debDebFile::ControlExtract::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 - (c++)"debDebFile::ControlExtract::~ControlExtract()@Base" 0.8.0 - (c++)"debDebFile::ExtractTarMember(pkgDirStream&, char const*)@Base" 0.9.15.4 - (c++)"debDebFile::ExtractArchive(pkgDirStream&)@Base" 0.8.0 - (c++)"debDebFile::MemControlExtract::TakeControl(void const*, unsigned long)@Base" 0.8.0 - (c++)"debDebFile::MemControlExtract::Read(debDebFile&)@Base" 0.8.0 - (c++)"debDebFile::MemControlExtract::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 - (c++)"debDebFile::MemControlExtract::Process(pkgDirStream::Item&, unsigned char const*, unsigned long, unsigned long)@Base" 0.8.0 - (c++)"debDebFile::MemControlExtract::~MemControlExtract()@Base" 0.8.0 - (c++)"debDebFile::debDebFile(FileFd&)@Base" 0.8.0 - (c++)"pkgExtract::FinishedFile(pkgDirStream::Item&, int)@Base" 0.8.0 - (c++)"pkgExtract::CheckDirReplace(std::basic_string, std::allocator >, unsigned int)@Base" 0.8.0 - (c++)"pkgExtract::HandleOverwrites(pkgFLCache::NodeIterator, bool)@Base" 0.8.0 - (c++)"pkgExtract::Fail(pkgDirStream::Item&, int)@Base" 0.8.0 - (c++)"pkgExtract::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 - (c++)"pkgExtract::Aborted()@Base" 0.8.0 - (c++)"pkgExtract::Finished()@Base" 0.8.0 - (c++)"pkgExtract::pkgExtract(pkgFLCache&, pkgCache::VerIterator)@Base" 0.8.0 - (c++)"pkgExtract::~pkgExtract()@Base" 0.8.0 - (c++)"pkgFLCache::TreeLookup(unsigned int*, char const*, char const*, unsigned long, unsigned int*, bool)@Base" 0.8.0 - (c++)"pkgFLCache::AddConfFile(char const*, char const*, pkgFLCache::PkgIterator const&, unsigned char const*)@Base" 0.8.0 - (c++)"pkgFLCache::AddDiversion(pkgFLCache::PkgIterator const&, char const*, char const*)@Base" 0.8.0 - (c++)"pkgFLCache::BeginDiverLoad()@Base" 0.8.0 - (c++)"pkgFLCache::FinishDiverLoad()@Base" 0.8.0 - (c++)"pkgFLCache::GetPkg(char const*, char const*, bool)@Base" 0.8.0 - (c++)"pkgFLCache::Header::Header()@Base" 0.8.0 - (c++)"pkgFLCache::GetNode(char const*, char const*, unsigned int, bool, bool)@Base" 0.8.0 - (c++)"pkgFLCache::DropNode(unsigned int)@Base" 0.8.0 - (c++)"pkgFLCache::HashNode(pkgFLCache::NodeIterator const&)@Base" 0.8.0 - (c++)"pkgFLCache::PrintTree(unsigned int, unsigned long)@Base" 0.8.0 - (c++)"pkgFLCache::pkgFLCache(DynamicMMap&)@Base" 0.8.0 - (c++)"pkgDirStream::FinishedFile(pkgDirStream::Item&, int)@Base" 0.8.0 - (c++)"pkgDirStream::Fail(pkgDirStream::Item&, int)@Base" 0.8.0 - (c++)"pkgDirStream::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 - (c++)"pkgDirStream::Process(pkgDirStream::Item&, unsigned char const*, unsigned long, unsigned long)@Base" 0.8.0 - (c++)"pkgDirStream::~pkgDirStream()@Base" 0.8.0 - (c++|optional)"pkgCache::DepIterator::operator++(int)@Base" 0.8.0 - (c++|optional)"pkgCache::DepIterator::operator++()@Base" 0.8.0 - (c++|optional)"pkgCache::VerIterator::operator++(int)@Base" 0.8.0 - (c++|optional)"pkgCache::VerIterator::operator++()@Base" 0.8.0 - (c++)"ARArchive::LoadHeaders()@Base" 0.8.0 - (c++)"ARArchive::ARArchive(FileFd&)@Base" 0.8.0 - (c++)"ARArchive::~ARArchive()@Base" 0.8.0 - (c++)"pkgFLCache::NodeIterator::RealPackage() const@Base" 0.8.0 - (c++)"pkgFLCache::Header::CheckSizes(pkgFLCache::Header&) const@Base" 0.8.0 - (c++|optional)"pkgCache::DepIterator::OwnerPointer() const@Base" 0.8.0 - (c++|optional)"pkgCache::VerIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"ARArchive::FindMember(char const*) const@Base" 0.8.0 - (c++)"typeinfo for ExtractTar@Base" 0.8.0 - (c++)"typeinfo for pkgExtract@Base" 0.8.0 - (c++)"typeinfo for pkgDirStream@Base" 0.8.0 - (c++)"typeinfo for debDebFile::ControlExtract@Base" 0.8.0 - (c++)"typeinfo for debDebFile::MemControlExtract@Base" 0.8.0 - (c++|optional)"typeinfo for pkgCache::DepIterator@Base" 0.8.0 - (c++|optional)"typeinfo for pkgCache::VerIterator@Base" 0.8.0 - (c++|optional)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++|optional)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for ExtractTar@Base" 0.8.0 - (c++)"typeinfo name for pkgExtract@Base" 0.8.0 - (c++)"typeinfo name for pkgDirStream@Base" 0.8.0 - (c++)"typeinfo name for debDebFile::ControlExtract@Base" 0.8.0 - (c++)"typeinfo name for debDebFile::MemControlExtract@Base" 0.8.0 - (c++|optional)"typeinfo name for pkgCache::DepIterator@Base" 0.8.0 - (c++|optional)"typeinfo name for pkgCache::VerIterator@Base" 0.8.0 - (c++|optional)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++|optional)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for ExtractTar@Base" 0.8.0 - (c++)"vtable for pkgExtract@Base" 0.8.0 - (c++)"vtable for pkgDirStream@Base" 0.8.0 - (c++)"vtable for debDebFile::ControlExtract@Base" 0.8.0 - (c++)"vtable for debDebFile::MemControlExtract@Base" 0.8.0 - (c++|optional)"vtable for pkgCache::DepIterator@Base" 0.8.0 - (c++|optional)"vtable for pkgCache::VerIterator@Base" 0.8.0 - (c++|optional)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++|optional)"vtable for pkgCache::Iterator@Base" 0.8.0 -### gcc artefacts - (c++|optional=std)"std::vector >::~vector()@Base" 0.8.12 -### try to ignore std:: template instances - (c++|regex|optional=std)"^std::basic_string<.+ >\(.+\)@Base$" 0.8.0 - (c++|regex|optional=std)"^typeinfo name for std::iterator<.*>@Base$" 0.8.0 - (c++|regex|optional=std)"^typeinfo for std::iterator<.*>@Base$" 0.8.0 - (c++|optional=std)"std::ctype::do_widen(char) const@Base" 1.0.3 diff --git a/debian/libapt-inst1.6.install.in b/debian/libapt-inst1.6.install.in new file mode 100644 index 000000000..8bcce2c28 --- /dev/null +++ b/debian/libapt-inst1.6.install.in @@ -0,0 +1,2 @@ +bin/libapt-inst*.so.* usr/lib/@DEB_HOST_MULTIARCH@/ +usr/share/locale/*/*/libapt-inst*.mo diff --git a/debian/libapt-inst1.6.symbols b/debian/libapt-inst1.6.symbols new file mode 100644 index 000000000..74c4665a2 --- /dev/null +++ b/debian/libapt-inst1.6.symbols @@ -0,0 +1,91 @@ +libapt-inst.so.1.6 libapt-inst1.6 #MINVER# +* Build-Depends-Package: libapt-pkg-dev + (c++)"ExtractTar::Done(bool)@Base" 0.8.0 + (c++)"ExtractTar::Go(pkgDirStream&)@Base" 0.8.0 + (c++)"ExtractTar::StartGzip()@Base" 0.8.0 + (c++)"ExtractTar::ExtractTar(FileFd&, unsigned long long, std::basic_string, std::allocator >)@Base" 1.0.5 + (c++)"ExtractTar::~ExtractTar()@Base" 0.8.0 + (c++)"debDebFile::GotoMember(char const*)@Base" 0.8.0 + (c++)"debDebFile::CheckMember(char const*)@Base" 0.8.0 + (c++)"debDebFile::ControlExtract::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 + (c++)"debDebFile::ControlExtract::~ControlExtract()@Base" 0.8.0 + (c++)"debDebFile::ExtractTarMember(pkgDirStream&, char const*)@Base" 0.9.15.4 + (c++)"debDebFile::ExtractArchive(pkgDirStream&)@Base" 0.8.0 + (c++)"debDebFile::MemControlExtract::TakeControl(void const*, unsigned long long)@Base" 1.0.5 + (c++)"debDebFile::MemControlExtract::Read(debDebFile&)@Base" 0.8.0 + (c++)"debDebFile::MemControlExtract::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 + (c++)"debDebFile::MemControlExtract::Process(pkgDirStream::Item&, unsigned char const*, unsigned long long, unsigned long long)@Base" 1.0.5 + (c++)"debDebFile::MemControlExtract::~MemControlExtract()@Base" 0.8.0 + (c++)"debDebFile::debDebFile(FileFd&)@Base" 0.8.0 + (c++)"pkgExtract::FinishedFile(pkgDirStream::Item&, int)@Base" 0.8.0 + (c++)"pkgExtract::CheckDirReplace(std::basic_string, std::allocator >, unsigned int)@Base" 0.8.0 + (c++)"pkgExtract::HandleOverwrites(pkgFLCache::NodeIterator, bool)@Base" 0.8.0 + (c++)"pkgExtract::Fail(pkgDirStream::Item&, int)@Base" 0.8.0 + (c++)"pkgExtract::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 + (c++)"pkgExtract::Aborted()@Base" 0.8.0 + (c++)"pkgExtract::Finished()@Base" 0.8.0 + (c++)"pkgExtract::pkgExtract(pkgFLCache&, pkgCache::VerIterator)@Base" 0.8.0 + (c++)"pkgExtract::~pkgExtract()@Base" 0.8.0 + (c++)"pkgFLCache::TreeLookup(unsigned int*, char const*, char const*, unsigned long, unsigned int*, bool)@Base" 0.8.0 + (c++)"pkgFLCache::AddConfFile(char const*, char const*, pkgFLCache::PkgIterator const&, unsigned char const*)@Base" 0.8.0 + (c++)"pkgFLCache::AddDiversion(pkgFLCache::PkgIterator const&, char const*, char const*)@Base" 0.8.0 + (c++)"pkgFLCache::BeginDiverLoad()@Base" 0.8.0 + (c++)"pkgFLCache::FinishDiverLoad()@Base" 0.8.0 + (c++)"pkgFLCache::GetPkg(char const*, char const*, bool)@Base" 0.8.0 + (c++)"pkgFLCache::Header::Header()@Base" 0.8.0 + (c++)"pkgFLCache::GetNode(char const*, char const*, unsigned int, bool, bool)@Base" 0.8.0 + (c++)"pkgFLCache::DropNode(unsigned int)@Base" 0.8.0 + (c++)"pkgFLCache::HashNode(pkgFLCache::NodeIterator const&)@Base" 0.8.0 + (c++)"pkgFLCache::PrintTree(unsigned int, unsigned long)@Base" 0.8.0 + (c++)"pkgFLCache::pkgFLCache(DynamicMMap&)@Base" 0.8.0 + (c++)"pkgDirStream::FinishedFile(pkgDirStream::Item&, int)@Base" 0.8.0 + (c++)"pkgDirStream::Fail(pkgDirStream::Item&, int)@Base" 0.8.0 + (c++)"pkgDirStream::DoItem(pkgDirStream::Item&, int&)@Base" 0.8.0 + (c++)"pkgDirStream::Process(pkgDirStream::Item&, unsigned char const*, unsigned long long, unsigned long long)@Base" 1.0.5 + (c++)"pkgDirStream::~pkgDirStream()@Base" 0.8.0 + (c++|optional)"pkgCache::DepIterator::operator++(int)@Base" 0.8.0 + (c++|optional)"pkgCache::DepIterator::operator++()@Base" 0.8.0 + (c++|optional)"pkgCache::VerIterator::operator++(int)@Base" 0.8.0 + (c++|optional)"pkgCache::VerIterator::operator++()@Base" 0.8.0 + (c++)"ARArchive::LoadHeaders()@Base" 0.8.0 + (c++)"ARArchive::ARArchive(FileFd&)@Base" 0.8.0 + (c++)"ARArchive::~ARArchive()@Base" 0.8.0 + (c++)"pkgFLCache::NodeIterator::RealPackage() const@Base" 0.8.0 + (c++)"pkgFLCache::Header::CheckSizes(pkgFLCache::Header&) const@Base" 0.8.0 + (c++|optional)"pkgCache::DepIterator::OwnerPointer() const@Base" 0.8.0 + (c++|optional)"pkgCache::VerIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"ARArchive::FindMember(char const*) const@Base" 0.8.0 + (c++)"typeinfo for ExtractTar@Base" 0.8.0 + (c++)"typeinfo for pkgExtract@Base" 0.8.0 + (c++)"typeinfo for pkgDirStream@Base" 0.8.0 + (c++)"typeinfo for debDebFile::ControlExtract@Base" 0.8.0 + (c++)"typeinfo for debDebFile::MemControlExtract@Base" 0.8.0 + (c++|optional)"typeinfo for pkgCache::DepIterator@Base" 0.8.0 + (c++|optional)"typeinfo for pkgCache::VerIterator@Base" 0.8.0 + (c++|optional)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++|optional)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for ExtractTar@Base" 0.8.0 + (c++)"typeinfo name for pkgExtract@Base" 0.8.0 + (c++)"typeinfo name for pkgDirStream@Base" 0.8.0 + (c++)"typeinfo name for debDebFile::ControlExtract@Base" 0.8.0 + (c++)"typeinfo name for debDebFile::MemControlExtract@Base" 0.8.0 + (c++|optional)"typeinfo name for pkgCache::DepIterator@Base" 0.8.0 + (c++|optional)"typeinfo name for pkgCache::VerIterator@Base" 0.8.0 + (c++|optional)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++|optional)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for ExtractTar@Base" 0.8.0 + (c++)"vtable for pkgExtract@Base" 0.8.0 + (c++)"vtable for pkgDirStream@Base" 0.8.0 + (c++)"vtable for debDebFile::ControlExtract@Base" 0.8.0 + (c++)"vtable for debDebFile::MemControlExtract@Base" 0.8.0 + (c++|optional)"vtable for pkgCache::DepIterator@Base" 0.8.0 + (c++|optional)"vtable for pkgCache::VerIterator@Base" 0.8.0 + (c++|optional)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++|optional)"vtable for pkgCache::Iterator@Base" 0.8.0 +### gcc artefacts + (c++|optional=std)"std::vector >::~vector()@Base" 0.8.12 +### try to ignore std:: template instances + (c++|regex|optional=std)"^std::basic_string<.+ >\(.+\)@Base$" 0.8.0 + (c++|regex|optional=std)"^typeinfo name for std::iterator<.*>@Base$" 0.8.0 + (c++|regex|optional=std)"^typeinfo for std::iterator<.*>@Base$" 0.8.0 + (c++|optional=std)"std::ctype::do_widen(char) const@Base" 1.0.3 diff --git a/debian/libapt-pkg4.12.install.in b/debian/libapt-pkg4.12.install.in deleted file mode 100644 index 56bed39d3..000000000 --- a/debian/libapt-pkg4.12.install.in +++ /dev/null @@ -1,2 +0,0 @@ -bin/libapt-pkg*.so.* usr/lib/@DEB_HOST_MULTIARCH@/ -usr/share/locale/*/*/libapt-pkg*.mo diff --git a/debian/libapt-pkg4.12.symbols b/debian/libapt-pkg4.12.symbols deleted file mode 100644 index 3fa128cff..000000000 --- a/debian/libapt-pkg4.12.symbols +++ /dev/null @@ -1,1619 +0,0 @@ -libapt-pkg.so.4.12 libapt-pkg4.12 #MINVER# -* Build-Depends-Package: libapt-pkg-dev - TFRewritePackageOrder@Base 0.8.0 - TFRewriteSourceOrder@Base 0.8.0 - (c++)"FileExists(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"IdentCdrom(std::basic_string, std::allocator >, std::basic_string, std::allocator >&, unsigned int)@Base" 0.8.0 - (c++)"ListUpdate(pkgAcquireStatus&, pkgSourceList&, int)@Base" 0.8.0 - (c++)"MountCdrom(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"ParseCWord(char const*&, std::basic_string, std::allocator >&)@Base" 0.8.0 - (c++)"ReadPinDir(pkgPolicy&, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"RunScripts(char const*)@Base" 0.8.0 - (c++)"SafeGetCWD()@Base" 0.8.0 - (c++)"parsenetrc(char*, char*, char*, char*)@Base" 0.8.0 - (c++)"QuoteString(std::basic_string, std::allocator > const&, char const*)@Base" 0.8.0 - (c++)"ReadPinFile(pkgPolicy&, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"RegexChoice(RxChoiceList*, char const**, char const**)@Base" 0.8.0 - (c++)"SetNonBlock(int, bool)@Base" 0.8.0 - (c++)"flExtension(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"Base64Encode(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"ReadMessages(int, std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.8.0 - (c++)"SetCloseExec(int, bool)@Base" 0.8.0 - (c++)"StringToBool(std::basic_string, std::allocator > const&, int)@Base" 0.8.0 - (c++)"UnmountCdrom(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"_GetErrorObj()@Base" 0.8.0 - (c++)"pkgFixBroken(pkgDepCache&)@Base" 0.8.0 - (c++)"DeQuoteString(__gnu_cxx::__normal_iterator, std::allocator > > const&, __gnu_cxx::__normal_iterator, std::allocator > > const&)@Base" 0.8.0 - (c++)"DeQuoteString(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"OutputInDepth(unsigned long, char const*)@Base" 0.8.0 - (c++)"ReadConfigDir(Configuration&, std::basic_string, std::allocator > const&, bool const&, unsigned int const&)@Base" 0.8.0 - (c++)"URItoFileName(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"UTF8ToCodeset(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator >*)@Base" 0.8.0 - (c++)"pkgAllUpgrade(pkgDepCache&)@Base" 0.8.0 - (c++)"pkgInitConfig(Configuration&)@Base" 0.8.0 - (c++)"pkgInitSystem(Configuration&, pkgSystem*&)@Base" 0.8.0 - (c++)"safe_snprintf(char*, char*, char const*, ...)@Base" 0.8.0 - (c++)"stringcasecmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, char const*, char const*)@Base" 0.8.0 - (c++)"stringcasecmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >)@Base" 0.8.0 - (c++)"stringcasecmp(std::basic_string, std::allocator > const&, char const*)@Base" 0.8.0 - (c++)"stringcasecmp(char const*, char const*, char const*, char const*)@Base" 0.8.0 - (c++)"tolower_ascii(int)@Base" 0.8.0 - (c++)"ParseQuoteWord(char const*&, std::basic_string, std::allocator >&)@Base" 0.8.0 - (c++)"ReadConfigFile(Configuration&, std::basic_string, std::allocator > const&, bool const&, unsigned int const&)@Base" 0.8.0 - (c++)"TokSplitString(char, char*, char**, unsigned long)@Base" 0.8.0 - (c++)"maybe_add_auth(URI&, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgApplyStatus(pkgDepCache&)@Base" 0.8.0 - (c++)"pkgDistUpgrade(pkgDepCache&)@Base" 0.8.0 - (c++)"CheckDomainList(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"CreateDirectory(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"DirectoryExists(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"VectorizeString(std::basic_string, std::allocator > const&, char const&)@Base" 0.8.0 - (c++)"pkgPrioSortList(pkgCache&, pkgCache::Version**)@Base" 0.8.0 - (c++)"pkgMakeStatusCache(pkgSourceList&, OpProgress&, MMap**, bool)@Base" 0.8.0 - (c++)"pkgMinimizeUpgrade(pkgDepCache&)@Base" 0.8.0 - (c++)"GetListOfFilesInDir(std::basic_string, std::allocator > const&, std::vector, std::allocator >, std::allocator, std::allocator > > > const&, bool const&)@Base" 0.8.0 - (c++)"GetListOfFilesInDir(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool const&, bool const&)@Base" 0.8.0 - (c++)"pkgMakeOnlyStatusCache(OpProgress&, DynamicMMap**)@Base" 0.8.0 - (c++)"WaitFd(int, bool, unsigned long)@Base" 0.8.0 - (c++)"GetLock(std::basic_string, std::allocator >, bool)@Base" 0.8.0 - (c++)"Hex2Num(std::basic_string, std::allocator > const&, unsigned char*, unsigned int)@Base" 0.8.0 - (c++)"CopyFile(FileFd&, FileFd&)@Base" 0.8.0 - (c++)"ExecFork()@Base" 0.8.0 - (c++)"ExecWait(int, char const*, bool)@Base" 0.8.0 - (c++)"StrToNum(char const*, unsigned long&, unsigned int, unsigned int)@Base" 0.8.0 - (c++)"SubstVar(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"SubstVar(std::basic_string, std::allocator >, SubstVar const*)@Base" 0.8.0 - (c++)"flNoLink(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"flNotDir(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"ioprintf(std::basic_ostream >&, char const*, ...)@Base" 0.8.0 - (c++)"IsMounted(std::basic_string, std::allocator >&)@Base" 0.8.0 - (c++)"LookupTag(std::basic_string, std::allocator > const&, char const*, char const*)@Base" 0.8.0 - (c++)"SizeToStr(double)@Base" 0.8.0 - (c++)"TFRewrite(_IO_FILE*, pkgTagSection const&, char const**, TFRewriteData*)@Base" 0.8.0 - (c++)"TimeToStr(unsigned long)@Base" 0.8.0 - (c++)"_strstrip(char*)@Base" 0.8.0 - (c++)"flCombine(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"flNotFile(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"stringcmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, char const*, char const*)@Base" 0.8.0 - (c++)"stringcmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >)@Base" 0.8.0 - (c++)"stringcmp(char const*, char const*, char const*, char const*)@Base" 0.8.0 - (c++)"strprintf(std::basic_string, std::allocator >&, char const*, ...)@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"HashString::SupportedHashes()@Base" 0.8.0 - (c++)"HashString::_SupportedHashes@Base" 0.8.0 - (c++)"HashString::HashString(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"HashString::HashString(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"HashString::HashString()@Base" 0.8.0 - (c++)"HashString::~HashString()@Base" 0.8.0 - (c++)"OpProgress::CheckChange(float)@Base" 0.8.0 - (c++)"OpProgress::Done()@Base" 0.8.0 - (c++)"OpProgress::Update()@Base" 0.8.0 - (c++)"OpProgress::OpProgress()@Base" 0.8.0 - (c++)"OpProgress::~OpProgress()@Base" 0.8.0 - (c++)"SourceCopy::GetFileName()@Base" 0.8.0 - (c++)"SourceCopy::RewriteEntry(_IO_FILE*, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"SourceCopy::Type()@Base" 0.8.0 - (c++)"SourceCopy::~SourceCopy()@Base" 0.8.0 - (c++)"pkgAcqFile::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcqFile::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqFile::DescURI()@Base" 0.8.0 - (c++)"pkgAcqFile::HashSum()@Base" 0.8.0 - (c++)"pkgAcqFile::~pkgAcqFile()@Base" 0.8.0 - (c++)"pkgAcquire::WorkerStep(pkgAcquire::Worker*)@Base" 0.8.0 - (c++)"pkgAcquire::FetchNeeded()@Base" 0.8.0 - (c++)"pkgAcquire::TotalNeeded()@Base" 0.8.0 - (c++)"pkgAcquire::MethodConfig::MethodConfig()@Base" 0.8.0 - (c++)"pkgAcquire::PartialPresent()@Base" 0.8.0 - (c++)"pkgAcquire::Add(pkgAcquire::Item*)@Base" 0.8.0 - (c++)"pkgAcquire::Add(pkgAcquire::Worker*)@Base" 0.8.0 - (c++)"pkgAcquire::Run(int)@Base" 0.8.0 - (c++)"pkgAcquire::Bump()@Base" 0.8.0 - (c++)"pkgAcquire::Item::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcquire::Item::ReportMirrorFailure(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcquire::Item::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcquire::Item::Rename(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcquire::Item::HashSum()@Base" 0.8.0 - (c++)"pkgAcquire::Item::Finished()@Base" 0.8.0 - (c++)"pkgAcquire::Item::IsTrusted()@Base" 0.8.0 - (c++)"pkgAcquire::Item::ShortDesc()@Base" 0.8.0 - (c++)"pkgAcquire::Item::Item(pkgAcquire*)@Base" 0.8.0 - (c++)"pkgAcquire::Item::~Item()@Base" 0.8.0 - (c++)"pkgAcquire::Clean(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Bump()@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Cycle()@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Dequeue(pkgAcquire::Item*)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Enqueue(pkgAcquire::ItemDesc&)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Startup()@Base" 0.8.0 - (c++)"pkgAcquire::Queue::FindItem(std::basic_string, std::allocator >, pkgAcquire::Worker*)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::ItemDone(pkgAcquire::Queue::QItem*)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Shutdown(bool)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::Queue(std::basic_string, std::allocator >, pkgAcquire*)@Base" 0.8.0 - (c++)"pkgAcquire::Queue::~Queue()@Base" 0.8.0 - (c++)"pkgAcquire::Setup(pkgAcquireStatus*, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgAcquire::Remove(pkgAcquire::Item*)@Base" 0.8.0 - (c++)"pkgAcquire::Remove(pkgAcquire::Worker*)@Base" 0.8.0 - (c++)"pkgAcquire::RunFds(fd_set*, fd_set*)@Base" 0.8.0 - (c++)"pkgAcquire::SetFds(int&, fd_set*, fd_set*)@Base" 0.8.0 - (c++)"pkgAcquire::UriEnd()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::OutFdReady()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::MediaChange(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcquire::Worker::RunMessages()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::Capabilities(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcquire::Worker::ReadMessages()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::MethodFailure()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::SendConfiguration()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::Pulse()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::Start()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::ItemDone()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::Construct()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::InFdReady()@Base" 0.8.0 - (c++)"pkgAcquire::Worker::QueueItem(pkgAcquire::Queue::QItem*)@Base" 0.8.0 - (c++)"pkgAcquire::Worker::Worker(pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcquire::Worker::Worker(pkgAcquire::Queue*, pkgAcquire::MethodConfig*, pkgAcquireStatus*)@Base" 0.8.0 - (c++)"pkgAcquire::Worker::~Worker()@Base" 0.8.0 - (c++)"pkgAcquire::Dequeue(pkgAcquire::Item*)@Base" 0.8.0 - (c++)"pkgAcquire::Enqueue(pkgAcquire::ItemDesc&)@Base" 0.8.0 - (c++)"pkgAcquire::ItemDesc::~ItemDesc()@Base" 0.8.0 - (c++)"pkgAcquire::Shutdown()@Base" 0.8.0 - (c++)"pkgAcquire::UriBegin()@Base" 0.8.0 - (c++)"pkgAcquire::GetConfig(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcquire::QueueName(std::basic_string, std::allocator >, pkgAcquire::MethodConfig const*&)@Base" 0.8.0 - (c++)"pkgAcquire::pkgAcquire(pkgAcquireStatus*)@Base" 0.8.0 - (c++)"pkgAcquire::pkgAcquire()@Base" 0.8.0 - (c++)"pkgAcquire::~pkgAcquire()@Base" 0.8.0 - (c++)"pkgRecords::Lookup(pkgCache::VerFileIterator const&)@Base" 0.8.0 - (c++)"pkgRecords::Lookup(pkgCache::DescFileIterator const&)@Base" 0.8.0 - (c++)"pkgRecords::Parser::Maintainer()@Base" 0.8.0 - (c++)"pkgRecords::Parser::SHA256Hash()@Base" 0.8.0 - (c++)"pkgRecords::Parser::Name()@Base" 0.8.0 - (c++)"pkgRecords::Parser::GetRec(char const*&, char const*&)@Base" 0.8.0 - (c++)"pkgRecords::Parser::MD5Hash()@Base" 0.8.0 - (c++)"pkgRecords::Parser::FileName()@Base" 0.8.0 - (c++)"pkgRecords::Parser::Homepage()@Base" 0.8.0 - (c++)"pkgRecords::Parser::LongDesc()@Base" 0.8.0 - (c++)"pkgRecords::Parser::SHA1Hash()@Base" 0.8.0 - (c++)"pkgRecords::Parser::ShortDesc()@Base" 0.8.0 - (c++)"pkgRecords::Parser::SourcePkg()@Base" 0.8.0 - (c++)"pkgRecords::Parser::SourceVer()@Base" 0.8.0 - (c++)"pkgRecords::pkgRecords(pkgCache&)@Base" 0.8.0 - (c++)"pkgRecords::~pkgRecords()@Base" 0.8.0 - (c++)"pkgTagFile::Step(pkgTagSection&)@Base" 0.8.0 - (c++)"pkgTagFile::~pkgTagFile()@Base" 0.8.0 - (c++)"CdromDevice::~CdromDevice()@Base" 0.8.0 - (c++)"CommandLine::DispatchArg(CommandLine::Dispatch*, bool)@Base" 0.8.0 - (c++)"CommandLine::SaveInConfig(unsigned int const&, char const* const*)@Base" 0.8.0 - (c++)"CommandLine::Parse(int, char const**)@Base" 0.8.0 - (c++)"CommandLine::HandleOpt(int&, int, char const**, char const*&, CommandLine::Args*, bool)@Base" 0.8.0 - (c++)"CommandLine::CommandLine(CommandLine::Args*, Configuration*)@Base" 0.8.0 - (c++)"CommandLine::~CommandLine()@Base" 0.8.0 - (c++)"DynamicMMap::WriteString(char const*, unsigned long)@Base" 0.8.0 - (c++)"DynamicMMap::Grow()@Base" 0.8.0 - (c++)"DynamicMMap::Allocate(unsigned long)@Base" 0.8.0 - (c++)"DynamicMMap::DynamicMMap(FileFd&, unsigned long, unsigned long const&, unsigned long const&, unsigned long const&)@Base" 0.8.0 - (c++)"DynamicMMap::DynamicMMap(unsigned long, unsigned long const&, unsigned long const&, unsigned long const&)@Base" 0.8.0 - (c++)"DynamicMMap::~DynamicMMap()@Base" 0.8.0 - (c++)"GlobalError::DumpErrors(std::basic_ostream >&, GlobalError::MsgType const&, bool const&)@Base" 0.8.0 - (c++)"GlobalError::PopMessage(std::basic_string, std::allocator >&)@Base" 0.8.0 - (c++)"GlobalError::InsertErrno(GlobalError::MsgType const&, char const*, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::PushToStack()@Base" 0.8.0 - (c++)"GlobalError::RevertToStack()@Base" 0.8.0 - (c++)"GlobalError::MergeWithStack()@Base" 0.8.0 - (c++)"GlobalError::Debug(char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Errno(char const*, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Error(char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Fatal(char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::DebugE(char const*, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::FatalE(char const*, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Insert(GlobalError::MsgType const&, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Notice(char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Discard()@Base" 0.8.0 - (c++)"GlobalError::NoticeE(char const*, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::Warning(char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::WarningE(char const*, char const*, ...)@Base" 0.8.0 - (c++)"GlobalError::GlobalError()@Base" 0.8.0 - (c++)"PackageCopy::GetFileName()@Base" 0.8.0 - (c++)"PackageCopy::RewriteEntry(_IO_FILE*, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"PackageCopy::Type()@Base" 0.8.0 - (c++)"PackageCopy::~PackageCopy()@Base" 0.8.0 - (c++)"pkgAcqIndex::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcqIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqIndex::DescURI()@Base" 0.8.0 - (c++)"pkgAcqIndex::HashSum()@Base" 0.8.0 - (c++)"pkgAcqIndex::pkgAcqIndex(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, HashString, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqIndex::~pkgAcqIndex()@Base" 0.8.0 - (c++)"pkgDepCache::IsDeleteOk(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.8.0 - (c++)"pkgDepCache::MarkDelete(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.8.0 - (c++)"pkgDepCache::StateCache::StripEpoch(char const*)@Base" 0.8.0 - (c++)"pkgDepCache::StateCache::Update(pkgCache::PkgIterator, pkgCache&)@Base" 0.8.0 - (c++)"pkgDepCache::ActionGroup::release()@Base" 0.8.0 - (c++)"pkgDepCache::ActionGroup::ActionGroup(pkgDepCache&)@Base" 0.8.0 - (c++)"pkgDepCache::ActionGroup::~ActionGroup()@Base" 0.8.0 - (c++)"pkgDepCache::IsInstallOk(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.8.0 - (c++)"pkgDepCache::MarkInstall(pkgCache::PkgIterator const&, bool, unsigned long, bool, bool)@Base" 0.8.0 - (c++)"pkgDepCache::MarkPackage(pkgCache::PkgIterator const&, pkgCache::VerIterator const&, bool const&, bool const&)@Base" 0.8.0 - (c++)"pkgDepCache::MarkRequired(pkgDepCache::InRootSetFunc&)@Base" 0.8.0 - (c++)"pkgDepCache::SetReInstall(pkgCache::PkgIterator const&, bool)@Base" 0.8.0 - (c++)"pkgDepCache::VersionState(pkgCache::DepIterator, unsigned char, unsigned char, unsigned char)@Base" 0.8.0 - (c++)"pkgDepCache::BuildGroupOrs(pkgCache::VerIterator const&)@Base" 0.8.0 - (c++)"pkgDepCache::InRootSetFunc::InRootSet(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgDepCache::InRootSetFunc::~InRootSetFunc()@Base" 0.8.0 - (c++)"pkgDepCache::readStateFile(OpProgress*)@Base" 0.8.0 - (c++)"pkgDepCache::GetRootSetFunc()@Base" 0.8.0 - (c++)"pkgDepCache::UpdateVerState(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgDepCache::writeStateFile(OpProgress*, bool)@Base" 0.8.0 - (c++)"pkgDepCache::DependencyState(pkgCache::DepIterator&)@Base" 0.8.0 - (c++)"pkgDepCache::DefaultRootSetFunc::InRootSet(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgDepCache::DefaultRootSetFunc::~DefaultRootSetFunc()@Base" 0.8.0 - (c++)"pkgDepCache::MarkFollowsSuggests()@Base" 0.8.0 - (c++)"pkgDepCache::MarkFollowsRecommends()@Base" 0.8.0 - (c++)"pkgDepCache::Init(OpProgress*)@Base" 0.8.0 - (c++)"pkgDepCache::Sweep()@Base" 0.8.0 - (c++)"pkgDepCache::Policy::IsImportantDep(pkgCache::DepIterator const&)@Base" 0.8.0 - (c++)"pkgDepCache::Policy::GetCandidateVer(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgDepCache::Policy::~Policy()@Base" 0.8.0 - (c++)"pkgDepCache::Update(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgDepCache::Update(OpProgress*)@Base" 0.8.0 - (c++)"pkgDepCache::Update(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgDepCache::CheckDep(pkgCache::DepIterator, int, pkgCache::PkgIterator&)@Base" 0.8.0 - (c++)"pkgDepCache::MarkAuto(pkgCache::PkgIterator const&, bool)@Base" 0.8.0 - (c++)"pkgDepCache::MarkKeep(pkgCache::PkgIterator const&, bool, bool, unsigned long)@Base" 0.8.0 - (c++)"pkgDepCache::pkgDepCache(pkgCache*, pkgDepCache::Policy*)@Base" 0.8.0 - (c++)"pkgDepCache::~pkgDepCache()@Base" 0.8.0 - (c++)"pkgSimulate::ShortBreaks()@Base" 0.8.0 - (c++)"pkgSimulate::Policy::GetCandidateVer(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgSimulate::Policy::~Policy()@Base" 0.8.0 - (c++)"pkgSimulate::Remove(pkgCache::PkgIterator, bool)@Base" 0.8.0 - (c++)"pkgSimulate::Install(pkgCache::PkgIterator, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgSimulate::Describe(pkgCache::PkgIterator, std::basic_ostream >&, bool, bool)@Base" 0.8.0 - (c++)"pkgSimulate::Configure(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgSimulate::pkgSimulate(pkgDepCache*)@Base" 0.8.0 - (c++)"pkgSimulate::~pkgSimulate()@Base" 0.8.0 - (c++)"debIFTypePkg::~debIFTypePkg()@Base" 0.8.0 - (c++)"debIFTypeSrc::~debIFTypeSrc()@Base" 0.8.0 - (c++)"debSLTypeDeb::~debSLTypeDeb()@Base" 0.8.0 - (c++)"indexRecords::Load(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"indexRecords::Lookup(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"indexRecords::MetaKeys()@Base" 0.8.0 - (c++)"indexRecords::indexRecords(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"indexRecords::indexRecords()@Base" 0.8.0 - (c++)"indexRecords::~indexRecords()@Base" 0.8.0 - (c++)"pkgAcqMethod::FetchResult::TakeHashes(Hashes&)@Base" 0.8.0 - (c++)"pkgAcqMethod::FetchResult::FetchResult()@Base" 0.8.0 - (c++)"pkgAcqMethod::Configuration(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqMethod::Log(char const*, ...)@Base" 0.8.0 - (c++)"pkgAcqMethod::Run(bool)@Base" 0.8.0 - (c++)"pkgAcqMethod::Exit()@Base" 0.8.0 - (c++)"pkgAcqMethod::Fail(std::basic_string, std::allocator >, bool)@Base" 0.8.0 - (c++)"pkgAcqMethod::Fail(bool)@Base" 0.8.0 - (c++)"pkgAcqMethod::Fetch(pkgAcqMethod::FetchItem*)@Base" 0.8.0 - (c++)"pkgAcqMethod::Status(char const*, ...)@Base" 0.8.0 - (c++)"pkgAcqMethod::URIDone(pkgAcqMethod::FetchResult&, pkgAcqMethod::FetchResult*)@Base" 0.8.0 - (c++)"pkgAcqMethod::Redirect(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgAcqMethod::URIStart(pkgAcqMethod::FetchResult&)@Base" 0.8.0 - (c++)"pkgAcqMethod::MediaFail(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqMethod::pkgAcqMethod(char const*, unsigned long)@Base" 0.8.0 - (c++)"pkgAcqMethod::~pkgAcqMethod()@Base" 0.8.0 - (c++)"pkgCacheFile::BuildCaches(OpProgress*, bool)@Base" 0.8.0 - (c++)"pkgCacheFile::BuildPolicy(OpProgress*)@Base" 0.8.0 - (c++)"pkgCacheFile::BuildDepCache(OpProgress*)@Base" 0.8.0 - (c++)"pkgCacheFile::BuildSourceList(OpProgress*)@Base" 0.8.0 - (c++)"pkgCacheFile::Open(OpProgress*, bool)@Base" 0.8.0 - (c++)"pkgCacheFile::Close()@Base" 0.8.0 - (c++)"pkgCacheFile::pkgCacheFile()@Base" 0.8.0 - (c++)"pkgCacheFile::~pkgCacheFile()@Base" 0.8.0 - (c++)"pkgIndexFile::LanguageCode()@Base" 0.8.0 - (c++)"pkgIndexFile::CheckLanguageCode(char const*)@Base" 0.8.0 - (c++)"pkgIndexFile::TranslationsAvailable()@Base" 0.8.0 - (c++)"pkgIndexFile::Type::GlobalList@Base" 0.8.0 - (c++)"pkgIndexFile::Type::GlobalListLen@Base" 0.8.0 - (c++)"pkgIndexFile::Type::GetType(char const*)@Base" 0.8.0 - (c++)"pkgIndexFile::Type::Type()@Base" 0.8.0 - (c++)"pkgOrderList::VisitRDeps(bool (pkgOrderList::*)(pkgCache::DepIterator), pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgOrderList::OrderUnpack(std::basic_string, std::allocator >*)@Base" 0.8.0 - (c++)"pkgOrderList::DepConfigure(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::DepUnPackDep(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::DepUnPackPre(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::DepUnPackCrit(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::DepUnPackPreD(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::OrderCompareA(void const*, void const*)@Base" 0.8.0 - (c++)"pkgOrderList::OrderCompareB(void const*, void const*)@Base" 0.8.0 - (c++)"pkgOrderList::OrderCritical()@Base" 0.8.0 - (c++)"pkgOrderList::VisitProvides(pkgCache::DepIterator, bool)@Base" 0.8.0 - (c++)"pkgOrderList::OrderConfigure()@Base" 0.8.0 - (c++)"pkgOrderList::VisitRProvides(bool (pkgOrderList::*)(pkgCache::DepIterator), pkgCache::VerIterator)@Base" 0.8.0 - (c++)"pkgOrderList::Me@Base" 0.8.0 - (c++)"pkgOrderList::DoRun()@Base" 0.8.0 - (c++)"pkgOrderList::Score(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgOrderList::AddLoop(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::FileCmp(pkgCache::PkgIterator, pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgOrderList::CheckDep(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::DepRemove(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgOrderList::IsMissing(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgOrderList::VisitDeps(bool (pkgOrderList::*)(pkgCache::DepIterator), pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgOrderList::WipeFlags(unsigned long)@Base" 0.8.0 - (c++)"pkgOrderList::pkgOrderList(pkgDepCache*)@Base" 0.8.0 - (c++)"pkgOrderList::~pkgOrderList()@Base" 0.8.0 - (c++)"Configuration::MatchAgainstConfig::MatchAgainstConfig(char const*)@Base" 0.8.0 - (c++)"Configuration::MatchAgainstConfig::~MatchAgainstConfig()@Base" 0.8.0 - (c++)"Configuration::Set(char const*, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"Configuration::Set(char const*, int const&)@Base" 0.8.0 - (c++)"Configuration::Dump(std::basic_ostream >&)@Base" 0.8.0 - (c++)"Configuration::Clear(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"Configuration::Clear(std::basic_string, std::allocator > const&, int const&)@Base" 0.8.0 - (c++)"Configuration::Clear(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"Configuration::CndSet(char const*, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"Configuration::Lookup(char const*, bool const&)@Base" 0.8.0 - (c++)"Configuration::Lookup(Configuration::Item*, char const*, unsigned long const&, bool const&)@Base" 0.8.0 - (c++)"Configuration::Configuration(Configuration::Item const*)@Base" 0.8.0 - (c++)"Configuration::Configuration()@Base" 0.8.0 - (c++)"Configuration::~Configuration()@Base" 0.8.0 - (c++)"WeakPointable::~WeakPointable()@Base" 0.8.0 - (c++)"debListParser::NewVersion(pkgCache::VerIterator&)@Base" 0.8.0 - (c++)"debListParser::UsePackage(pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.0 - (c++)"debListParser::Description()@Base" 0.8.0 - (c++)"debListParser::ParseStatus(pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.0 - (c++)"debListParser::VersionHash()@Base" 0.8.0 - (c++)"debListParser::Architecture()@Base" 0.8.0 - (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&, bool const&, bool const&)@Base" 0.8.0 - (c++)"debListParser::ParseDepends(pkgCache::VerIterator&, char const*, unsigned int)@Base" 0.8.0 - (c++)"debListParser::ParseProvides(pkgCache::VerIterator&)@Base" 0.8.0 - (c++)"debListParser::ArchitectureAll()@Base" 0.8.0 - (c++)"debListParser::ConvertRelation(char const*, unsigned int&)@Base" 0.8.0 - (c++)"debListParser::Description_md5()@Base" 0.8.0 - (c++)"debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator&, FileFd&, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"debListParser::UniqFindTagWrite(char const*)@Base" 0.8.0 - (c++)"debListParser::DescriptionLanguage()@Base" 0.8.0 - (c++)"debListParser::Size()@Base" 0.8.0 - (c++)"debListParser::Step()@Base" 0.8.0 - (c++)"debListParser::Offset()@Base" 0.8.0 - (c++)"debListParser::GetPrio(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"debListParser::Package()@Base" 0.8.0 - (c++)"debListParser::Version()@Base" 0.8.0 - (c++)"debListParser::GrabWord(std::basic_string, std::allocator >, debListParser::WordList*, unsigned char&)@Base" 0.8.0 - (c++)"debListParser::debListParser(FileFd*, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"debListParser::~debListParser()@Base" 0.8.0 - (c++)"pkgAcqArchive::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqArchive::DescURI()@Base" 0.8.0 - (c++)"pkgAcqArchive::HashSum()@Base" 0.8.0 - (c++)"pkgAcqArchive::Finished()@Base" 0.8.0 - (c++)"pkgAcqArchive::IsTrusted()@Base" 0.8.0 - (c++)"pkgAcqArchive::QueueNext()@Base" 0.8.0 - (c++)"pkgAcqArchive::ShortDesc()@Base" 0.8.0 - (c++)"pkgAcqArchive::pkgAcqArchive(pkgAcquire*, pkgSourceList*, pkgRecords*, pkgCache::VerIterator const&, std::basic_string, std::allocator >&)@Base" 0.8.0 - (c++)"pkgAcqArchive::~pkgAcqArchive()@Base" 0.8.0 - (c++)"pkgAcqMetaSig::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcqMetaSig::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqMetaSig::DescURI()@Base" 0.8.0 - (c++)"pkgAcqMetaSig::~pkgAcqMetaSig()@Base" 0.8.0 - (c++)"pkgSourceList::ReadAppend(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgSourceList::ReadMainList()@Base" 0.8.0 - (c++)"pkgSourceList::ReadSourceDir(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgSourceList::Read(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgSourceList::Type::GlobalList@Base" 0.8.0 - (c++)"pkgSourceList::Type::GlobalListLen@Base" 0.8.0 - (c++)"pkgSourceList::Type::GetType(char const*)@Base" 0.8.0 - (c++)"pkgSourceList::Type::Type()@Base" 0.8.0 - (c++)"pkgSourceList::Reset()@Base" 0.8.0 - (c++)"pkgSourceList::pkgSourceList(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgSourceList::pkgSourceList()@Base" 0.8.0 - (c++)"pkgSourceList::~pkgSourceList()@Base" 0.8.0 - (c++)"pkgSrcRecords::File::~File()@Base" 0.8.0 - (c++)"pkgSrcRecords::Find(char const*, bool const&)@Base" 0.8.0 - (c++)"pkgSrcRecords::Parser::BuildDepRec::~BuildDepRec()@Base" 0.8.0 - (c++)"pkgSrcRecords::Parser::BuildDepType(unsigned char const&)@Base" 0.8.0 - (c++)"pkgSrcRecords::Restart()@Base" 0.8.0 - (c++)"pkgSrcRecords::pkgSrcRecords(pkgSourceList&)@Base" 0.8.0 - (c++)"pkgSrcRecords::~pkgSrcRecords()@Base" 0.8.0 - (c++)"pkgTagSection::TrimRecord(bool, char const*&)@Base" 0.8.0 - (c++)"pkgTagSection::Scan(char const*, unsigned long)@Base" 0.8.0 - (c++)"pkgTagSection::Trim()@Base" 0.8.0 - (c++)"pkgVendorList::CreateList(Configuration&)@Base" 0.8.0 - (c++)"pkgVendorList::FindVendor(std::vector, std::allocator >, std::allocator, std::allocator > > >)@Base" 0.8.0 - (c++)"pkgVendorList::ReadMainList()@Base" 0.8.0 - (c++)"pkgVendorList::LookupFingerprint(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgVendorList::Read(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgVendorList::~pkgVendorList()@Base" 0.8.0 - (c++)"OpTextProgress::Done()@Base" 0.8.0 - (c++)"OpTextProgress::Write(char const*)@Base" 0.8.0 - (c++)"OpTextProgress::Update()@Base" 0.8.0 - (c++)"OpTextProgress::OpTextProgress(Configuration&)@Base" 0.8.0 - (c++)"OpTextProgress::~OpTextProgress()@Base" 0.8.0 - (c++)"debIFTypeTrans::~debIFTypeTrans()@Base" 0.8.0 - (c++)"debStatusIndex::debStatusIndex(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"debStatusIndex::~debStatusIndex()@Base" 0.8.0 - (c++)"debIFTypeStatus::~debIFTypeStatus()@Base" 0.8.0 - (c++)"debRecordParser::Maintainer()@Base" 0.8.0 - (c++)"debRecordParser::SHA256Hash()@Base" 0.8.0 - (c++)"debRecordParser::Jump(pkgCache::VerFileIterator const&)@Base" 0.8.0 - (c++)"debRecordParser::Jump(pkgCache::DescFileIterator const&)@Base" 0.8.0 - (c++)"debRecordParser::Name()@Base" 0.8.0 - (c++)"debRecordParser::GetRec(char const*&, char const*&)@Base" 0.8.0 - (c++)"debRecordParser::MD5Hash()@Base" 0.8.0 - (c++)"debRecordParser::FileName()@Base" 0.8.0 - (c++)"debRecordParser::Homepage()@Base" 0.8.0 - (c++)"debRecordParser::LongDesc()@Base" 0.8.0 - (c++)"debRecordParser::SHA1Hash()@Base" 0.8.0 - (c++)"debRecordParser::ShortDesc()@Base" 0.8.0 - (c++)"debRecordParser::SourcePkg()@Base" 0.8.0 - (c++)"debRecordParser::SourceVer()@Base" 0.8.0 - (c++)"debRecordParser::debRecordParser(std::basic_string, std::allocator >, pkgCache&)@Base" 0.8.0 - (c++)"debRecordParser::~debRecordParser()@Base" 0.8.0 - (c++)"debReleaseIndex::GetIndexFiles()@Base" 0.8.0 - (c++)"debReleaseIndex::debSectionEntry::debSectionEntry(std::basic_string, std::allocator > const&, bool const&)@Base" 0.8.0 - (c++)"debReleaseIndex::PushSectionEntry(debReleaseIndex::debSectionEntry const*)@Base" 0.8.0 - (c++)"debReleaseIndex::PushSectionEntry(std::basic_string, std::allocator > const&, debReleaseIndex::debSectionEntry const*)@Base" 0.8.0 - (c++)"debReleaseIndex::PushSectionEntry(std::vector, std::allocator >, std::allocator, std::allocator > > > const&, debReleaseIndex::debSectionEntry const*)@Base" 0.8.0 - (c++)"debReleaseIndex::debReleaseIndex(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"debReleaseIndex::~debReleaseIndex()@Base" 0.8.0 - (c++)"debSLTypeDebSrc::~debSLTypeDebSrc()@Base" 0.8.0 - (c++)"debSourcesIndex::debSourcesIndex(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, bool)@Base" 0.8.0 - (c++)"debSourcesIndex::~debSourcesIndex()@Base" 0.8.0 - (c++)"pkgAcqDiffIndex::ParseDiffIndex(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqDiffIndex::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcqDiffIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqDiffIndex::DescURI()@Base" 0.8.0 - (c++)"pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, HashString)@Base" 0.8.0 - (c++)"pkgAcqDiffIndex::~pkgAcqDiffIndex()@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::QueueIndexes(bool)@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::VerifyVendor(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::RetrievalDone(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::DescURI()@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::AuthDone(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector > const*, indexRecords*)@Base" 0.8.0 - (c++)"pkgAcqMetaIndex::~pkgAcqMetaIndex()@Base" 0.8.0 - (c++)"pkgVersionMatch::ExpressionMatches(char const*, char const*)@Base" 0.8.0 - (c++)"pkgVersionMatch::ExpressionMatches(std::basic_string, std::allocator > const&, char const*)@Base" 0.8.0 - (c++)"pkgVersionMatch::Find(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgVersionMatch::MatchVer(char const*, std::basic_string, std::allocator >, bool)@Base" 0.8.0 - (c++)"pkgVersionMatch::FileMatch(pkgCache::PkgFileIterator)@Base" 0.8.0 - (c++)"pkgVersionMatch::pkgVersionMatch(std::basic_string, std::allocator >, pkgVersionMatch::MatchType)@Base" 0.8.0 - (c++)"pkgVersionMatch::~pkgVersionMatch()@Base" 0.8.0 - (c++)"TranslationsCopy::CopyTranslations(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, pkgCdromStatus*)@Base" 0.8.0 - (c++)"debPackagesIndex::debPackagesIndex(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"debPackagesIndex::~debPackagesIndex()@Base" 0.8.0 - (c++)"pkgAcqIndexDiffs::QueueNextDiff()@Base" 0.8.0 - (c++)"pkgAcqIndexDiffs::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqIndexDiffs::Finish(bool)@Base" 0.8.0 - (c++)"pkgAcqIndexDiffs::DescURI()@Base" 0.8.0 - (c++)"pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, HashString, std::basic_string, std::allocator >, std::vector >)@Base" 0.8.0 - (c++)"pkgAcqIndexDiffs::~pkgAcqIndexDiffs()@Base" 0.8.0 - (c++)"pkgAcqIndexTrans::Custom600Headers()@Base" 0.8.0 - (c++)"pkgAcqIndexTrans::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 - (c++)"pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgAcqIndexTrans::~pkgAcqIndexTrans()@Base" 0.8.0 - (c++)"pkgAcquireStatus::Done(pkgAcquire::ItemDesc&)@Base" 0.8.0 - (c++)"pkgAcquireStatus::Fail(pkgAcquire::ItemDesc&)@Base" 0.8.0 - (c++)"pkgAcquireStatus::Stop()@Base" 0.8.0 - (c++)"pkgAcquireStatus::Fetch(pkgAcquire::ItemDesc&)@Base" 0.8.0 - (c++)"pkgAcquireStatus::Pulse(pkgAcquire*)@Base" 0.8.0 - (c++)"pkgAcquireStatus::Start()@Base" 0.8.0 - (c++)"pkgAcquireStatus::IMSHit(pkgAcquire::ItemDesc&)@Base" 0.8.0 - (c++)"pkgAcquireStatus::pkgAcquireStatus()@Base" 0.8.0 - (c++)"PreferenceSection::TrimRecord(bool, char const*&)@Base" 0.8.0 - (c++)"pkgArchiveCleaner::Go(std::basic_string, std::allocator >, pkgCache&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::ListParser::NewDepends(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, unsigned int, unsigned int)@Base" 0.8.0 - (c++)"pkgCacheGenerator::ListParser::NewProvides(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::ListParser::CollectFileProvides(pkgCache&, pkgCache::VerIterator&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::NewFileVer(pkgCache::VerIterator&, pkgCacheGenerator::ListParser&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::NewPackage(pkgCache::PkgIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::SelectFile(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, pkgIndexFile const&, unsigned long)@Base" 0.8.0 - (c++)"pkgCacheGenerator::FinishCache(OpProgress*)@Base" 0.8.0 - (c++)"pkgCacheGenerator::NewFileDesc(pkgCache::DescIterator&, pkgCacheGenerator::ListParser&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::MakeStatusCache(pkgSourceList&, OpProgress*, MMap**, bool)@Base" 0.8.0 - (c++)"pkgCacheGenerator::WriteUniqString(char const*, unsigned int)@Base" 0.8.0 - (c++)"pkgCacheGenerator::CreateDynamicMMap(FileFd*, unsigned long)@Base" 0.8.0 - (c++)"pkgCacheGenerator::MergeFileProvides(pkgCacheGenerator::ListParser&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::MakeOnlyStatusCache(OpProgress*, DynamicMMap**)@Base" 0.8.0 - (c++)"pkgCacheGenerator::ReMap(void const*, void const*)@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 - (c++)"pkgCacheGenerator::NewGroup(pkgCache::GrpIterator&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCacheGenerator::MergeList(pkgCacheGenerator::ListParser&, pkgCache::VerIterator*)@Base" 0.8.0 - (c++)"pkgCacheGenerator::pkgCacheGenerator(DynamicMMap*, OpProgress*)@Base" 0.8.0 - (c++)"pkgCacheGenerator::~pkgCacheGenerator()@Base" 0.8.0 - (c++)"pkgPackageManager::FixMissing()@Base" 0.8.0 - (c++)"pkgPackageManager::EarlyRemove(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgPackageManager::GetArchives(pkgAcquire*, pkgSourceList*, pkgRecords*)@Base" 0.8.0 - (c++)"pkgPackageManager::SmartRemove(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgPackageManager::SmartUnPack(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgPackageManager::ConfigureAll()@Base" 0.8.0 - (c++)"pkgPackageManager::ImmediateAdd(pkgCache::PkgIterator, bool, unsigned int const&)@Base" 0.8.0 - (c++)"pkgPackageManager::OrderInstall()@Base" 0.8.0 - (c++)"pkgPackageManager::DepAlwaysTrue(pkgCache::DepIterator)@Base" 0.8.0 - (c++)"pkgPackageManager::CheckRConflicts(pkgCache::PkgIterator, pkgCache::DepIterator, char const*)@Base" 0.8.0 - (c++)"pkgPackageManager::CreateOrderList()@Base" 0.8.0 - (c++)"pkgPackageManager::DoInstallPostFork(int)@Base" 0.8.0 - (c++)"pkgPackageManager::Go(int)@Base" 0.8.0 - (c++)"pkgPackageManager::Reset()@Base" 0.8.0 - (c++)"pkgPackageManager::Remove(pkgCache::PkgIterator, bool)@Base" 0.8.0 - (c++)"pkgPackageManager::Install(pkgCache::PkgIterator, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgPackageManager::Configure(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgPackageManager::DoInstall(int)@Base" 0.8.0 - (c++)"pkgPackageManager::pkgPackageManager(pkgDepCache*)@Base" 0.8.0 - (c++)"pkgPackageManager::~pkgPackageManager()@Base" 0.8.0 - (c++)"debSrcRecordParser::BuildDepends(std::vector >&, bool const&, bool const&)@Base" 0.8.0 - (c++)"debSrcRecordParser::Jump(unsigned long const&)@Base" 0.8.0 - (c++)"debSrcRecordParser::Step()@Base" 0.8.0 - (c++)"debSrcRecordParser::AsStr()@Base" 0.8.0 - (c++)"debSrcRecordParser::Files(std::vector >&)@Base" 0.8.0 - (c++)"debSrcRecordParser::Offset()@Base" 0.8.0 - (c++)"debSrcRecordParser::Restart()@Base" 0.8.0 - (c++)"debSrcRecordParser::Binaries()@Base" 0.8.0 - (c++)"debSrcRecordParser::~debSrcRecordParser()@Base" 0.8.0 - (c++)"pkgProblemResolver::MakeScores()@Base" 0.8.0 - (c++)"pkgProblemResolver::ResolveByKeep()@Base" 0.8.0 - (c++)"pkgProblemResolver::InstallProtect()@Base" 0.8.0 - (c++)"pkgProblemResolver::This@Base" 0.8.0 - (c++)"pkgProblemResolver::Resolve(bool)@Base" 0.8.0 - (c++)"pkgProblemResolver::DoUpgrade(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgProblemResolver::ScoreSort(void const*, void const*)@Base" 0.8.0 - (c++)"pkgProblemResolver::pkgProblemResolver(pkgDepCache*)@Base" 0.8.0 - (c++)"pkgProblemResolver::~pkgProblemResolver()@Base" 0.8.0 - (c++)"debVersioningSystem::CmpFragment(char const*, char const*, char const*, char const*)@Base" 0.8.0 - (c++)"debVersioningSystem::DoCmpVersion(char const*, char const*, char const*, char const*)@Base" 0.8.0 - (c++)"debVersioningSystem::DoCmpReleaseVer(char const*, char const*, char const*, char const*)@Base" 0.8.0 - (c++)"debVersioningSystem::UpstreamVersion(char const*)@Base" 0.8.0 - (c++)"debVersioningSystem::CheckDep(char const*, int, char const*)@Base" 0.8.0 - (c++)"debVersioningSystem::debVersioningSystem()@Base" 0.8.0 - (c++)"debVersioningSystem::~debVersioningSystem()@Base" 0.8.0 - (c++)"pkgUdevCdromDevices::Scan()@Base" 0.8.0 - (c++)"pkgUdevCdromDevices::Dlopen()@Base" 0.8.0 - (c++)"pkgUdevCdromDevices::pkgUdevCdromDevices()@Base" 0.8.0 - (c++)"pkgUdevCdromDevices::~pkgUdevCdromDevices()@Base" 0.8.0 - (c++)"pkgVersioningSystem::GlobalList@Base" 0.8.0 - (c++)"pkgVersioningSystem::GlobalListLen@Base" 0.8.0 - (c++)"pkgVersioningSystem::TestCompatibility(pkgVersioningSystem const&)@Base" 0.8.0 - (c++)"pkgVersioningSystem::GetVS(char const*)@Base" 0.8.0 - (c++)"pkgVersioningSystem::pkgVersioningSystem()@Base" 0.8.0 - (c++)"debTranslationsIndex::debTranslationsIndex(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, char const*)@Base" 0.8.0 - (c++)"debTranslationsIndex::~debTranslationsIndex()@Base" 0.8.0 - (c++)"APT::CacheFilter::PackageNameMatchesRegEx::PackageNameMatchesRegEx(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"APT::CacheFilter::PackageNameMatchesRegEx::~PackageNameMatchesRegEx()@Base" 0.8.0 - (c++)"APT::CacheFilter::PackageNameMatchesRegEx::operator()(pkgCache::GrpIterator const&)@Base" 0.8.0 - (c++)"APT::CacheFilter::PackageNameMatchesRegEx::operator()(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"APT::Configuration::getLanguages(bool const&, bool const&, char const**)@Base" 0.8.0 - (c++)"APT::Configuration::getArchitectures(bool const&)@Base" 0.8.0 - (c++)"APT::Configuration::checkArchitecture(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"APT::Configuration::getCompressionTypes(bool const&)@Base" 0.8.0 - (c++)"APT::CacheSetHelper::canNotFindPkgName(pkgCacheFile&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"APT::CacheSetHelper::canNotFindNewestVer(pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"APT::CacheSetHelper::canNotFindCandidateVer(pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"APT::CacheSetHelper::canNotFindInstalledVer(pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"APT::CacheSetHelper::~CacheSetHelper()@Base" 0.8.0 - (c++)"URI::NoUserPassword(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"URI::CopyFrom(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"URI::SiteOnly(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"URI::~URI()@Base" 0.8.0 - (c++)"URI::operator std::basic_string, std::allocator >()@Base" 0.8.0 - (c++)"MMap::Map(FileFd&)@Base" 0.8.0 - (c++)"MMap::Sync(unsigned long, unsigned long)@Base" 0.8.0 - (c++)"MMap::Sync()@Base" 0.8.0 - (c++)"MMap::Close(bool)@Base" 0.8.0 - (c++)"MMap::MMap(FileFd&, unsigned long)@Base" 0.8.0 - (c++)"MMap::MMap(unsigned long)@Base" 0.8.0 - (c++)"MMap::~MMap()@Base" 0.8.0 - (c++)"FileFd::Size()@Base" 0.8.0 - (c++)"FileFd::Sync()@Base" 0.8.0 - (c++)"FileFd::Tell()@Base" 0.8.0 - (c++)"FileFd::Close()@Base" 0.8.0 - (c++)"FileFd::~FileFd()@Base" 0.8.0 - (c++)"Vendor::CheckDist(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"Vendor::Vendor(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector >*)@Base" 0.8.0 - (c++)"Vendor::~Vendor()@Base" 0.8.0 - (c++)"DiffInfo::~DiffInfo()@Base" 0.8.0 - (c++)"pkgCache::CompTypeDeb(unsigned char)@Base" 0.8.0 - (c++)"pkgCache::DepIterator::GlobOr(pkgCache::DepIterator&, pkgCache::DepIterator&)@Base" 0.8.0 - (c++)"pkgCache::DepIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::DepIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::GrpIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::GrpIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::PrvIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::PrvIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::VerIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::VerIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::DescIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::DescIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::PkgFileIterator::IsOk()@Base" 0.8.0 - (c++)"pkgCache::PkgFileIterator::RelStr()@Base" 0.8.0 - (c++)"pkgCache::PkgFileIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::PkgFileIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::VerFileIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::VerFileIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::DescFileIterator::operator++(int)@Base" 0.8.0 - (c++)"pkgCache::DescFileIterator::operator++()@Base" 0.8.0 - (c++)"pkgCache::SingleArchFindPkg(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCache::ReMap(bool const&)@Base" 0.8.0 - (c++)"pkgCache::Header::Header()@Base" 0.8.0 - (c++)"pkgCache::DepType(unsigned char)@Base" 0.8.0 - (c++)"pkgCache::FindGrp(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCache::FindPkg(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCache::FindPkg(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgCache::CompType(unsigned char)@Base" 0.8.0 - (c++)"pkgCache::Priority(unsigned char)@Base" 0.8.0 - (c++)"pkgCache::pkgCache(MMap*, bool)@Base" 0.8.0 - (c++)"pkgCache::~pkgCache()@Base" 0.8.0 - (c++)"pkgCdrom::DropRepeats(std::vector, std::allocator >, std::allocator, std::allocator > > >&, char const*)@Base" 0.8.0 - (c++)"pkgCdrom::FindPackages(std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::basic_string, std::allocator >&, pkgCdromStatus*, unsigned int)@Base" 0.8.0 - (c++)"pkgCdrom::WriteDatabase(Configuration&)@Base" 0.8.0 - (c++)"pkgCdrom::DropBinaryArch(std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.8.0 - (c++)"pkgCdrom::WriteSourceList(std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, bool)@Base" 0.8.0 - (c++)"pkgCdrom::ReduceSourcelist(std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.8.0 - (c++)"pkgCdrom::Add(pkgCdromStatus*)@Base" 0.8.0 - (c++)"pkgCdrom::Ident(std::basic_string, std::allocator >&, pkgCdromStatus*)@Base" 0.8.0 - (c++)"pkgCdrom::Score(std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"IndexCopy::CopyPackages(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, pkgCdromStatus*)@Base" 0.8.0 - (c++)"IndexCopy::ReconstructChop(unsigned long&, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"IndexCopy::ReconstructPrefix(std::basic_string, std::allocator >&, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"IndexCopy::ConvertToSourceList(std::basic_string, std::allocator >, std::basic_string, std::allocator >&)@Base" 0.8.0 - (c++)"IndexCopy::ChopDirs(std::basic_string, std::allocator >, unsigned int)@Base" 0.8.0 - (c++)"IndexCopy::GrabFirst(std::basic_string, std::allocator >, std::basic_string, std::allocator >&, unsigned int)@Base" 0.8.0 - (c++)"SigVerify::CopyAndVerify(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >, std::vector, std::allocator >, std::allocator, std::allocator > > >)@Base" 0.8.0 - (c++)"SigVerify::CopyMetaIndex(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"SigVerify::Verify(std::basic_string, std::allocator >, std::basic_string, std::allocator >, indexRecords*)@Base" 0.8.0 - (c++)"SigVerify::RunGPGV(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, int const&, int*)@Base" 0.8.0 - (c++)"debSystem::Initialize(Configuration&)@Base" 0.8.0 - (c++)"debSystem::CheckUpdates()@Base" 0.8.0 - (c++)"debSystem::AddStatusFiles(std::vector >&)@Base" 0.8.0 - (c++)"debSystem::ArchiveSupported(char const*)@Base" 0.8.0 - (c++)"debSystem::Lock()@Base" 0.8.0 - (c++)"debSystem::Score(Configuration const&)@Base" 0.8.0 - (c++)"debSystem::UnLock(bool)@Base" 0.8.0 - (c++)"debSystem::debSystem()@Base" 0.8.0 - (c++)"debSystem::~debSystem()@Base" 0.8.0 - (c++)"pkgDPkgPM::SendV2Pkgs(_IO_FILE*)@Base" 0.8.0 - (c++)"pkgDPkgPM::DoTerminalPty(int)@Base" 0.8.0 - (c++)"pkgDPkgPM::WriteHistoryTag(std::basic_string, std::allocator > const&, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgDPkgPM::WriteApportReport(char const*, char const*)@Base" 0.8.0 - (c++)"pkgDPkgPM::RunScriptsWithPkgs(char const*)@Base" 0.8.0 - (c++)"pkgDPkgPM::handleDisappearAction(std::basic_string, std::allocator > const&)@Base" 0.8.0 - (c++)"pkgDPkgPM::Go(int)@Base" 0.8.0 - (c++)"pkgDPkgPM::Reset()@Base" 0.8.0 - (c++)"pkgDPkgPM::Remove(pkgCache::PkgIterator, bool)@Base" 0.8.0 - (c++)"pkgDPkgPM::DoStdin(int)@Base" 0.8.0 - (c++)"pkgDPkgPM::Install(pkgCache::PkgIterator, std::basic_string, std::allocator >)@Base" 0.8.0 - (c++)"pkgDPkgPM::OpenLog()@Base" 0.8.0 - (c++)"pkgDPkgPM::CloseLog()@Base" 0.8.0 - (c++)"pkgDPkgPM::Configure(pkgCache::PkgIterator)@Base" 0.8.0 - (c++)"pkgDPkgPM::pkgDPkgPM(pkgDepCache*)@Base" 0.8.0 - (c++)"pkgDPkgPM::~pkgDPkgPM()@Base" 0.8.0 - (c++)"pkgPolicy::GetPriority(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgPolicy::InitDefaults()@Base" 0.8.0 - (c++)"pkgPolicy::GetCandidateVer(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgPolicy::PkgPin::~PkgPin()@Base" 0.8.0 - (c++)"pkgPolicy::GetMatch(pkgCache::PkgIterator const&)@Base" 0.8.0 - (c++)"pkgPolicy::CreatePin(pkgVersionMatch::MatchType, std::basic_string, std::allocator >, std::basic_string, std::allocator >, short)@Base" 0.8.0 - (c++)"pkgPolicy::pkgPolicy(pkgCache*)@Base" 0.8.0 - (c++)"pkgPolicy::~pkgPolicy()@Base" 0.8.0 - (c++)"pkgSystem::GlobalList@Base" 0.8.0 - (c++)"pkgSystem::Initialize(Configuration&)@Base" 0.8.0 - (c++)"pkgSystem::GlobalListLen@Base" 0.8.0 - (c++)"pkgSystem::Score(Configuration const&)@Base" 0.8.0 - (c++)"pkgSystem::GetSystem(char const*)@Base" 0.8.0 - (c++)"pkgSystem::pkgSystem()@Base" 0.8.0 - (c++)"HashString::VerifyFile(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"HashString::empty() const@Base" 0.8.0 - (c++)"HashString::toStr() const@Base" 0.8.0 - (c++)"CommandLine::FileSize() const@Base" 0.8.0 - (c++)"GlobalError::empty(GlobalError::MsgType const&) const@Base" 0.8.0 - (c++)"debIFTypePkg::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.0 - (c++)"debSLTypeDeb::CreateItem(std::vector >&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::map, std::allocator >, std::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::basic_string, std::allocator > > > > const&) const@Base" 0.8.0 - (c++)"indexRecords::GetValidUntil() const@Base" 0.8.0 - (c++)"indexRecords::GetExpectedDist() const@Base" 0.8.0 - (c++)"indexRecords::Exists(std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"indexRecords::GetDist() const@Base" 0.8.0 - (c++)"indexRecords::CheckDist(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"pkgIndexFile::ArchiveURI(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"pkgIndexFile::SourceInfo(pkgSrcRecords::Parser const&, pkgSrcRecords::File const&) const@Base" 0.8.0 - (c++)"pkgIndexFile::ArchiveInfo(pkgCache::VerIterator) const@Base" 0.8.0 - (c++)"pkgIndexFile::FindInCache(pkgCache&) const@Base" 0.8.0 - (c++)"pkgIndexFile::CreateSrcParser() const@Base" 0.8.0 - (c++)"pkgIndexFile::MergeFileProvides(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 - (c++)"pkgIndexFile::MergeFileProvides(pkgCacheGenerator&, OpProgress&) const@Base" 0.8.0 - (c++)"pkgIndexFile::Type::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.0 - (c++)"pkgIndexFile::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 - (c++)"pkgIndexFile::Merge(pkgCacheGenerator&, OpProgress&) const@Base" 0.8.0 - (c++)"Configuration::FindVector(char const*) const@Base" 0.8.0 - (c++)"Configuration::MatchAgainstConfig::Match(char const*) const@Base" 0.8.0 - (c++)"Configuration::Find(char const*, char const*) const@Base" 0.8.0 - (c++)"Configuration::Item::FullTag(Configuration::Item const*) const@Base" 0.8.0 - (c++)"Configuration::FindB(char const*, bool const&) const@Base" 0.8.0 - (c++)"Configuration::FindI(char const*, int const&) const@Base" 0.8.0 - (c++)"Configuration::Exists(char const*) const@Base" 0.8.0 - (c++)"Configuration::FindAny(char const*, char const*) const@Base" 0.8.0 - (c++)"Configuration::FindDir(char const*, char const*) const@Base" 0.8.0 - (c++)"Configuration::FindFile(char const*, char const*) const@Base" 0.8.0 - (c++)"Configuration::ExistsAny(char const*) const@Base" 0.8.0 - (c++)"pkgSourceList::GetIndexes(pkgAcquire*, bool) const@Base" 0.8.0 - (c++)"pkgSourceList::Type::FixupURI(std::basic_string, std::allocator >&) const@Base" 0.8.0 - (c++)"pkgSourceList::Type::ParseLine(std::vector >&, char const*, unsigned long const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"pkgSourceList::FindIndex(pkgCache::PkgFileIterator, pkgIndexFile*&) const@Base" 0.8.0 - (c++)"pkgTagSection::Find(char const*, char const*&, char const*&) const@Base" 0.8.0 - (c++)"pkgTagSection::Find(char const*, unsigned int&) const@Base" 0.8.0 - (c++)"pkgTagSection::FindI(char const*, long) const@Base" 0.8.0 - (c++)"pkgTagSection::FindS(char const*) const@Base" 0.8.0 - (c++)"pkgTagSection::FindULL(char const*, unsigned long long const&) const@Base" 0.8.0 - (c++)"pkgTagSection::FindFlag(char const*, unsigned long&, unsigned long) const@Base" 0.8.0 - (c++)"debStatusIndex::FindInCache(pkgCache&) const@Base" 0.8.0 - (c++)"debStatusIndex::HasPackages() const@Base" 0.8.0 - (c++)"debStatusIndex::Size() const@Base" 0.8.0 - (c++)"debStatusIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 - (c++)"debStatusIndex::Exists() const@Base" 0.8.0 - (c++)"debStatusIndex::GetType() const@Base" 0.8.0 - (c++)"debStatusIndex::Describe(bool) const@Base" 0.8.0 - (c++)"debIFTypeStatus::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.0 - (c++)"debReleaseIndex::ArchiveURI(std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::GetIndexes(pkgAcquire*, bool const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::MetaIndexURI(char const*) const@Base" 0.8.0 - (c++)"debReleaseIndex::MetaIndexFile(char const*) const@Base" 0.8.0 - (c++)"debReleaseIndex::MetaIndexInfo(char const*) const@Base" 0.8.0 - (c++)"debReleaseIndex::IndexURISuffix(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::SourceIndexURI(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::ComputeIndexTargets() const@Base" 0.8.0 - (c++)"debReleaseIndex::SourceIndexURISuffix(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::Info(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::IndexURI(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"debReleaseIndex::IsTrusted() const@Base" 0.8.0 - (c++)"debSLTypeDebSrc::CreateItem(std::vector >&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::map, std::allocator >, std::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::basic_string, std::allocator > > > > const&) const@Base" 0.8.0 - (c++)"debSLTypeDebian::CreateItemInternal(std::vector >&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool const&, std::map, std::allocator >, std::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::basic_string, std::allocator > > > > const&) const@Base" 0.8.0 - (c++)"debSourcesIndex::ArchiveURI(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"debSourcesIndex::SourceInfo(pkgSrcRecords::Parser const&, pkgSrcRecords::File const&) const@Base" 0.8.0 - (c++)"debSourcesIndex::HasPackages() const@Base" 0.8.0 - (c++)"debSourcesIndex::CreateSrcParser() const@Base" 0.8.0 - (c++)"debSourcesIndex::Info(char const*) const@Base" 0.8.0 - (c++)"debSourcesIndex::Size() const@Base" 0.8.0 - (c++)"debSourcesIndex::Exists() const@Base" 0.8.0 - (c++)"debSourcesIndex::GetType() const@Base" 0.8.0 - (c++)"debSourcesIndex::Describe(bool) const@Base" 0.8.0 - (c++)"debSourcesIndex::IndexURI(char const*) const@Base" 0.8.0 - (c++)"debPackagesIndex::ArchiveURI(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"debPackagesIndex::ArchiveInfo(pkgCache::VerIterator) const@Base" 0.8.0 - (c++)"debPackagesIndex::FindInCache(pkgCache&) const@Base" 0.8.0 - (c++)"debPackagesIndex::HasPackages() const@Base" 0.8.0 - (c++)"debPackagesIndex::Info(char const*) const@Base" 0.8.0 - (c++)"debPackagesIndex::Size() const@Base" 0.8.0 - (c++)"debPackagesIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 - (c++)"debPackagesIndex::Exists() const@Base" 0.8.0 - (c++)"debPackagesIndex::GetType() const@Base" 0.8.0 - (c++)"debPackagesIndex::Describe(bool) const@Base" 0.8.0 - (c++)"debPackagesIndex::IndexURI(char const*) const@Base" 0.8.0 - (c++)"debSrcRecordParser::Maintainer() const@Base" 0.8.0 - (c++)"debSrcRecordParser::Package() const@Base" 0.8.0 - (c++)"debSrcRecordParser::Section() const@Base" 0.8.0 - (c++)"debSrcRecordParser::Version() const@Base" 0.8.0 - (c++)"debTranslationsIndex::GetIndexes(pkgAcquire*) const@Base" 0.8.0 - (c++)"debTranslationsIndex::FindInCache(pkgCache&) const@Base" 0.8.0 - (c++)"debTranslationsIndex::HasPackages() const@Base" 0.8.0 - (c++)"debTranslationsIndex::Info(char const*) const@Base" 0.8.0 - (c++)"debTranslationsIndex::Size() const@Base" 0.8.0 - (c++)"debTranslationsIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 - (c++)"debTranslationsIndex::Exists() const@Base" 0.8.0 - (c++)"debTranslationsIndex::GetType() const@Base" 0.8.0 - (c++)"debTranslationsIndex::Describe(bool) const@Base" 0.8.0 - (c++)"debTranslationsIndex::IndexURI(char const*) const@Base" 0.8.0 - (c++)"Vendor::GetVendorID() const@Base" 0.8.0 - (c++)"Vendor::LookupFingerprint(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"pkgCache::DepIterator::AllTargets() const@Base" 0.8.0 - (c++)"pkgCache::DepIterator::IsCritical() const@Base" 0.8.0 - (c++)"pkgCache::DepIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::DepIterator::SmartTargetPkg(pkgCache::PkgIterator&) const@Base" 0.8.0 - (c++)"pkgCache::GrpIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::GrpIterator::FindPreferredPkg(bool const&) const@Base" 0.8.0 - (c++)"pkgCache::GrpIterator::FindPkg(std::basic_string, std::allocator >) const@Base" 0.8.0 - (c++)"pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const&) const@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::CurVersion() const@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::CandVersion() const@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::State() const@Base" 0.8.0 - (c++)"pkgCache::PkgIterator::FullName(bool const&) const@Base" 0.8.0 - (c++)"pkgCache::PrvIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::CompareVer(pkgCache::VerIterator const&) const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::NewestFile() const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::Downloadable() const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::TranslatedDescription() const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::RelStr() const@Base" 0.8.0 - (c++)"pkgCache::VerIterator::Automatic() const@Base" 0.8.0 - (c++)"pkgCache::DescIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::PkgFileIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::VerFileIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::DescFileIterator::OwnerPointer() const@Base" 0.8.0 - (c++)"pkgCache::sHash(char const*) const@Base" 0.8.0 - (c++)"pkgCache::sHash(std::basic_string, std::allocator > const&) const@Base" 0.8.0 - (c++)"pkgCache::Header::CheckSizes(pkgCache::Header&) const@Base" 0.8.0 - (c++)"debSystem::CreatePM(pkgDepCache*) const@Base" 0.8.0 - (c++)"debSystem::FindIndex(pkgCache::PkgFileIterator, pkgIndexFile*&) const@Base" 0.8.0 - (c++)"metaIndex::GetURI() const@Base" 0.8.0 - (c++)"metaIndex::GetDist() const@Base" 0.8.0 - (c++)"metaIndex::GetType() const@Base" 0.8.0 - (c++)"typeinfo for OpProgress@Base" 0.8.0 - (c++)"typeinfo for SourceCopy@Base" 0.8.0 - (c++)"typeinfo for pkgAcqFile@Base" 0.8.0 - (c++)"typeinfo for pkgAcquire@Base" 0.8.0 - (c++)"typeinfo for DynamicMMap@Base" 0.8.0 - (c++)"typeinfo for PackageCopy@Base" 0.8.0 - (c++)"typeinfo for pkgAcqIndex@Base" 0.8.0 - (c++)"typeinfo for pkgDepCache@Base" 0.8.0 - (c++)"typeinfo for pkgSimulate@Base" 0.8.0 - (c++)"typeinfo for debIFTypePkg@Base" 0.8.0 - (c++)"typeinfo for debIFTypeSrc@Base" 0.8.0 - (c++)"typeinfo for debSLTypeDeb@Base" 0.8.0 - (c++)"typeinfo for indexRecords@Base" 0.8.0 - (c++)"typeinfo for pkgAcqMethod@Base" 0.8.0 - (c++)"typeinfo for pkgCacheFile@Base" 0.8.0 - (c++)"typeinfo for pkgIndexFile@Base" 0.8.0 - (c++)"typeinfo for WeakPointable@Base" 0.8.0 - (c++)"typeinfo for debListParser@Base" 0.8.0 - (c++)"typeinfo for pkgAcqArchive@Base" 0.8.0 - (c++)"typeinfo for pkgAcqMetaSig@Base" 0.8.0 - (c++)"typeinfo for pkgTagSection@Base" 0.8.0 - (c++)"typeinfo for OpTextProgress@Base" 0.8.0 - (c++)"typeinfo for debIFTypeTrans@Base" 0.8.0 - (c++)"typeinfo for debStatusIndex@Base" 0.8.0 - (c++)"typeinfo for debIFTypeStatus@Base" 0.8.0 - (c++)"typeinfo for debRecordParser@Base" 0.8.0 - (c++)"typeinfo for debReleaseIndex@Base" 0.8.0 - (c++)"typeinfo for debSLTypeDebSrc@Base" 0.8.0 - (c++)"typeinfo for debSLTypeDebian@Base" 0.8.0 - (c++)"typeinfo for debSourcesIndex@Base" 0.8.0 - (c++)"typeinfo for pkgAcqDiffIndex@Base" 0.8.0 - (c++)"typeinfo for pkgAcqMetaIndex@Base" 0.8.0 - (c++)"typeinfo for debPackagesIndex@Base" 0.8.0 - (c++)"typeinfo for pkgAcqIndexDiffs@Base" 0.8.0 - (c++)"typeinfo for pkgAcqIndexTrans@Base" 0.8.0 - (c++)"typeinfo for pkgAcquireStatus@Base" 0.8.0 - (c++)"typeinfo for PreferenceSection@Base" 0.8.0 - (c++)"typeinfo for pkgPackageManager@Base" 0.8.0 - (c++)"typeinfo for debSrcRecordParser@Base" 0.8.0 - (c++)"typeinfo for debVersioningSystem@Base" 0.8.0 - (c++)"typeinfo for pkgUdevCdromDevices@Base" 0.8.0 - (c++)"typeinfo for pkgVersioningSystem@Base" 0.8.0 - (c++)"typeinfo for debTranslationsIndex@Base" 0.8.0 - (c++)"typeinfo for MMap@Base" 0.8.0 - (c++)"typeinfo for FileFd@Base" 0.8.0 - (c++)"typeinfo for Vendor@Base" 0.8.0 - (c++)"typeinfo for pkgCache@Base" 0.8.0 - (c++)"typeinfo for IndexCopy@Base" 0.8.0 - (c++)"typeinfo for debSystem@Base" 0.8.0 - (c++)"typeinfo for metaIndex@Base" 0.8.0 - (c++)"typeinfo for pkgDPkgPM@Base" 0.8.0 - (c++)"typeinfo for pkgPolicy@Base" 0.8.0 - (c++)"typeinfo for pkgSystem@Base" 0.8.0 - (c++)"typeinfo for pkgAcquire::Item@Base" 0.8.0 - (c++)"typeinfo for pkgRecords::Parser@Base" 0.8.0 - (c++)"typeinfo for pkgDepCache::InRootSetFunc@Base" 0.8.0 - (c++)"typeinfo for pkgDepCache::DefaultRootSetFunc@Base" 0.8.0 - (c++)"typeinfo for pkgDepCache::Policy@Base" 0.8.0 - (c++)"typeinfo for pkgSimulate::Policy@Base" 0.8.0 - (c++)"typeinfo for pkgIndexFile::Type@Base" 0.8.0 - (c++)"typeinfo for Configuration::MatchAgainstConfig@Base" 0.8.0 - (c++)"typeinfo for pkgSourceList::Type@Base" 0.8.0 - (c++)"typeinfo for pkgSrcRecords::Parser@Base" 0.8.0 - (c++)"typeinfo for pkgCacheGenerator::ListParser@Base" 0.8.0 - (c++)"typeinfo for APT::CacheSetHelper@Base" 0.8.0 - (c++)"typeinfo for pkgCache::DepIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::GrpIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::PkgIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::PrvIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::VerIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::DescIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::PkgFileIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::VerFileIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::DescFileIterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo for pkgCache::Namespace@Base" 0.8.0 - (c++)"typeinfo name for OpProgress@Base" 0.8.0 - (c++)"typeinfo name for SourceCopy@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqFile@Base" 0.8.0 - (c++)"typeinfo name for pkgAcquire@Base" 0.8.0 - (c++)"typeinfo name for DynamicMMap@Base" 0.8.0 - (c++)"typeinfo name for PackageCopy@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqIndex@Base" 0.8.0 - (c++)"typeinfo name for pkgDepCache@Base" 0.8.0 - (c++)"typeinfo name for pkgSimulate@Base" 0.8.0 - (c++)"typeinfo name for debIFTypePkg@Base" 0.8.0 - (c++)"typeinfo name for debIFTypeSrc@Base" 0.8.0 - (c++)"typeinfo name for debSLTypeDeb@Base" 0.8.0 - (c++)"typeinfo name for indexRecords@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqMethod@Base" 0.8.0 - (c++)"typeinfo name for pkgCacheFile@Base" 0.8.0 - (c++)"typeinfo name for pkgIndexFile@Base" 0.8.0 - (c++)"typeinfo name for WeakPointable@Base" 0.8.0 - (c++)"typeinfo name for debListParser@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqArchive@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqMetaSig@Base" 0.8.0 - (c++)"typeinfo name for pkgTagSection@Base" 0.8.0 - (c++)"typeinfo name for OpTextProgress@Base" 0.8.0 - (c++)"typeinfo name for debIFTypeTrans@Base" 0.8.0 - (c++)"typeinfo name for debStatusIndex@Base" 0.8.0 - (c++)"typeinfo name for debIFTypeStatus@Base" 0.8.0 - (c++)"typeinfo name for debRecordParser@Base" 0.8.0 - (c++)"typeinfo name for debReleaseIndex@Base" 0.8.0 - (c++)"typeinfo name for debSLTypeDebSrc@Base" 0.8.0 - (c++)"typeinfo name for debSLTypeDebian@Base" 0.8.0 - (c++)"typeinfo name for debSourcesIndex@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqDiffIndex@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqMetaIndex@Base" 0.8.0 - (c++)"typeinfo name for debPackagesIndex@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqIndexDiffs@Base" 0.8.0 - (c++)"typeinfo name for pkgAcqIndexTrans@Base" 0.8.0 - (c++)"typeinfo name for pkgAcquireStatus@Base" 0.8.0 - (c++)"typeinfo name for PreferenceSection@Base" 0.8.0 - (c++)"typeinfo name for pkgPackageManager@Base" 0.8.0 - (c++)"typeinfo name for debSrcRecordParser@Base" 0.8.0 - (c++)"typeinfo name for debVersioningSystem@Base" 0.8.0 - (c++)"typeinfo name for pkgUdevCdromDevices@Base" 0.8.0 - (c++)"typeinfo name for pkgVersioningSystem@Base" 0.8.0 - (c++)"typeinfo name for debTranslationsIndex@Base" 0.8.0 - (c++)"typeinfo name for MMap@Base" 0.8.0 - (c++)"typeinfo name for FileFd@Base" 0.8.0 - (c++)"typeinfo name for Vendor@Base" 0.8.0 - (c++)"typeinfo name for pkgCache@Base" 0.8.0 - (c++)"typeinfo name for IndexCopy@Base" 0.8.0 - (c++)"typeinfo name for debSystem@Base" 0.8.0 - (c++)"typeinfo name for metaIndex@Base" 0.8.0 - (c++)"typeinfo name for pkgDPkgPM@Base" 0.8.0 - (c++)"typeinfo name for pkgPolicy@Base" 0.8.0 - (c++)"typeinfo name for pkgSystem@Base" 0.8.0 - (c++)"typeinfo name for pkgAcquire::Item@Base" 0.8.0 - (c++)"typeinfo name for pkgRecords::Parser@Base" 0.8.0 - (c++)"typeinfo name for pkgDepCache::InRootSetFunc@Base" 0.8.0 - (c++)"typeinfo name for pkgDepCache::DefaultRootSetFunc@Base" 0.8.0 - (c++)"typeinfo name for pkgDepCache::Policy@Base" 0.8.0 - (c++)"typeinfo name for pkgSimulate::Policy@Base" 0.8.0 - (c++)"typeinfo name for pkgIndexFile::Type@Base" 0.8.0 - (c++)"typeinfo name for Configuration::MatchAgainstConfig@Base" 0.8.0 - (c++)"typeinfo name for pkgSourceList::Type@Base" 0.8.0 - (c++)"typeinfo name for pkgSrcRecords::Parser@Base" 0.8.0 - (c++)"typeinfo name for pkgCacheGenerator::ListParser@Base" 0.8.0 - (c++)"typeinfo name for APT::CacheSetHelper@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::DepIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::GrpIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::PkgIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::PrvIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::VerIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::DescIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::PkgFileIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::VerFileIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::DescFileIterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 - (c++)"typeinfo name for pkgCache::Namespace@Base" 0.8.0 - (c++)"vtable for OpProgress@Base" 0.8.0 - (c++)"vtable for SourceCopy@Base" 0.8.0 - (c++)"vtable for pkgAcqFile@Base" 0.8.0 - (c++)"vtable for pkgAcquire@Base" 0.8.0 - (c++)"vtable for DynamicMMap@Base" 0.8.0 - (c++)"vtable for PackageCopy@Base" 0.8.0 - (c++)"vtable for pkgAcqIndex@Base" 0.8.0 - (c++)"vtable for pkgDepCache@Base" 0.8.0 - (c++)"vtable for pkgSimulate@Base" 0.8.0 - (c++)"vtable for debIFTypePkg@Base" 0.8.0 - (c++)"vtable for debIFTypeSrc@Base" 0.8.0 - (c++)"vtable for debSLTypeDeb@Base" 0.8.0 - (c++)"vtable for indexRecords@Base" 0.8.0 - (c++)"vtable for pkgAcqMethod@Base" 0.8.0 - (c++)"vtable for pkgCacheFile@Base" 0.8.0 - (c++)"vtable for pkgIndexFile@Base" 0.8.0 - (c++)"vtable for debListParser@Base" 0.8.0 - (c++)"vtable for pkgAcqArchive@Base" 0.8.0 - (c++)"vtable for pkgAcqMetaSig@Base" 0.8.0 - (c++)"vtable for pkgTagSection@Base" 0.8.0 - (c++)"vtable for OpTextProgress@Base" 0.8.0 - (c++)"vtable for debIFTypeTrans@Base" 0.8.0 - (c++)"vtable for debStatusIndex@Base" 0.8.0 - (c++)"vtable for debIFTypeStatus@Base" 0.8.0 - (c++)"vtable for debRecordParser@Base" 0.8.0 - (c++)"vtable for debReleaseIndex@Base" 0.8.0 - (c++)"vtable for debSLTypeDebSrc@Base" 0.8.0 - (c++)"vtable for debSLTypeDebian@Base" 0.8.0 - (c++)"vtable for debSourcesIndex@Base" 0.8.0 - (c++)"vtable for pkgAcqDiffIndex@Base" 0.8.0 - (c++)"vtable for pkgAcqMetaIndex@Base" 0.8.0 - (c++)"vtable for debPackagesIndex@Base" 0.8.0 - (c++)"vtable for pkgAcqIndexDiffs@Base" 0.8.0 - (c++)"vtable for pkgAcqIndexTrans@Base" 0.8.0 - (c++)"vtable for pkgAcquireStatus@Base" 0.8.0 - (c++)"vtable for PreferenceSection@Base" 0.8.0 - (c++)"vtable for pkgPackageManager@Base" 0.8.0 - (c++)"vtable for debSrcRecordParser@Base" 0.8.0 - (c++)"vtable for debVersioningSystem@Base" 0.8.0 - (c++)"vtable for pkgUdevCdromDevices@Base" 0.8.0 - (c++)"vtable for pkgVersioningSystem@Base" 0.8.0 - (c++)"vtable for debTranslationsIndex@Base" 0.8.0 - (c++)"vtable for MMap@Base" 0.8.0 - (c++)"vtable for FileFd@Base" 0.8.0 - (c++)"vtable for Vendor@Base" 0.8.0 - (c++)"vtable for pkgCache@Base" 0.8.0 - (c++)"vtable for IndexCopy@Base" 0.8.0 - (c++)"vtable for debSystem@Base" 0.8.0 - (c++)"vtable for metaIndex@Base" 0.8.0 - (c++)"vtable for pkgDPkgPM@Base" 0.8.0 - (c++)"vtable for pkgPolicy@Base" 0.8.0 - (c++)"vtable for pkgSystem@Base" 0.8.0 - (c++)"vtable for pkgAcquire::Item@Base" 0.8.0 - (c++)"vtable for pkgRecords::Parser@Base" 0.8.0 - (c++)"vtable for pkgDepCache::InRootSetFunc@Base" 0.8.0 - (c++)"vtable for pkgDepCache::DefaultRootSetFunc@Base" 0.8.0 - (c++)"vtable for pkgDepCache::Policy@Base" 0.8.0 - (c++)"vtable for pkgSimulate::Policy@Base" 0.8.0 - (c++)"vtable for pkgIndexFile::Type@Base" 0.8.0 - (c++)"vtable for Configuration::MatchAgainstConfig@Base" 0.8.0 - (c++)"vtable for pkgSourceList::Type@Base" 0.8.0 - (c++)"vtable for pkgSrcRecords::Parser@Base" 0.8.0 - (c++)"vtable for pkgCacheGenerator::ListParser@Base" 0.8.0 - (c++)"vtable for APT::CacheSetHelper@Base" 0.8.0 - (c++)"vtable for pkgCache::DepIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::GrpIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::PkgIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::PrvIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::VerIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::DescIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::PkgFileIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::VerFileIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::DescFileIterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 - (c++)"non-virtual thunk to pkgDepCache::DefaultRootSetFunc::~DefaultRootSetFunc()@Base" 0.8.0 - (c++)"operator<<(std::basic_ostream >&, pkgCache::DepIterator)@Base" 0.8.0 - (c++)"operator<<(std::basic_ostream >&, pkgCache::PkgIterator)@Base" 0.8.0 - _apt_DebSrcType@Base 0.8.0 - _apt_DebType@Base 0.8.0 - _config@Base 0.8.0 - _system@Base 0.8.0 - debSys@Base 0.8.0 - debVS@Base 0.8.0 - pkgLibVersion@Base 0.8.0 - pkgVersion@Base 0.8.0 -### architecture specific: va_list - (arch=armel armhf|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, std::__va_list&) const@Base" 0.8.15~exp1 - (arch=i386 hurd-i386 kfreebsd-i386 ppc64|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, char*&) const@Base" 0.8.15~exp1 - (arch=hppa ia64 mips mipsel sparc sparc64|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, void*&) const@Base" 0.8.15~exp1 - (arch=amd64 kfreebsd-amd64 powerpc powerpcspe s390 s390x x32|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, __va_list_tag (&) [1]) const@Base" 0.8.15~exp1 - (arch=sh4|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, __builtin_va_list&) const@Base" 0.8.15~exp1 - (arch=alpha|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, __va_list_tag&) const@Base" 0.8.15~exp1 -### architecture specific: va_list & size_t - (arch=i386 hurd-i386 kfreebsd-i386|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, char*&, unsigned int&)@Base" 0.8.11.4 - (arch=armel armhf|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, std::__va_list&, unsigned int&)@Base" 0.8.11.4 - (arch=alpha|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag&, unsigned long&)@Base" 0.8.11.4 - (arch=powerpc powerpcspe x32|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag (&) [1], unsigned int&)@Base" 0.8.11.4 - (arch=amd64 kfreebsd-amd64 s390 s390x|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag (&) [1], unsigned long&)@Base" 0.8.11.4 - (arch=hppa mips mipsel sparc|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, void*&, unsigned int&)@Base" 0.8.11.4 - (arch=ia64 sparc64|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, void*&, unsigned long&)@Base" 0.8.11.4 - (arch=sh4|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __builtin_va_list&, unsigned int&)@Base" 0.8.11.4 - (arch=ppc64|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, char*&, unsigned long&)@Base" 0.8.11.4 - (arch=i386 hurd-i386 kfreebsd-i386|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, char*&, int, unsigned int&)@Base" 0.8.11.4 - (arch=armel armhf|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, std::__va_list&, int, unsigned int&)@Base" 0.8.11.4 - (arch=alpha|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag&, int, unsigned long&)@Base" 0.8.11.4 - (arch=powerpc powerpcspe x32|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag (&) [1], int, unsigned int&)@Base" 0.8.11.4 - (arch=amd64 kfreebsd-amd64 s390 s390x|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag (&) [1], int, unsigned long&)@Base" 0.8.11.4 - (arch=hppa mips mipsel sparc|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, void*&, int, unsigned int&)@Base" 0.8.11.4 - (arch=ia64 sparc64|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, void*&, int, unsigned long&)@Base" 0.8.11.4 1 - (arch=sh4|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __builtin_va_list&, int, unsigned int&)@Base" 0.8.11.4 - (arch=ppc64|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, char*&, int, unsigned long&)@Base" 0.8.11.4 -### architecture specific: size_t - (arch=i386 armel armhf hppa hurd-i386 kfreebsd-i386 mips mipsel powerpc powerpcspe sh4 sparc x32|c++)"_strtabexpand(char*, unsigned int)@Base" 0.8.0 - (arch=alpha amd64 ia64 kfreebsd-amd64 s390 s390x sparc64 ppc64|c++)"_strtabexpand(char*, unsigned long)@Base" 0.8.0 -### architecture specific: time_t - (arch=!x32|c++)"TimeRFC1123(long)@Base" 0.8.0 - (arch=x32|c++)"TimeRFC1123(long long)@Base" 0.8.0 - (arch=!x32|c++)"FTPMDTMStrToTime(char const*, long&)@Base" 0.8.0 - (arch=x32|c++)"FTPMDTMStrToTime(char const*, long long&)@Base" 0.8.0 - (arch=!x32|c++)"StrToTime(std::basic_string, std::allocator > const&, long&)@Base" 0.8.0 - (arch=x32|c++)"StrToTime(std::basic_string, std::allocator > const&, long long&)@Base" 0.8.0 - (arch=!x32|c++)"RFC1123StrToTime(char const*, long&)@Base" 0.8.0 - (arch=x32|c++)"RFC1123StrToTime(char const*, long long&)@Base" 0.8.0 -### - (c++)"Configuration::MatchAgainstConfig::clearPatterns()@Base" 0.8.1 - (c++)"CreateAPTDirectoryIfNeeded(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.2 - (c++)"FileFd::FileSize()@Base" 0.8.8 - (c++)"Base256ToNum(char const*, unsigned long&, unsigned int)@Base" 0.8.11 - (c++)"pkgDepCache::SetCandidateRelease(pkgCache::VerIterator, std::basic_string, std::allocator > const&, std::list, std::allocator > >&)@Base" 0.8.11 - (c++)"pkgDepCache::SetCandidateRelease(pkgCache::VerIterator, std::basic_string, std::allocator > const&)@Base" 0.8.11 - (c++)"RealFileExists(std::basic_string, std::allocator >)@Base" 0.8.11 - (c++)"StripEpoch(std::basic_string, std::allocator > const&)@Base" 0.8.11 - (c++)"pkgAcqIndex::Init(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.11 - (c++)"pkgAcqIndex::pkgAcqIndex(pkgAcquire*, IndexTarget const*, HashString const&, indexRecords const*)@Base" 0.8.11 - (c++)"pkgTagSection::FindFlag(unsigned long&, unsigned long, char const*, char const*)@Base" 0.8.11 - (c++)"pkgAcqSubIndex::ParseIndex(std::basic_string, std::allocator > const&)@Base" 0.8.11 - (c++)"pkgAcqSubIndex::Custom600Headers()@Base" 0.8.11 - (c++)"pkgAcqSubIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.11 - (c++)"pkgAcqSubIndex::DescURI()@Base" 0.8.11 - (c++)"pkgAcqSubIndex::pkgAcqSubIndex(pkgAcquire*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, HashString const&)@Base" 0.8.11 - (c++)"pkgAcqSubIndex::~pkgAcqSubIndex()@Base" 0.8.11 - (c++)"pkgAcqMetaClearSig::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.11 - (c++)"pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::vector > const*, indexRecords*)@Base" 0.8.11 - (c++)"pkgAcqMetaClearSig::~pkgAcqMetaClearSig()@Base" 0.8.11 - (c++)"pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire*, IndexTarget const*, HashString const&, indexRecords const*)@Base" 0.8.11 - (c++)"IndexTarget::IsOptional() const@Base" 0.8.11 - (c++)"IndexTarget::IsSubIndex() const@Base" 0.8.11 - (c++)"debReleaseIndex::TranslationIndexURI(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.11 - (c++)"debReleaseIndex::TranslationIndexURISuffix(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.11 - (c++)"typeinfo for pkgAcqSubIndex@Base" 0.8.11 - (c++)"typeinfo for pkgAcqMetaClearSig@Base" 0.8.11 - (c++)"typeinfo name for pkgAcqSubIndex@Base" 0.8.11 - (c++)"typeinfo name for pkgAcqMetaClearSig@Base" 0.8.11 - (c++)"vtable for pkgAcqSubIndex@Base" 0.8.11 - (c++)"vtable for pkgAcqMetaClearSig@Base" 0.8.11 - (c++)"FindMountPointForDevice(char const*)@Base" 0.8.12 - (c++)"pkgUdevCdromDevices::ScanForRemovable(bool)@Base" 0.8.12 - (c++)"APT::Configuration::Compressor::Compressor(char const*, char const*, char const*, char const*, char const*, unsigned short)@Base" 0.8.12 - (c++)"APT::Configuration::Compressor::~Compressor()@Base" 0.8.12 - (c++)"APT::Configuration::getCompressors(bool)@Base" 0.8.12 - (c++)"APT::Configuration::getCompressorExtensions()@Base" 0.8.12 - (c++)"APT::Configuration::setDefaultConfigurationForCompressors()@Base" 0.8.12 - (c++)"pkgAcqMetaClearSig::Custom600Headers()@Base" 0.8.13 - (c++)"debListParser::NewProvidesAllArch(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.13.2 - (c++)"pkgDepCache::IsModeChangeOk(pkgDepCache::ModeList, pkgCache::PkgIterator const&, unsigned long, bool)@Base" 0.8.13.2 - (c++)"pkgCache::DepIterator::IsNegative() const@Base" 0.8.15~exp1 - (c++)"Configuration::CndSet(char const*, int)@Base" 0.8.15.3 - (c++)"pkgProblemResolver::InstOrNewPolicyBroken(pkgCache::PkgIterator)@Base" 0.8.15.3 - (c++)"DeEscapeString(std::basic_string, std::allocator > const&)@Base" 0.8.15.4 - (c++)"GetModificationTime(std::basic_string, std::allocator > const&)@Base" 0.8.15.6 - (c++)"pkgSourceList::GetLastModifiedTime()@Base" 0.8.15.6 - (c++)"pkgCacheGenerator::NewDepends(pkgCache::PkgIterator&, pkgCache::VerIterator&, std::basic_string, std::allocator > const&, unsigned int const&, unsigned int const&, unsigned int*&)@Base" 0.8.15.6 - (c++)"pkgCacheFile::RemoveCaches()@Base" 0.8.15.7 - (c++)"pkgOrderList::VisitNode(pkgCache::PkgIterator, char const*)@Base" 0.8.15.7 -### external dependency resolver ### - (c++)"edspIFType::~edspIFType()@Base" 0.8.16~exp2 - (c++)"edspSystem::Initialize(Configuration&)@Base" 0.8.16~exp2 - (c++)"edspSystem::AddStatusFiles(std::vector >&)@Base" 0.8.16~exp2 - (c++)"edspSystem::ArchiveSupported(char const*)@Base" 0.8.16~exp2 - (c++)"edspSystem::Lock()@Base" 0.8.16~exp2 - (c++)"edspSystem::Score(Configuration const&)@Base" 0.8.16~exp2 - (c++)"edspSystem::UnLock(bool)@Base" 0.8.16~exp2 - (c++)"edspSystem::edspSystem()@Base" 0.8.16~exp2 - (c++)"edspSystem::~edspSystem()@Base" 0.8.16~exp2 - (c++)"edspListParser::NewVersion(pkgCache::VerIterator&)@Base" 0.8.16~exp2 - (c++)"edspListParser::Description()@Base" 0.8.16~exp2 - (c++)"edspListParser::ParseStatus(pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.16~exp2 - (c++)"edspListParser::VersionHash()@Base" 0.8.16~exp2 - (c++)"edspListParser::Description_md5()@Base" 0.8.16~exp2 - (c++)"edspListParser::LoadReleaseInfo(pkgCache::PkgFileIterator&, FileFd&, std::basic_string, std::allocator >)@Base" 0.8.16~exp2 - (c++)"edspListParser::DescriptionLanguage()@Base" 0.8.16~exp2 - (c++)"edspListParser::edspListParser(FileFd*, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp2 - (c++)"edspListParser::~edspListParser()@Base" 0.8.16~exp2 - (c++)"edspIndex::edspIndex(std::basic_string, std::allocator >)@Base" 0.8.16~exp2 - (c++)"edspIndex::~edspIndex()@Base" 0.8.16~exp2 - (c++)"edspIFType::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.16~exp2 - (c++)"edspSystem::CreatePM(pkgDepCache*) const@Base" 0.8.16~exp2 - (c++)"edspSystem::FindIndex(pkgCache::PkgFileIterator, pkgIndexFile*&) const@Base" 0.8.16~exp2 - (c++)"edspIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.16~exp2 - (c++)"edspIndex::GetType() const@Base" 0.8.16~exp2 - (c++)"EDSP::WriteError(char const*, std::basic_string, std::allocator > const&, _IO_FILE*)@Base" 0.8.16~exp2 - (c++)"EDSP::ReadRequest(int, std::list, std::allocator >, std::allocator, std::allocator > > >&, std::list, std::allocator >, std::allocator, std::allocator > > >&, bool&, bool&, bool&)@Base" 0.8.16~exp2 - (c++)"EDSP::ApplyRequest(std::list, std::allocator >, std::allocator, std::allocator > > > const&, std::list, std::allocator >, std::allocator, std::allocator > > > const&, pkgDepCache&)@Base" 0.8.16~exp2 - (c++)"EDSP::ReadResponse(int, pkgDepCache&, OpProgress*)@Base" 0.8.16~exp2 - (c++)"EDSP::WriteRequest(pkgDepCache&, _IO_FILE*, bool, bool, bool, OpProgress*)@Base" 0.8.16~exp2 - (c++)"EDSP::ExecuteSolver(char const*, int*, int*)@Base" 0.8.16~exp2 - (c++)"EDSP::WriteProgress(unsigned short, char const*, _IO_FILE*)@Base" 0.8.16~exp2 - (c++)"EDSP::WriteScenario(pkgDepCache&, _IO_FILE*, OpProgress*)@Base" 0.8.16~exp2 - (c++)"EDSP::WriteSolution(pkgDepCache&, _IO_FILE*)@Base" 0.8.16~exp2 - (c++)"EDSP::ResolveExternal(char const*, pkgDepCache&, bool, bool, bool, OpProgress*)@Base" 0.8.16~exp2 - (c++)"EDSP::DepMap@Base" 0.8.16~exp2 - (c++)"EDSP::PrioMap@Base" 0.8.16~exp2 - (c++)"pkgDepCache::Policy::GetPriority(pkgCache::PkgIterator const&)@Base" 0.8.16~exp6 - (c++)"pkgDepCache::Policy::GetPriority(pkgCache::PkgFileIterator const&)@Base" 0.8.16~exp6 - (c++)"typeinfo for edspIFType@Base" 0.8.16~exp2 - (c++)"typeinfo for edspSystem@Base" 0.8.16~exp2 - (c++)"typeinfo for edspListParser@Base" 0.8.16~exp2 - (c++)"typeinfo for edspIndex@Base" 0.8.16~exp2 - (c++)"typeinfo name for edspIFType@Base" 0.8.16~exp2 - (c++)"typeinfo name for edspSystem@Base" 0.8.16~exp2 - (c++)"typeinfo name for edspListParser@Base" 0.8.16~exp2 - (c++)"typeinfo name for edspIndex@Base" 0.8.16~exp2 - (c++)"vtable for edspIFType@Base" 0.8.16~exp2 - (c++)"vtable for edspSystem@Base" 0.8.16~exp2 - (c++)"vtable for edspListParser@Base" 0.8.16~exp2 - (c++)"vtable for edspIndex@Base" 0.8.16~exp2 - edspSys@Base 0.8.16~exp2 -### generalisation of checksums (with lfs) -- mostly api-compatible available (without sha512 in previous versions) - (c++)"AddCRC16(unsigned short, void const*, unsigned long long)@Base" 0.8.16~exp2 - (c++)"MD5Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 - (c++)"MD5Summation::Result()@Base" 0.8.16~exp2 - (c++)"MD5Summation::MD5Summation()@Base" 0.8.16~exp2 - (c++)"SHA1Summation::SHA1Summation()@Base" 0.8.16~exp2 - (c++)"SHA1Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 - (c++)"SHA1Summation::Result()@Base" 0.8.16~exp2 - (c++)"SHA256Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 - (c++)"SHA512Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 - (c++)"debRecordParser::SHA512Hash()@Base" 0.8.16~exp2 - (c++)"pkgRecords::Parser::SHA512Hash()@Base" 0.8.16~exp6 - (c++)"Hashes::AddFD(int, unsigned long long, bool, bool, bool, bool)@Base" 0.8.16~exp6 - (c++)"SummationImplementation::AddFD(int, unsigned long long)@Base" 0.8.16~exp6 - (c++)"typeinfo for MD5Summation@Base" 0.8.16~exp6 - (c++)"typeinfo for SHA1Summation@Base" 0.8.16~exp6 - (c++)"typeinfo for SHA256Summation@Base" 0.8.16~exp6 - (c++)"typeinfo for SHA512Summation@Base" 0.8.16~exp6 - (c++)"typeinfo for SHA2SummationBase@Base" 0.8.16~exp6 - (c++)"typeinfo for SummationImplementation@Base" 0.8.16~exp6 - (c++)"typeinfo name for MD5Summation@Base" 0.8.16~exp6 - (c++)"typeinfo name for SHA1Summation@Base" 0.8.16~exp6 - (c++)"typeinfo name for SHA256Summation@Base" 0.8.16~exp6 - (c++)"typeinfo name for SHA512Summation@Base" 0.8.16~exp6 - (c++)"typeinfo name for SHA2SummationBase@Base" 0.8.16~exp6 - (c++)"typeinfo name for SummationImplementation@Base" 0.8.16~exp6 - (c++)"vtable for MD5Summation@Base" 0.8.16~exp6 - (c++)"vtable for SHA1Summation@Base" 0.8.16~exp6 - (c++)"vtable for SHA256Summation@Base" 0.8.16~exp6 - (c++)"vtable for SHA512Summation@Base" 0.8.16~exp6 - (c++)"vtable for SHA2SummationBase@Base" 0.8.16~exp6 - (c++)"vtable for SummationImplementation@Base" 0.8.16~exp6 -### large file support - available in older api-compatible versions without lfs ### - (c++)"StrToNum(char const*, unsigned long long&, unsigned int, unsigned int)@Base" 0.8.16~exp6 - (c++)"OpProgress::SubProgress(unsigned long long, std::basic_string, std::allocator > const&, float)@Base" 0.8.16~exp6 - (c++)"OpProgress::OverallProgress(unsigned long long, unsigned long long, unsigned long long, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp6 - (c++)"OpProgress::Progress(unsigned long long)@Base" 0.8.16~exp6 - (c++)"SourceCopy::GetFile(std::basic_string, std::allocator >&, unsigned long long&)@Base" 0.8.16~exp6 - (c++)"pkgAcqFile::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgAcqFile::pkgAcqFile(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp6 - (c++)"pkgAcquire::UriIterator::~UriIterator()@Base" 0.8.16~exp6 - (c++)"pkgAcquire::MethodConfig::~MethodConfig()@Base" 0.8.16~exp6 - (c++)"pkgAcquire::Item::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgAcquire::Item::Start(std::basic_string, std::allocator >, unsigned long long)@Base" 0.8.16~exp6 - (c++)"pkgRecords::Parser::RecordField(char const*)@Base" 0.8.16~exp6 - (c++)"pkgTagFile::Jump(pkgTagSection&, unsigned long long)@Base" 0.8.16~exp6 - (c++)"pkgTagFile::Offset()@Base" 0.8.16~exp6 - (c++)"pkgTagFile::pkgTagFile(FileFd*, unsigned long long)@Base" 0.8.16~exp6 - (c++)"DynamicMMap::RawAllocate(unsigned long long, unsigned long)@Base" 0.8.16~exp6 - (c++)"PackageCopy::GetFile(std::basic_string, std::allocator >&, unsigned long long&)@Base" 0.8.16~exp6 - (c++)"pkgAcqIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"indexRecords::parseSumData(char const*&, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned long long&)@Base" 0.8.16~exp6 - (c++)"pkgAcqArchive::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgTagSection::~pkgTagSection()@Base" 0.8.16~exp6 - (c++)"pkgAcqSubIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"debRecordParser::RecordField(char const*)@Base" 0.8.16~exp6 - (c++)"debReleaseIndex::SetTrusted(bool)@Base" 0.8.16~exp6 - (c++)"debReleaseIndex::debReleaseIndex(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp6 - (c++)"pkgAcqMetaIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgAcqIndexDiffs::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgAcqMetaSig::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgAcqDiffIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 - (c++)"pkgAcquireStatus::Fetched(unsigned long long, unsigned long long)@Base" 0.8.16~exp6 - (c++)"PreferenceSection::~PreferenceSection()@Base" 0.8.16~exp6 - (c++)"pkgCacheGenerator::NewDescription(pkgCache::DescIterator&, std::basic_string, std::allocator > const&, HashSumValue<128> const&, unsigned int)@Base" 0.8.16~exp6 - (c++)"pkgProblemResolver::ResolveInternal(bool)@Base" 0.8.16~exp6 - (c++)"pkgProblemResolver::ResolveByKeepInternal()@Base" 0.8.16~exp6 - (c++)"FileFd::Read(void*, unsigned long long, unsigned long long*)@Base" 0.8.16~exp6 - (c++)"FileFd::Seek(unsigned long long)@Base" 0.8.16~exp6 - (c++)"FileFd::Skip(unsigned long long)@Base" 0.8.16~exp6 - (c++)"FileFd::Write(void const*, unsigned long long)@Base" 0.8.16~exp6 - (c++)"FileFd::Truncate(unsigned long long)@Base" 0.8.16~exp6 - (c++)"pkgPolicy::GetPriority(pkgCache::PkgFileIterator const&)@Base" 0.8.16~exp6 - (c++)"OptionalIndexTarget::IsOptional() const@Base" 0.8.16~exp6 - (c++)"typeinfo for pkgTagFile@Base" 0.8.16~exp6 - (c++)"typeinfo for IndexTarget@Base" 0.8.16~exp6 - (c++)"typeinfo for pkgSrcRecords@Base" 0.8.16~exp6 - (c++)"typeinfo for OptionalIndexTarget@Base" 0.8.16~exp6 - (c++)"typeinfo for pkgAcquire::UriIterator@Base" 0.8.16~exp6 - (c++)"typeinfo for pkgAcquire::MethodConfig@Base" 0.8.16~exp6 - (c++)"typeinfo for pkgAcquire::Queue@Base" 0.8.16~exp6 - (c++)"typeinfo for pkgAcquire::Worker@Base" 0.8.16~exp6 - (c++)"typeinfo name for pkgTagFile@Base" 0.8.16~exp6 - (c++)"typeinfo name for IndexTarget@Base" 0.8.16~exp6 - (c++)"typeinfo name for pkgSrcRecords@Base" 0.8.16~exp6 - (c++)"typeinfo name for OptionalIndexTarget@Base" 0.8.16~exp6 - (c++)"typeinfo name for pkgAcquire::UriIterator@Base" 0.8.16~exp6 - (c++)"typeinfo name for pkgAcquire::MethodConfig@Base" 0.8.16~exp6 - (c++)"typeinfo name for pkgAcquire::Queue@Base" 0.8.16~exp6 - (c++)"typeinfo name for pkgAcquire::Worker@Base" 0.8.16~exp6 - (c++)"vtable for pkgTagFile@Base" 0.8.16~exp6 - (c++)"vtable for IndexTarget@Base" 0.8.16~exp6 - (c++)"vtable for pkgSrcRecords@Base" 0.8.16~exp6 - (c++)"vtable for OptionalIndexTarget@Base" 0.8.16~exp6 - (c++)"vtable for pkgAcquire::UriIterator@Base" 0.8.16~exp6 - (c++)"vtable for pkgAcquire::MethodConfig@Base" 0.8.16~exp6 - (c++)"vtable for pkgAcquire::Queue@Base" 0.8.16~exp6 - (c++)"vtable for pkgAcquire::Worker@Base" 0.8.16~exp6 -### remove deprecated parameter - (c++)"pkgDepCache::SetCandidateVersion(pkgCache::VerIterator)@Base" 0.8.16~exp6 - (c++)"pkgDepCache::AddSizes(pkgCache::PkgIterator const&, bool)@Base" 0.8.16~exp6 - (c++)"pkgDepCache::AddStates(pkgCache::PkgIterator const&, bool)@Base" 0.8.16~exp6 -### used internally by public interfaces - if you use them directly, you can keep the pieces - (c++|optional=internal|regex)"^SHA256_.*@Base$" 0.8.16~exp2 - (c++|optional=internal|regex)"^SHA384_.*@Base$" 0.8.16~exp2 - (c++|optional=internal|regex)"^SHA512_.*@Base$" 0.8.16~exp2 -### orderlist rework: the touched methods are protected - (c++)"SigINT(int)@Base" 0.8.16~exp14 - (c++)"pkgPackageManager::SigINTStop@Base" 0.8.16~exp14 - (c++)"pkgPackageManager::SmartUnPack(pkgCache::PkgIterator, bool, int)@Base" 0.8.16~exp14 - (c++)"pkgPackageManager::SmartConfigure(pkgCache::PkgIterator, int)@Base" 0.8.16~exp14 -### FileFd rework: supporting different on-the-fly (de)compressing needs more parameter (abi), but the api is stable - (c++)"FileFd::OpenDescriptor(int, unsigned int, FileFd::CompressMode, bool)@Base" 0.8.16~exp9 - (c++)"FileFd::OpenDescriptor(int, unsigned int, APT::Configuration::Compressor const&, bool)@Base" 0.8.16~exp9 - (c++)"FileFd::ModificationTime()@Base" 0.8.16~exp9 - (c++)"FileFd::Open(std::basic_string, std::allocator >, unsigned int, FileFd::CompressMode, unsigned long)@Base" 0.8.16~exp9 - (c++)"FileFd::Open(std::basic_string, std::allocator >, unsigned int, APT::Configuration::Compressor const&, unsigned long)@Base" 0.8.16~exp9 - (c++)"FileFd::ReadLine(char*, unsigned long long)@Base" 0.8.16~exp9 - (c++)"SummationImplementation::AddFD(FileFd&, unsigned long long)@Base" 0.8.16~exp9 - (c++)"Hashes::AddFD(FileFd&, unsigned long long, bool, bool, bool, bool)@Base" 0.8.16~exp9 - (c++|optional=deprecated,previous-inline)"FileFd::gzFd()@Base" 0.8.0 -### CacheSet rework: making them real containers breaks bigtime the API (for the CacheSetHelper) - (c++)"APT::PackageContainer, std::allocator > >::const_iterator::getPkg() const@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer, std::allocator > >::getConstructor() const@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer, std::allocator > >::empty() const@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer > >::const_iterator::getPkg() const@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer > >::getConstructor() const@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer > >::empty() const@Base" 0.8.16~exp9 - (c++)"APT::VersionContainer > >::empty() const@Base" 0.8.16~exp9 - (c++)"APT::VersionContainer > >::iterator::getVer() const@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::canNotFindTask(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::canNotFindRegEx(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::canNotFindAllVer(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::canNotFindPackage(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::showTaskSelection(pkgCache::PkgIterator const&, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const&, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::showSelectedVersion(pkgCache::PkgIterator const&, pkgCache::VerIterator, std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::canNotFindCandInstVer(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 - (c++)"APT::CacheSetHelper::canNotFindInstCandVer(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer, std::allocator > >::setConstructor(APT::PackageContainerInterface::Constructor const&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer, std::allocator > >::clear()@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer, std::allocator > >::insert(pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer > >::setConstructor(APT::PackageContainerInterface::Constructor const&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer > >::clear()@Base" 0.8.16~exp9 - (c++)"APT::PackageContainer > >::insert(pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainer > >::clear()@Base" 0.8.16~exp9 - (c++)"APT::VersionContainer > >::insert(pkgCache::VerIterator const&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainerInterface::FromString(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainerInterface::FromCommandLine(APT::PackageContainerInterface*, pkgCacheFile&, char const**, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainerInterface::FromModifierCommandLine(unsigned short&, APT::PackageContainerInterface*, pkgCacheFile&, char const*, std::list > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainerInterface::FromName(pkgCacheFile&, std::basic_string, std::allocator > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainerInterface::FromTask(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::PackageContainerInterface::FromRegEx(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainerInterface::FromString(APT::VersionContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::VersionContainerInterface::Version const&, APT::CacheSetHelper&, bool)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainerInterface::FromPackage(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&, APT::VersionContainerInterface::Version const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainerInterface::FromCommandLine(APT::VersionContainerInterface*, pkgCacheFile&, char const**, APT::VersionContainerInterface::Version const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainerInterface::getCandidateVer(pkgCacheFile&, pkgCache::PkgIterator const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainerInterface::getInstalledVer(pkgCacheFile&, pkgCache::PkgIterator const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"APT::VersionContainerInterface::FromModifierCommandLine(unsigned short&, APT::VersionContainerInterface*, pkgCacheFile&, char const*, std::list > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 - (c++)"EDSP::WriteLimitedScenario(pkgDepCache&, _IO_FILE*, APT::PackageContainer, std::allocator > > const&, OpProgress*)@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::PackageContainer, std::allocator > >::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::PackageContainer, std::allocator > >@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::PackageContainer > >::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::PackageContainer > >@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::VersionContainer > >::iterator@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::VersionContainer > >@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::PackageContainerInterface::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::PackageContainerInterface@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo for APT::VersionContainerInterface@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::PackageContainer, std::allocator > >::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::PackageContainer, std::allocator > >@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::PackageContainer > >::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::PackageContainer > >@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::VersionContainer > >::iterator@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::VersionContainer > >@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::PackageContainerInterface::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::PackageContainerInterface@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9 - (c++)"typeinfo name for APT::VersionContainerInterface@Base" 0.8.16~exp9 - (c++)"vtable for APT::PackageContainer, std::allocator > >::const_iterator@Base" 0.8.16~exp9 - (c++)"vtable for APT::PackageContainer, std::allocator > >@Base" 0.8.16~exp9 - (c++)"vtable for APT::PackageContainer > >::const_iterator@Base" 0.8.16~exp9 - (c++)"vtable for APT::PackageContainer > >@Base" 0.8.16~exp9 - (c++)"vtable for APT::VersionContainer > >::iterator@Base" 0.8.16~exp9 - (c++)"vtable for APT::VersionContainer > >@Base" 0.8.16~exp9 - (c++)"vtable for APT::PackageContainerInterface::const_iterator@Base" 0.8.16~exp9 - (c++)"vtable for APT::PackageContainerInterface@Base" 0.8.16~exp9 - (c++)"vtable for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9 - (c++)"vtable for APT::VersionContainerInterface@Base" 0.8.16~exp9 -### rework of the packagemanager rework - (c++)"APT::Progress::PackageManager::ConffilePrompt(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::Error(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::HandleSIGWINCH(int)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::~PackageManagerFancy()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::PackageManagerFancy()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::SetupTerminalScrollArea(int)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::Stop()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::fork()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::GetPulseInterval()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::~PackageManager()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::ConffilePrompt(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::Error(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::~PackageManagerProgressDeb822Fd()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::PackageManagerProgressDeb822Fd(int)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::StartDpkg()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::Stop()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressDeb822Fd::WriteToStatusFd(std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFactory()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::ConffilePrompt(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::Error(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::~PackageManagerProgressFd()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::PackageManagerProgressFd(int)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::StartDpkg()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::Stop()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerProgressFd::WriteToStatusFd(std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::Pulse()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::StartDpkg()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManager::Stop()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerText::~PackageManagerText()@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerText::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 - (c++)"APT::String::Strip(std::basic_string, std::allocator > const&)@Base" 0.9.13~exp1 - (c++)"APT::Upgrade::Upgrade(pkgDepCache&, int)@Base" 0.9.13~exp1 - (c++)"pkgDPkgPM::BuildPackagesProgressMap()@Base" 0.9.13~exp1 - (c++)"pkgDPkgPM::DoDpkgStatusFd(int)@Base" 0.9.13~exp1 - (c++)"pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager*)@Base" 0.9.13~exp1 - (c++)"pkgDPkgPM::ProcessDpkgStatusLine(char*)@Base" 0.9.13~exp1 - (c++)"pkgDPkgPM::StartPtyMagic()@Base" 0.9.13~exp1 - (c++)"pkgDPkgPM::StopPtyMagic()@Base" 0.9.13~exp1 - (c++)"typeinfo for APT::Progress::PackageManager@Base" 0.9.13~exp1 - (c++)"typeinfo for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1 - (c++)"typeinfo for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1 - (c++)"typeinfo for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1 - (c++)"typeinfo for APT::Progress::PackageManagerText@Base" 0.9.13~exp1 - (c++)"typeinfo name for APT::Progress::PackageManager@Base" 0.9.13~exp1 - (c++)"typeinfo name for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1 - (c++)"typeinfo name for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1 - (c++)"typeinfo name for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1 - (c++)"typeinfo name for APT::Progress::PackageManagerText@Base" 0.9.13~exp1 - (c++)"vtable for APT::Progress::PackageManager@Base" 0.9.13~exp1 - (c++)"vtable for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1 - (c++)"vtable for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1 - (c++)"vtable for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1 - (c++)"vtable for APT::Progress::PackageManagerText@Base" 0.9.13~exp1 - (c++)"APT::Progress::PackageManagerFancy::instances@Base" 0.9.14.2 - (c++)"APT::Progress::PackageManagerFancy::Start(int)@Base" 0.9.14.2 - (c++)"APT::Progress::PackageManagerFancy::staticSIGWINCH(int)@Base" 0.9.14.2 - (c++)"APT::Progress::PackageManager::Start(int)@Base" 0.9.14.2 -### client-side merged pdiffs - (c++)"pkgAcqIndexMergeDiffs::DescURI()@Base" 0.9.14.3~exp1 - (c++)"pkgAcqIndexMergeDiffs::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.9.14.3~exp1 - (c++)"pkgAcqIndexMergeDiffs::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.9.14.3~exp1 - (c++)"pkgAcqIndexMergeDiffs::~pkgAcqIndexMergeDiffs()@Base" 0.9.14.3~exp1 - (c++)"pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, HashString const&, DiffInfo const&, std::vector > const*)@Base" 0.9.14.3~exp1 - (c++)"typeinfo for pkgAcqIndexMergeDiffs@Base" 0.9.14.3~exp1 - (c++)"typeinfo name for pkgAcqIndexMergeDiffs@Base" 0.9.14.3~exp1 - (c++)"vtable for pkgAcqIndexMergeDiffs@Base" 0.9.14.3~exp1 -### deb822 sources.list format - (c++)"pkgSourceList::ParseFileDeb822(std::basic_string, std::allocator >)@Base" 0.9.14.3~exp1 - (c++)"pkgSourceList::ParseFileOldStyle(std::basic_string, std::allocator >)@Base" 0.9.14.3~exp1 - (c++)"pkgSourceList::Type::ParseStanza(std::vector >&, pkgTagSection&, int, FileFd&)@Base" 0.9.14.3~exp1 -### mixed stuff - (c++)"GetListOfFilesInDir(std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp13 - (c++)"pkgCache::DepIterator::IsIgnorable(pkgCache::PkgIterator const&) const@Base" 0.8.16~exp10 - (c++)"pkgCache::DepIterator::IsIgnorable(pkgCache::PrvIterator const&) const@Base" 0.8.16~exp10 - (c++)"FileFd::Write(int, void const*, unsigned long long)@Base" 0.8.16~exp14 - (c++)"pkgTagSection::Exists(char const*)@Base" 0.9.7.9~exp1 - (c++)"_strrstrip(char*)@Base" 0.9.7.9~exp2 - (c++)"SplitClearSignedFile(std::basic_string, std::allocator > const&, FileFd*, std::vector, std::allocator >, std::allocator, std::allocator > > >*, FileFd*)@Base" 0.9.7.9~exp2 - (c++)"OpenMaybeClearSignedFile(std::basic_string, std::allocator > const&, FileFd&)@Base" 0.9.7.9~exp2 - (c++)"ExecGPGV(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, int const&, int*)@Base" 0.9.7.9~exp2 - (c++)"SigVerify::RunGPGV(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, int const&)@Base" 0.9.7.9~exp2 - (c++)"Configuration::Dump(std::basic_ostream >&, char const*, char const*, bool)@Base" 0.9.3 - (c++)"AcquireUpdate(pkgAcquire&, int, bool, bool)@Base" 0.9.3 - (c++)"pkgCache::DepIterator::IsMultiArchImplicit() const@Base" 0.9.6 - (c++)"pkgCache::PrvIterator::IsMultiArchImplicit() const@Base" 0.9.6 - (c++)"APT::PackageContainerInterface::FromGroup(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.9.7 - (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::PackageArchitectureMatchesSpecification(std::basic_string, std::allocator > const&, bool)@Base" 0.9.7 - (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::~PackageArchitectureMatchesSpecification()@Base" 0.9.7 - (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::operator()(pkgCache::PkgIterator const&)@Base" 0.9.7 - (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::operator()(pkgCache::VerIterator const&)@Base" 0.9.7 - (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::operator()(char const* const&)@Base" 0.9.7 - (c++)"APT::Configuration::checkLanguage(std::basic_string, std::allocator >, bool)@Base" 0.9.7.5 - (c++)"pkgCdrom::DropTranslation(std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.9.7.5 - (c++)"pkgCache::DepIterator::IsSatisfied(pkgCache::PrvIterator const&) const@Base" 0.9.8 - (c++)"pkgCache::DepIterator::IsSatisfied(pkgCache::VerIterator const&) const@Base" 0.9.8 - (c++)"pkgCacheGenerator::NewDepends(pkgCache::PkgIterator&, pkgCache::VerIterator&, unsigned int, unsigned int const&, unsigned int const&, unsigned int*&)@Base" 0.9.8 - (c++)"pkgCacheGenerator::NewVersion(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, unsigned int, unsigned long, unsigned long)@Base" 0.9.8 - (c++)"operator<<(std::basic_ostream >&, GlobalError::Item)@Base" 0.9.9 - (c++)"pkgDepCache::IsDeleteOkProtectInstallRequests(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.9.9.1 - (c++)"pkgDepCache::IsInstallOkMultiArchSameVersionSynced(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.9.9.1 - (c++)"pkgDPkgPM::SendPkgsInfo(_IO_FILE*, unsigned int const&)@Base" 0.9.9.1 - (c++)"pkgCache::VerIterator::MultiArchType() const@Base" 0.9.9.1 - (c++)"CommandLine::GetCommand(CommandLine::Dispatch const*, unsigned int, char const* const*)@Base" 0.9.11 - (c++)"CommandLine::MakeArgs(char, char const*, char const*, unsigned long)@Base" 0.9.11 - (c++)"Configuration::Clear()@Base" 0.9.11 - (c++)"Glob(std::basic_string, std::allocator > const&, int)@Base" 0.9.11 - (c++)"APT::CacheFilter::PackageNameMatchesFnmatch::operator()(pkgCache::GrpIterator const&)@Base" 0.9.11 - (c++)"APT::CacheFilter::PackageNameMatchesFnmatch::operator()(pkgCache::PkgIterator const&)@Base" 0.9.11 - (c++)"APT::PackageContainerInterface::FromFnmatch(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.9.11 - (c++)"pkgTagSection::pkgTagSection()@Base" 0.9.11 - (c++)"strv_length(char const**)@Base" 0.9.11 - (c++)"StringSplit(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, unsigned int)@Base" 0.9.11.3 - (c++)"pkgAcquire::Item::RenameOnError(pkgAcquire::Item::RenameOnErrorState)@Base" 0.9.12 - (c++)"APT::String::Endswith(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.9.13.1 - (c++)"ExecFork(std::set, std::allocator >)@Base" 0.9.13.1 - (c++)"MergeKeepFdsFromConfiguration(std::set, std::allocator >&)@Base" 0.9.13.1 - (c++)"HashString::FromFile(std::basic_string, std::allocator >)@Base" 0.9.13.1 - (c++)"HashString::GetHashForFile(std::basic_string, std::allocator >) const@Base" 0.9.13.1 - (c++)"indexRecords::GetSuite() const@Base" 0.9.13.2 - (c++)"GetTempDir()@Base" 0.9.14.2 - (c++)"APT::Configuration::getBuildProfiles()@Base" 0.9.16 - (c++)"APT::Configuration::getBuildProfilesString()@Base" 0.9.16 - (c++)"Configuration::FindVector(char const*, std::basic_string, std::allocator > const&) const@Base" 0.9.16 - (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&)@Base" 0.9.16 - (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&, bool const&)@Base" 0.9.16 - (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&, bool const&, bool const&, bool const&)@Base" 0.9.16 - (c++)"pkgCacheGenerator::ListParser::SameVersion(unsigned short, pkgCache::VerIterator const&)@Base" 0.9.16 - (c++)"Rename(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.9.16 - (c++)"pkgDepCache::IsInstallOkDependenciesSatisfiableByCandidates(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 1.0 - (c++)"APT::Progress::PackageManagerFancy::GetTerminalSize()@Base" 1.0 - (c++)"APT::Progress::PackageManagerFancy::GetTextProgressStr(float, int)@Base" 1.0 - (c++)"pkgCdromStatus::GetOpProgress()@Base" 1.0 - (c++)"pkgCdromStatus::SetTotal(int)@Base" 1.0 - (c++)"EDSP::ExecuteSolver(char const*, int*, int*, bool)@Base" 1.0.4 - (c++)"pkgPackageManager::EarlyRemove(pkgCache::PkgIterator, pkgCache::DepIterator const*)@Base" 1.0.4 - (c++)"debTranslationsParser::Architecture()@Base" 1.0.4 - (c++)"debTranslationsParser::~debTranslationsParser()@Base" 1.0.4 - (c++)"debTranslationsParser::Version()@Base" 1.0.4 - (c++)"typeinfo for debTranslationsParser@Base" 1.0.4 - (c++)"typeinfo name for debTranslationsParser@Base" 1.0.4 - (c++)"vtable for debTranslationsParser@Base" 1.0.4 -### demangle strangeness - buildd report it as MISSING and as new… - (c++)"pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector > const*, indexRecords*)@Base" 0.8.0 -### gcc-4.6 artefacts -# (c++|optional=implicit)"HashString::operator=(HashString const&)@Base" 0.8.0 -# (c++|optional=implicit)"HashString::HashString(HashString const&)@Base" 0.8.0 -# (c++|optional=inline)"APT::VersionContainer > >::iterator std::max_element > >::iterator, CompareProviders>(APT::VersionContainer > >::iterator, APT::VersionContainer > >::iterator, CompareProviders)@Base" 0.8.0 -# (c++|optional=inline)"pkgCache::VerIterator::ParentPkg() const@Base" 0.8.0 -### gcc-4.8 artefacts -# (c++|optional=implicit)"debSLTypeDebian::~debSLTypeDebian()@Base" 0.8.0 -### empty destructors included in the .h file -# (c++|optional=inline)"pkgVersioningSystem::~pkgVersioningSystem()@Base" 0.8.0 -# (c++|optional=inline)"pkgSystem::~pkgSystem()@Base" 0.8.0 -# (c++|optional=inline)"pkgRecords::Parser::~Parser()@Base" 0.8.0 -# (c++|optional=inline)"pkgSrcRecords::Parser::~Parser()@Base" 0.8.0 -# (c++|optional=inline)"pkgIndexFile::Type::~Type()@Base" 0.8.0 -# (c++|optional=inline)"pkgSourceList::Type::~Type()@Base" 0.8.0 -# (c++|optional=inline)"pkgIndexFile::~pkgIndexFile()@Base" 0.8.0 -# (c++|optional=inline)"pkgCacheGenerator::ListParser::~ListParser()@Base" 0.8.0 -# (c++|optional=inline)"pkgAcquireStatus::~pkgAcquireStatus()@Base" 0.8.0 -# (c++|optional=inline)"metaIndex::~metaIndex()@Base" 0.8.0 -# (c++|optional=inline)"IndexCopy::~IndexCopy()@Base" 0.8.0 -### std library artefacts - (c++|regex|optional=std)"^std::vector::(vector|push_back|erase|_[^ ]+)\(.+\)( const|)@Base$" 0.8.0 - (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct<__gnu_cxx::__normal_iterator, std::allocator > > >(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 - (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct<__gnu_cxx::__normal_iterator, std::allocator > > >(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 - (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct(char const*, char const*, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 - (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct(char*, char*, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 -### try to ignore std:: template instances - (c++|regex|optional=std)"^(void |)std::[^ ]+<.+ >::(_|~).+\(.*\)@Base$" 0.8.0 - (c++|regex|optional=std)"^std::[^ ]+<.+ >::(append|insert|reserve|operator[^ ]+)\(.*\)@Base$" 0.8.0 - (c++|regex|optional=std)"^(void |DiffInfo\* |)std::_.*@Base$" 0.8.0 - (c++|regex|optional=std)"^std::reverse_iterator<.+ > std::__.+@Base$" 0.8.0 - (c++|regex|optional=std)"^std::basic_string<.+ >\(.+\)@Base$" 0.8.0 - (c++|regex|optional=std)"^__gnu_cxx::__[^ ]+<.*@Base$" 0.8.0 - (c++|regex|optional=std)"^typeinfo name for std::iterator<.*>@Base$" 0.8.0 - (c++|regex|optional=std)"^typeinfo for std::iterator<.*>@Base$" 0.8.0 - (c++|optional=std)"std::ctype::do_widen(char) const@Base" 1.0.3 diff --git a/debian/libapt-pkg4.13.install.in b/debian/libapt-pkg4.13.install.in new file mode 100644 index 000000000..56bed39d3 --- /dev/null +++ b/debian/libapt-pkg4.13.install.in @@ -0,0 +1,2 @@ +bin/libapt-pkg*.so.* usr/lib/@DEB_HOST_MULTIARCH@/ +usr/share/locale/*/*/libapt-pkg*.mo diff --git a/debian/libapt-pkg4.13.symbols b/debian/libapt-pkg4.13.symbols new file mode 100644 index 000000000..1fbbf97d6 --- /dev/null +++ b/debian/libapt-pkg4.13.symbols @@ -0,0 +1,1620 @@ +libapt-pkg.so.4.13 libapt-pkg4.13 #MINVER# +* Build-Depends-Package: libapt-pkg-dev + TFRewritePackageOrder@Base 0.8.0 + TFRewriteSourceOrder@Base 0.8.0 + (c++)"FileExists(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"IdentCdrom(std::basic_string, std::allocator >, std::basic_string, std::allocator >&, unsigned int)@Base" 0.8.0 + (c++)"ListUpdate(pkgAcquireStatus&, pkgSourceList&, int)@Base" 0.8.0 + (c++)"MountCdrom(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"ParseCWord(char const*&, std::basic_string, std::allocator >&)@Base" 0.8.0 + (c++)"ReadPinDir(pkgPolicy&, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"RunScripts(char const*)@Base" 0.8.0 + (c++)"SafeGetCWD()@Base" 0.8.0 + (c++)"parsenetrc(char*, char*, char*, char*)@Base" 0.8.0 + (c++)"QuoteString(std::basic_string, std::allocator > const&, char const*)@Base" 0.8.0 + (c++)"ReadPinFile(pkgPolicy&, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"RegexChoice(RxChoiceList*, char const**, char const**)@Base" 0.8.0 + (c++)"SetNonBlock(int, bool)@Base" 0.8.0 + (c++)"flExtension(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"Base64Encode(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"ReadMessages(int, std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.8.0 + (c++)"SetCloseExec(int, bool)@Base" 0.8.0 + (c++)"StringToBool(std::basic_string, std::allocator > const&, int)@Base" 0.8.0 + (c++)"UnmountCdrom(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"_GetErrorObj()@Base" 0.8.0 + (c++)"Base256ToNum(char const*, unsigned long long&, unsigned int)@Base" 1.0.5 + (c++)"pkgFixBroken(pkgDepCache&)@Base" 0.8.0 + (c++)"DeQuoteString(__gnu_cxx::__normal_iterator, std::allocator > > const&, __gnu_cxx::__normal_iterator, std::allocator > > const&)@Base" 0.8.0 + (c++)"DeQuoteString(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"OutputInDepth(unsigned long, char const*)@Base" 0.8.0 + (c++)"ReadConfigDir(Configuration&, std::basic_string, std::allocator > const&, bool const&, unsigned int const&)@Base" 0.8.0 + (c++)"URItoFileName(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"UTF8ToCodeset(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator >*)@Base" 0.8.0 + (c++)"pkgAllUpgrade(pkgDepCache&)@Base" 0.8.0 + (c++)"pkgInitConfig(Configuration&)@Base" 0.8.0 + (c++)"pkgInitSystem(Configuration&, pkgSystem*&)@Base" 0.8.0 + (c++)"safe_snprintf(char*, char*, char const*, ...)@Base" 0.8.0 + (c++)"stringcasecmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, char const*, char const*)@Base" 0.8.0 + (c++)"stringcasecmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >)@Base" 0.8.0 + (c++)"stringcasecmp(std::basic_string, std::allocator > const&, char const*)@Base" 0.8.0 + (c++)"stringcasecmp(char const*, char const*, char const*, char const*)@Base" 0.8.0 + (c++)"tolower_ascii(int)@Base" 0.8.0 + (c++)"ParseQuoteWord(char const*&, std::basic_string, std::allocator >&)@Base" 0.8.0 + (c++)"ReadConfigFile(Configuration&, std::basic_string, std::allocator > const&, bool const&, unsigned int const&)@Base" 0.8.0 + (c++)"TokSplitString(char, char*, char**, unsigned long)@Base" 0.8.0 + (c++)"maybe_add_auth(URI&, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgApplyStatus(pkgDepCache&)@Base" 0.8.0 + (c++)"pkgDistUpgrade(pkgDepCache&)@Base" 0.8.0 + (c++)"CheckDomainList(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"CreateDirectory(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"DirectoryExists(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"VectorizeString(std::basic_string, std::allocator > const&, char const&)@Base" 0.8.0 + (c++)"pkgPrioSortList(pkgCache&, pkgCache::Version**)@Base" 0.8.0 + (c++)"pkgMakeStatusCache(pkgSourceList&, OpProgress&, MMap**, bool)@Base" 0.8.0 + (c++)"pkgMinimizeUpgrade(pkgDepCache&)@Base" 0.8.0 + (c++)"GetListOfFilesInDir(std::basic_string, std::allocator > const&, std::vector, std::allocator >, std::allocator, std::allocator > > > const&, bool const&)@Base" 0.8.0 + (c++)"GetListOfFilesInDir(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool const&, bool const&)@Base" 0.8.0 + (c++)"pkgMakeOnlyStatusCache(OpProgress&, DynamicMMap**)@Base" 0.8.0 + (c++)"WaitFd(int, bool, unsigned long)@Base" 0.8.0 + (c++)"GetLock(std::basic_string, std::allocator >, bool)@Base" 0.8.0 + (c++)"Hex2Num(std::basic_string, std::allocator > const&, unsigned char*, unsigned int)@Base" 0.8.0 + (c++)"CopyFile(FileFd&, FileFd&)@Base" 0.8.0 + (c++)"ExecFork()@Base" 0.8.0 + (c++)"ExecWait(int, char const*, bool)@Base" 0.8.0 + (c++)"StrToNum(char const*, unsigned long&, unsigned int, unsigned int)@Base" 0.8.0 + (c++)"SubstVar(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"SubstVar(std::basic_string, std::allocator >, SubstVar const*)@Base" 0.8.0 + (c++)"flNoLink(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"flNotDir(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"ioprintf(std::basic_ostream >&, char const*, ...)@Base" 0.8.0 + (c++)"IsMounted(std::basic_string, std::allocator >&)@Base" 0.8.0 + (c++)"LookupTag(std::basic_string, std::allocator > const&, char const*, char const*)@Base" 0.8.0 + (c++)"SizeToStr(double)@Base" 0.8.0 + (c++)"TFRewrite(_IO_FILE*, pkgTagSection const&, char const**, TFRewriteData*)@Base" 0.8.0 + (c++)"TimeToStr(unsigned long)@Base" 0.8.0 + (c++)"_strstrip(char*)@Base" 0.8.0 + (c++)"flCombine(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"flNotFile(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"stringcmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, char const*, char const*)@Base" 0.8.0 + (c++)"stringcmp(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >)@Base" 0.8.0 + (c++)"stringcmp(char const*, char const*, char const*, char const*)@Base" 0.8.0 + (c++)"strprintf(std::basic_string, std::allocator >&, char const*, ...)@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"guard variable for pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"HashString::SupportedHashes()@Base" 0.8.0 + (c++)"HashString::_SupportedHashes@Base" 0.8.0 + (c++)"HashString::HashString(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"HashString::HashString(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"HashString::HashString()@Base" 0.8.0 + (c++)"HashString::~HashString()@Base" 0.8.0 + (c++)"OpProgress::CheckChange(float)@Base" 0.8.0 + (c++)"OpProgress::Done()@Base" 0.8.0 + (c++)"OpProgress::Update()@Base" 0.8.0 + (c++)"OpProgress::OpProgress()@Base" 0.8.0 + (c++)"OpProgress::~OpProgress()@Base" 0.8.0 + (c++)"SourceCopy::GetFileName()@Base" 0.8.0 + (c++)"SourceCopy::RewriteEntry(_IO_FILE*, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"SourceCopy::Type()@Base" 0.8.0 + (c++)"SourceCopy::~SourceCopy()@Base" 0.8.0 + (c++)"pkgAcqFile::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcqFile::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqFile::DescURI()@Base" 0.8.0 + (c++)"pkgAcqFile::HashSum()@Base" 0.8.0 + (c++)"pkgAcqFile::~pkgAcqFile()@Base" 0.8.0 + (c++)"pkgAcquire::WorkerStep(pkgAcquire::Worker*)@Base" 0.8.0 + (c++)"pkgAcquire::FetchNeeded()@Base" 0.8.0 + (c++)"pkgAcquire::TotalNeeded()@Base" 0.8.0 + (c++)"pkgAcquire::MethodConfig::MethodConfig()@Base" 0.8.0 + (c++)"pkgAcquire::PartialPresent()@Base" 0.8.0 + (c++)"pkgAcquire::Add(pkgAcquire::Item*)@Base" 0.8.0 + (c++)"pkgAcquire::Add(pkgAcquire::Worker*)@Base" 0.8.0 + (c++)"pkgAcquire::Run(int)@Base" 0.8.0 + (c++)"pkgAcquire::Bump()@Base" 0.8.0 + (c++)"pkgAcquire::Item::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcquire::Item::ReportMirrorFailure(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcquire::Item::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcquire::Item::Rename(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcquire::Item::HashSum()@Base" 0.8.0 + (c++)"pkgAcquire::Item::Finished()@Base" 0.8.0 + (c++)"pkgAcquire::Item::IsTrusted()@Base" 0.8.0 + (c++)"pkgAcquire::Item::ShortDesc()@Base" 0.8.0 + (c++)"pkgAcquire::Item::Item(pkgAcquire*)@Base" 0.8.0 + (c++)"pkgAcquire::Item::~Item()@Base" 0.8.0 + (c++)"pkgAcquire::Clean(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Bump()@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Cycle()@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Dequeue(pkgAcquire::Item*)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Enqueue(pkgAcquire::ItemDesc&)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Startup()@Base" 0.8.0 + (c++)"pkgAcquire::Queue::FindItem(std::basic_string, std::allocator >, pkgAcquire::Worker*)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::ItemDone(pkgAcquire::Queue::QItem*)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Shutdown(bool)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::Queue(std::basic_string, std::allocator >, pkgAcquire*)@Base" 0.8.0 + (c++)"pkgAcquire::Queue::~Queue()@Base" 0.8.0 + (c++)"pkgAcquire::Setup(pkgAcquireStatus*, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgAcquire::Remove(pkgAcquire::Item*)@Base" 0.8.0 + (c++)"pkgAcquire::Remove(pkgAcquire::Worker*)@Base" 0.8.0 + (c++)"pkgAcquire::RunFds(fd_set*, fd_set*)@Base" 0.8.0 + (c++)"pkgAcquire::SetFds(int&, fd_set*, fd_set*)@Base" 0.8.0 + (c++)"pkgAcquire::UriEnd()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::OutFdReady()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::MediaChange(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcquire::Worker::RunMessages()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::Capabilities(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcquire::Worker::ReadMessages()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::MethodFailure()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::SendConfiguration()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::Pulse()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::Start()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::ItemDone()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::Construct()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::InFdReady()@Base" 0.8.0 + (c++)"pkgAcquire::Worker::QueueItem(pkgAcquire::Queue::QItem*)@Base" 0.8.0 + (c++)"pkgAcquire::Worker::Worker(pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcquire::Worker::Worker(pkgAcquire::Queue*, pkgAcquire::MethodConfig*, pkgAcquireStatus*)@Base" 0.8.0 + (c++)"pkgAcquire::Worker::~Worker()@Base" 0.8.0 + (c++)"pkgAcquire::Dequeue(pkgAcquire::Item*)@Base" 0.8.0 + (c++)"pkgAcquire::Enqueue(pkgAcquire::ItemDesc&)@Base" 0.8.0 + (c++)"pkgAcquire::ItemDesc::~ItemDesc()@Base" 0.8.0 + (c++)"pkgAcquire::Shutdown()@Base" 0.8.0 + (c++)"pkgAcquire::UriBegin()@Base" 0.8.0 + (c++)"pkgAcquire::GetConfig(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcquire::QueueName(std::basic_string, std::allocator >, pkgAcquire::MethodConfig const*&)@Base" 0.8.0 + (c++)"pkgAcquire::pkgAcquire(pkgAcquireStatus*)@Base" 0.8.0 + (c++)"pkgAcquire::pkgAcquire()@Base" 0.8.0 + (c++)"pkgAcquire::~pkgAcquire()@Base" 0.8.0 + (c++)"pkgRecords::Lookup(pkgCache::VerFileIterator const&)@Base" 0.8.0 + (c++)"pkgRecords::Lookup(pkgCache::DescFileIterator const&)@Base" 0.8.0 + (c++)"pkgRecords::Parser::Maintainer()@Base" 0.8.0 + (c++)"pkgRecords::Parser::SHA256Hash()@Base" 0.8.0 + (c++)"pkgRecords::Parser::Name()@Base" 0.8.0 + (c++)"pkgRecords::Parser::GetRec(char const*&, char const*&)@Base" 0.8.0 + (c++)"pkgRecords::Parser::MD5Hash()@Base" 0.8.0 + (c++)"pkgRecords::Parser::FileName()@Base" 0.8.0 + (c++)"pkgRecords::Parser::Homepage()@Base" 0.8.0 + (c++)"pkgRecords::Parser::LongDesc()@Base" 0.8.0 + (c++)"pkgRecords::Parser::SHA1Hash()@Base" 0.8.0 + (c++)"pkgRecords::Parser::ShortDesc()@Base" 0.8.0 + (c++)"pkgRecords::Parser::SourcePkg()@Base" 0.8.0 + (c++)"pkgRecords::Parser::SourceVer()@Base" 0.8.0 + (c++)"pkgRecords::pkgRecords(pkgCache&)@Base" 0.8.0 + (c++)"pkgRecords::~pkgRecords()@Base" 0.8.0 + (c++)"pkgTagFile::Step(pkgTagSection&)@Base" 0.8.0 + (c++)"pkgTagFile::~pkgTagFile()@Base" 0.8.0 + (c++)"CdromDevice::~CdromDevice()@Base" 0.8.0 + (c++)"CommandLine::DispatchArg(CommandLine::Dispatch*, bool)@Base" 0.8.0 + (c++)"CommandLine::SaveInConfig(unsigned int const&, char const* const*)@Base" 0.8.0 + (c++)"CommandLine::Parse(int, char const**)@Base" 0.8.0 + (c++)"CommandLine::HandleOpt(int&, int, char const**, char const*&, CommandLine::Args*, bool)@Base" 0.8.0 + (c++)"CommandLine::CommandLine(CommandLine::Args*, Configuration*)@Base" 0.8.0 + (c++)"CommandLine::~CommandLine()@Base" 0.8.0 + (c++)"DynamicMMap::WriteString(char const*, unsigned long)@Base" 0.8.0 + (c++)"DynamicMMap::Grow()@Base" 0.8.0 + (c++)"DynamicMMap::Allocate(unsigned long)@Base" 0.8.0 + (c++)"DynamicMMap::DynamicMMap(FileFd&, unsigned long, unsigned long const&, unsigned long const&, unsigned long const&)@Base" 0.8.0 + (c++)"DynamicMMap::DynamicMMap(unsigned long, unsigned long const&, unsigned long const&, unsigned long const&)@Base" 0.8.0 + (c++)"DynamicMMap::~DynamicMMap()@Base" 0.8.0 + (c++)"GlobalError::DumpErrors(std::basic_ostream >&, GlobalError::MsgType const&, bool const&)@Base" 0.8.0 + (c++)"GlobalError::PopMessage(std::basic_string, std::allocator >&)@Base" 0.8.0 + (c++)"GlobalError::InsertErrno(GlobalError::MsgType const&, char const*, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::PushToStack()@Base" 0.8.0 + (c++)"GlobalError::RevertToStack()@Base" 0.8.0 + (c++)"GlobalError::MergeWithStack()@Base" 0.8.0 + (c++)"GlobalError::Debug(char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Errno(char const*, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Error(char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Fatal(char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::DebugE(char const*, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::FatalE(char const*, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Insert(GlobalError::MsgType const&, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Notice(char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Discard()@Base" 0.8.0 + (c++)"GlobalError::NoticeE(char const*, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::Warning(char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::WarningE(char const*, char const*, ...)@Base" 0.8.0 + (c++)"GlobalError::GlobalError()@Base" 0.8.0 + (c++)"PackageCopy::GetFileName()@Base" 0.8.0 + (c++)"PackageCopy::RewriteEntry(_IO_FILE*, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"PackageCopy::Type()@Base" 0.8.0 + (c++)"PackageCopy::~PackageCopy()@Base" 0.8.0 + (c++)"pkgAcqIndex::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcqIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqIndex::DescURI()@Base" 0.8.0 + (c++)"pkgAcqIndex::HashSum()@Base" 0.8.0 + (c++)"pkgAcqIndex::pkgAcqIndex(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, HashString, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqIndex::~pkgAcqIndex()@Base" 0.8.0 + (c++)"pkgDepCache::IsDeleteOk(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.8.0 + (c++)"pkgDepCache::MarkDelete(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.8.0 + (c++)"pkgDepCache::StateCache::StripEpoch(char const*)@Base" 0.8.0 + (c++)"pkgDepCache::StateCache::Update(pkgCache::PkgIterator, pkgCache&)@Base" 0.8.0 + (c++)"pkgDepCache::ActionGroup::release()@Base" 0.8.0 + (c++)"pkgDepCache::ActionGroup::ActionGroup(pkgDepCache&)@Base" 0.8.0 + (c++)"pkgDepCache::ActionGroup::~ActionGroup()@Base" 0.8.0 + (c++)"pkgDepCache::IsInstallOk(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.8.0 + (c++)"pkgDepCache::MarkInstall(pkgCache::PkgIterator const&, bool, unsigned long, bool, bool)@Base" 0.8.0 + (c++)"pkgDepCache::MarkPackage(pkgCache::PkgIterator const&, pkgCache::VerIterator const&, bool const&, bool const&)@Base" 0.8.0 + (c++)"pkgDepCache::MarkRequired(pkgDepCache::InRootSetFunc&)@Base" 0.8.0 + (c++)"pkgDepCache::SetReInstall(pkgCache::PkgIterator const&, bool)@Base" 0.8.0 + (c++)"pkgDepCache::VersionState(pkgCache::DepIterator, unsigned char, unsigned char, unsigned char)@Base" 0.8.0 + (c++)"pkgDepCache::BuildGroupOrs(pkgCache::VerIterator const&)@Base" 0.8.0 + (c++)"pkgDepCache::InRootSetFunc::InRootSet(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgDepCache::InRootSetFunc::~InRootSetFunc()@Base" 0.8.0 + (c++)"pkgDepCache::readStateFile(OpProgress*)@Base" 0.8.0 + (c++)"pkgDepCache::GetRootSetFunc()@Base" 0.8.0 + (c++)"pkgDepCache::UpdateVerState(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgDepCache::writeStateFile(OpProgress*, bool)@Base" 0.8.0 + (c++)"pkgDepCache::DependencyState(pkgCache::DepIterator&)@Base" 0.8.0 + (c++)"pkgDepCache::DefaultRootSetFunc::InRootSet(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgDepCache::DefaultRootSetFunc::~DefaultRootSetFunc()@Base" 0.8.0 + (c++)"pkgDepCache::MarkFollowsSuggests()@Base" 0.8.0 + (c++)"pkgDepCache::MarkFollowsRecommends()@Base" 0.8.0 + (c++)"pkgDepCache::Init(OpProgress*)@Base" 0.8.0 + (c++)"pkgDepCache::Sweep()@Base" 0.8.0 + (c++)"pkgDepCache::Policy::IsImportantDep(pkgCache::DepIterator const&)@Base" 0.8.0 + (c++)"pkgDepCache::Policy::GetCandidateVer(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgDepCache::Policy::~Policy()@Base" 0.8.0 + (c++)"pkgDepCache::Update(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgDepCache::Update(OpProgress*)@Base" 0.8.0 + (c++)"pkgDepCache::Update(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgDepCache::CheckDep(pkgCache::DepIterator, int, pkgCache::PkgIterator&)@Base" 0.8.0 + (c++)"pkgDepCache::MarkAuto(pkgCache::PkgIterator const&, bool)@Base" 0.8.0 + (c++)"pkgDepCache::MarkKeep(pkgCache::PkgIterator const&, bool, bool, unsigned long)@Base" 0.8.0 + (c++)"pkgDepCache::pkgDepCache(pkgCache*, pkgDepCache::Policy*)@Base" 0.8.0 + (c++)"pkgDepCache::~pkgDepCache()@Base" 0.8.0 + (c++)"pkgSimulate::ShortBreaks()@Base" 0.8.0 + (c++)"pkgSimulate::Policy::GetCandidateVer(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgSimulate::Policy::~Policy()@Base" 0.8.0 + (c++)"pkgSimulate::Remove(pkgCache::PkgIterator, bool)@Base" 0.8.0 + (c++)"pkgSimulate::Install(pkgCache::PkgIterator, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgSimulate::Describe(pkgCache::PkgIterator, std::basic_ostream >&, bool, bool)@Base" 0.8.0 + (c++)"pkgSimulate::Configure(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgSimulate::pkgSimulate(pkgDepCache*)@Base" 0.8.0 + (c++)"pkgSimulate::~pkgSimulate()@Base" 0.8.0 + (c++)"debIFTypePkg::~debIFTypePkg()@Base" 0.8.0 + (c++)"debIFTypeSrc::~debIFTypeSrc()@Base" 0.8.0 + (c++)"debSLTypeDeb::~debSLTypeDeb()@Base" 0.8.0 + (c++)"indexRecords::Load(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"indexRecords::Lookup(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"indexRecords::MetaKeys()@Base" 0.8.0 + (c++)"indexRecords::indexRecords(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"indexRecords::indexRecords()@Base" 0.8.0 + (c++)"indexRecords::~indexRecords()@Base" 0.8.0 + (c++)"pkgAcqMethod::FetchResult::TakeHashes(Hashes&)@Base" 0.8.0 + (c++)"pkgAcqMethod::FetchResult::FetchResult()@Base" 0.8.0 + (c++)"pkgAcqMethod::Configuration(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqMethod::Log(char const*, ...)@Base" 0.8.0 + (c++)"pkgAcqMethod::Run(bool)@Base" 0.8.0 + (c++)"pkgAcqMethod::Exit()@Base" 0.8.0 + (c++)"pkgAcqMethod::Fail(std::basic_string, std::allocator >, bool)@Base" 0.8.0 + (c++)"pkgAcqMethod::Fail(bool)@Base" 0.8.0 + (c++)"pkgAcqMethod::Fetch(pkgAcqMethod::FetchItem*)@Base" 0.8.0 + (c++)"pkgAcqMethod::Status(char const*, ...)@Base" 0.8.0 + (c++)"pkgAcqMethod::URIDone(pkgAcqMethod::FetchResult&, pkgAcqMethod::FetchResult*)@Base" 0.8.0 + (c++)"pkgAcqMethod::Redirect(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgAcqMethod::URIStart(pkgAcqMethod::FetchResult&)@Base" 0.8.0 + (c++)"pkgAcqMethod::MediaFail(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqMethod::pkgAcqMethod(char const*, unsigned long)@Base" 0.8.0 + (c++)"pkgAcqMethod::~pkgAcqMethod()@Base" 0.8.0 + (c++)"pkgCacheFile::BuildCaches(OpProgress*, bool)@Base" 0.8.0 + (c++)"pkgCacheFile::BuildPolicy(OpProgress*)@Base" 0.8.0 + (c++)"pkgCacheFile::BuildDepCache(OpProgress*)@Base" 0.8.0 + (c++)"pkgCacheFile::BuildSourceList(OpProgress*)@Base" 0.8.0 + (c++)"pkgCacheFile::Open(OpProgress*, bool)@Base" 0.8.0 + (c++)"pkgCacheFile::Close()@Base" 0.8.0 + (c++)"pkgCacheFile::pkgCacheFile()@Base" 0.8.0 + (c++)"pkgCacheFile::~pkgCacheFile()@Base" 0.8.0 + (c++)"pkgIndexFile::LanguageCode()@Base" 0.8.0 + (c++)"pkgIndexFile::CheckLanguageCode(char const*)@Base" 0.8.0 + (c++)"pkgIndexFile::TranslationsAvailable()@Base" 0.8.0 + (c++)"pkgIndexFile::Type::GlobalList@Base" 0.8.0 + (c++)"pkgIndexFile::Type::GlobalListLen@Base" 0.8.0 + (c++)"pkgIndexFile::Type::GetType(char const*)@Base" 0.8.0 + (c++)"pkgIndexFile::Type::Type()@Base" 0.8.0 + (c++)"pkgOrderList::VisitRDeps(bool (pkgOrderList::*)(pkgCache::DepIterator), pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgOrderList::OrderUnpack(std::basic_string, std::allocator >*)@Base" 0.8.0 + (c++)"pkgOrderList::DepConfigure(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::DepUnPackDep(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::DepUnPackPre(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::DepUnPackCrit(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::DepUnPackPreD(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::OrderCompareA(void const*, void const*)@Base" 0.8.0 + (c++)"pkgOrderList::OrderCompareB(void const*, void const*)@Base" 0.8.0 + (c++)"pkgOrderList::OrderCritical()@Base" 0.8.0 + (c++)"pkgOrderList::VisitProvides(pkgCache::DepIterator, bool)@Base" 0.8.0 + (c++)"pkgOrderList::OrderConfigure()@Base" 0.8.0 + (c++)"pkgOrderList::VisitRProvides(bool (pkgOrderList::*)(pkgCache::DepIterator), pkgCache::VerIterator)@Base" 0.8.0 + (c++)"pkgOrderList::Me@Base" 0.8.0 + (c++)"pkgOrderList::DoRun()@Base" 0.8.0 + (c++)"pkgOrderList::Score(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgOrderList::AddLoop(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::FileCmp(pkgCache::PkgIterator, pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgOrderList::CheckDep(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::DepRemove(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgOrderList::IsMissing(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgOrderList::VisitDeps(bool (pkgOrderList::*)(pkgCache::DepIterator), pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgOrderList::WipeFlags(unsigned long)@Base" 0.8.0 + (c++)"pkgOrderList::pkgOrderList(pkgDepCache*)@Base" 0.8.0 + (c++)"pkgOrderList::~pkgOrderList()@Base" 0.8.0 + (c++)"Configuration::MatchAgainstConfig::MatchAgainstConfig(char const*)@Base" 0.8.0 + (c++)"Configuration::MatchAgainstConfig::~MatchAgainstConfig()@Base" 0.8.0 + (c++)"Configuration::Set(char const*, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"Configuration::Set(char const*, int const&)@Base" 0.8.0 + (c++)"Configuration::Dump(std::basic_ostream >&)@Base" 0.8.0 + (c++)"Configuration::Clear(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"Configuration::Clear(std::basic_string, std::allocator > const&, int const&)@Base" 0.8.0 + (c++)"Configuration::Clear(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"Configuration::CndSet(char const*, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"Configuration::Lookup(char const*, bool const&)@Base" 0.8.0 + (c++)"Configuration::Lookup(Configuration::Item*, char const*, unsigned long const&, bool const&)@Base" 0.8.0 + (c++)"Configuration::Configuration(Configuration::Item const*)@Base" 0.8.0 + (c++)"Configuration::Configuration()@Base" 0.8.0 + (c++)"Configuration::~Configuration()@Base" 0.8.0 + (c++)"WeakPointable::~WeakPointable()@Base" 0.8.0 + (c++)"debListParser::NewVersion(pkgCache::VerIterator&)@Base" 0.8.0 + (c++)"debListParser::UsePackage(pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.0 + (c++)"debListParser::Description()@Base" 0.8.0 + (c++)"debListParser::ParseStatus(pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.0 + (c++)"debListParser::VersionHash()@Base" 0.8.0 + (c++)"debListParser::Architecture()@Base" 0.8.0 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&, bool const&, bool const&)@Base" 0.8.0 + (c++)"debListParser::ParseDepends(pkgCache::VerIterator&, char const*, unsigned int)@Base" 0.8.0 + (c++)"debListParser::ParseProvides(pkgCache::VerIterator&)@Base" 0.8.0 + (c++)"debListParser::ArchitectureAll()@Base" 0.8.0 + (c++)"debListParser::ConvertRelation(char const*, unsigned int&)@Base" 0.8.0 + (c++)"debListParser::Description_md5()@Base" 0.8.0 + (c++)"debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator&, FileFd&, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"debListParser::UniqFindTagWrite(char const*)@Base" 0.8.0 + (c++)"debListParser::DescriptionLanguage()@Base" 0.8.0 + (c++)"debListParser::Size()@Base" 0.8.0 + (c++)"debListParser::Step()@Base" 0.8.0 + (c++)"debListParser::Offset()@Base" 0.8.0 + (c++)"debListParser::GetPrio(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"debListParser::Package()@Base" 0.8.0 + (c++)"debListParser::Version()@Base" 0.8.0 + (c++)"debListParser::GrabWord(std::basic_string, std::allocator >, debListParser::WordList*, unsigned char&)@Base" 0.8.0 + (c++)"debListParser::debListParser(FileFd*, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"debListParser::~debListParser()@Base" 0.8.0 + (c++)"pkgAcqArchive::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqArchive::DescURI()@Base" 0.8.0 + (c++)"pkgAcqArchive::HashSum()@Base" 0.8.0 + (c++)"pkgAcqArchive::Finished()@Base" 0.8.0 + (c++)"pkgAcqArchive::IsTrusted()@Base" 0.8.0 + (c++)"pkgAcqArchive::QueueNext()@Base" 0.8.0 + (c++)"pkgAcqArchive::ShortDesc()@Base" 0.8.0 + (c++)"pkgAcqArchive::pkgAcqArchive(pkgAcquire*, pkgSourceList*, pkgRecords*, pkgCache::VerIterator const&, std::basic_string, std::allocator >&)@Base" 0.8.0 + (c++)"pkgAcqArchive::~pkgAcqArchive()@Base" 0.8.0 + (c++)"pkgAcqMetaSig::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcqMetaSig::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqMetaSig::DescURI()@Base" 0.8.0 + (c++)"pkgAcqMetaSig::~pkgAcqMetaSig()@Base" 0.8.0 + (c++)"pkgSourceList::ReadAppend(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgSourceList::ReadMainList()@Base" 0.8.0 + (c++)"pkgSourceList::ReadSourceDir(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgSourceList::Read(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgSourceList::Type::GlobalList@Base" 0.8.0 + (c++)"pkgSourceList::Type::GlobalListLen@Base" 0.8.0 + (c++)"pkgSourceList::Type::GetType(char const*)@Base" 0.8.0 + (c++)"pkgSourceList::Type::Type()@Base" 0.8.0 + (c++)"pkgSourceList::Reset()@Base" 0.8.0 + (c++)"pkgSourceList::pkgSourceList(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgSourceList::pkgSourceList()@Base" 0.8.0 + (c++)"pkgSourceList::~pkgSourceList()@Base" 0.8.0 + (c++)"pkgSrcRecords::File::~File()@Base" 0.8.0 + (c++)"pkgSrcRecords::Find(char const*, bool const&)@Base" 0.8.0 + (c++)"pkgSrcRecords::Parser::BuildDepRec::~BuildDepRec()@Base" 0.8.0 + (c++)"pkgSrcRecords::Parser::BuildDepType(unsigned char const&)@Base" 0.8.0 + (c++)"pkgSrcRecords::Restart()@Base" 0.8.0 + (c++)"pkgSrcRecords::pkgSrcRecords(pkgSourceList&)@Base" 0.8.0 + (c++)"pkgSrcRecords::~pkgSrcRecords()@Base" 0.8.0 + (c++)"pkgTagSection::TrimRecord(bool, char const*&)@Base" 0.8.0 + (c++)"pkgTagSection::Scan(char const*, unsigned long)@Base" 0.8.0 + (c++)"pkgTagSection::Trim()@Base" 0.8.0 + (c++)"pkgVendorList::CreateList(Configuration&)@Base" 0.8.0 + (c++)"pkgVendorList::FindVendor(std::vector, std::allocator >, std::allocator, std::allocator > > >)@Base" 0.8.0 + (c++)"pkgVendorList::ReadMainList()@Base" 0.8.0 + (c++)"pkgVendorList::LookupFingerprint(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgVendorList::Read(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgVendorList::~pkgVendorList()@Base" 0.8.0 + (c++)"OpTextProgress::Done()@Base" 0.8.0 + (c++)"OpTextProgress::Write(char const*)@Base" 0.8.0 + (c++)"OpTextProgress::Update()@Base" 0.8.0 + (c++)"OpTextProgress::OpTextProgress(Configuration&)@Base" 0.8.0 + (c++)"OpTextProgress::~OpTextProgress()@Base" 0.8.0 + (c++)"debIFTypeTrans::~debIFTypeTrans()@Base" 0.8.0 + (c++)"debStatusIndex::debStatusIndex(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"debStatusIndex::~debStatusIndex()@Base" 0.8.0 + (c++)"debIFTypeStatus::~debIFTypeStatus()@Base" 0.8.0 + (c++)"debRecordParser::Maintainer()@Base" 0.8.0 + (c++)"debRecordParser::SHA256Hash()@Base" 0.8.0 + (c++)"debRecordParser::Jump(pkgCache::VerFileIterator const&)@Base" 0.8.0 + (c++)"debRecordParser::Jump(pkgCache::DescFileIterator const&)@Base" 0.8.0 + (c++)"debRecordParser::Name()@Base" 0.8.0 + (c++)"debRecordParser::GetRec(char const*&, char const*&)@Base" 0.8.0 + (c++)"debRecordParser::MD5Hash()@Base" 0.8.0 + (c++)"debRecordParser::FileName()@Base" 0.8.0 + (c++)"debRecordParser::Homepage()@Base" 0.8.0 + (c++)"debRecordParser::LongDesc()@Base" 0.8.0 + (c++)"debRecordParser::SHA1Hash()@Base" 0.8.0 + (c++)"debRecordParser::ShortDesc()@Base" 0.8.0 + (c++)"debRecordParser::SourcePkg()@Base" 0.8.0 + (c++)"debRecordParser::SourceVer()@Base" 0.8.0 + (c++)"debRecordParser::debRecordParser(std::basic_string, std::allocator >, pkgCache&)@Base" 0.8.0 + (c++)"debRecordParser::~debRecordParser()@Base" 0.8.0 + (c++)"debReleaseIndex::GetIndexFiles()@Base" 0.8.0 + (c++)"debReleaseIndex::debSectionEntry::debSectionEntry(std::basic_string, std::allocator > const&, bool const&)@Base" 0.8.0 + (c++)"debReleaseIndex::PushSectionEntry(debReleaseIndex::debSectionEntry const*)@Base" 0.8.0 + (c++)"debReleaseIndex::PushSectionEntry(std::basic_string, std::allocator > const&, debReleaseIndex::debSectionEntry const*)@Base" 0.8.0 + (c++)"debReleaseIndex::PushSectionEntry(std::vector, std::allocator >, std::allocator, std::allocator > > > const&, debReleaseIndex::debSectionEntry const*)@Base" 0.8.0 + (c++)"debReleaseIndex::debReleaseIndex(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"debReleaseIndex::~debReleaseIndex()@Base" 0.8.0 + (c++)"debSLTypeDebSrc::~debSLTypeDebSrc()@Base" 0.8.0 + (c++)"debSourcesIndex::debSourcesIndex(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, bool)@Base" 0.8.0 + (c++)"debSourcesIndex::~debSourcesIndex()@Base" 0.8.0 + (c++)"pkgAcqDiffIndex::ParseDiffIndex(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqDiffIndex::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcqDiffIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqDiffIndex::DescURI()@Base" 0.8.0 + (c++)"pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, HashString)@Base" 0.8.0 + (c++)"pkgAcqDiffIndex::~pkgAcqDiffIndex()@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::QueueIndexes(bool)@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::VerifyVendor(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::RetrievalDone(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::DescURI()@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::AuthDone(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector > const*, indexRecords*)@Base" 0.8.0 + (c++)"pkgAcqMetaIndex::~pkgAcqMetaIndex()@Base" 0.8.0 + (c++)"pkgVersionMatch::ExpressionMatches(char const*, char const*)@Base" 0.8.0 + (c++)"pkgVersionMatch::ExpressionMatches(std::basic_string, std::allocator > const&, char const*)@Base" 0.8.0 + (c++)"pkgVersionMatch::Find(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgVersionMatch::MatchVer(char const*, std::basic_string, std::allocator >, bool)@Base" 0.8.0 + (c++)"pkgVersionMatch::FileMatch(pkgCache::PkgFileIterator)@Base" 0.8.0 + (c++)"pkgVersionMatch::pkgVersionMatch(std::basic_string, std::allocator >, pkgVersionMatch::MatchType)@Base" 0.8.0 + (c++)"pkgVersionMatch::~pkgVersionMatch()@Base" 0.8.0 + (c++)"TranslationsCopy::CopyTranslations(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, pkgCdromStatus*)@Base" 0.8.0 + (c++)"debPackagesIndex::debPackagesIndex(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"debPackagesIndex::~debPackagesIndex()@Base" 0.8.0 + (c++)"pkgAcqIndexDiffs::QueueNextDiff()@Base" 0.8.0 + (c++)"pkgAcqIndexDiffs::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqIndexDiffs::Finish(bool)@Base" 0.8.0 + (c++)"pkgAcqIndexDiffs::DescURI()@Base" 0.8.0 + (c++)"pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, HashString, std::basic_string, std::allocator >, std::vector >)@Base" 0.8.0 + (c++)"pkgAcqIndexDiffs::~pkgAcqIndexDiffs()@Base" 0.8.0 + (c++)"pkgAcqIndexTrans::Custom600Headers()@Base" 0.8.0 + (c++)"pkgAcqIndexTrans::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.0 + (c++)"pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgAcqIndexTrans::~pkgAcqIndexTrans()@Base" 0.8.0 + (c++)"pkgAcquireStatus::Done(pkgAcquire::ItemDesc&)@Base" 0.8.0 + (c++)"pkgAcquireStatus::Fail(pkgAcquire::ItemDesc&)@Base" 0.8.0 + (c++)"pkgAcquireStatus::Stop()@Base" 0.8.0 + (c++)"pkgAcquireStatus::Fetch(pkgAcquire::ItemDesc&)@Base" 0.8.0 + (c++)"pkgAcquireStatus::Pulse(pkgAcquire*)@Base" 0.8.0 + (c++)"pkgAcquireStatus::Start()@Base" 0.8.0 + (c++)"pkgAcquireStatus::IMSHit(pkgAcquire::ItemDesc&)@Base" 0.8.0 + (c++)"pkgAcquireStatus::pkgAcquireStatus()@Base" 0.8.0 + (c++)"PreferenceSection::TrimRecord(bool, char const*&)@Base" 0.8.0 + (c++)"pkgArchiveCleaner::Go(std::basic_string, std::allocator >, pkgCache&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::ListParser::NewDepends(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, unsigned int, unsigned int)@Base" 0.8.0 + (c++)"pkgCacheGenerator::ListParser::NewProvides(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::ListParser::CollectFileProvides(pkgCache&, pkgCache::VerIterator&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::NewFileVer(pkgCache::VerIterator&, pkgCacheGenerator::ListParser&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::NewPackage(pkgCache::PkgIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::SelectFile(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, pkgIndexFile const&, unsigned long)@Base" 0.8.0 + (c++)"pkgCacheGenerator::FinishCache(OpProgress*)@Base" 0.8.0 + (c++)"pkgCacheGenerator::NewFileDesc(pkgCache::DescIterator&, pkgCacheGenerator::ListParser&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::MakeStatusCache(pkgSourceList&, OpProgress*, MMap**, bool)@Base" 0.8.0 + (c++)"pkgCacheGenerator::WriteUniqString(char const*, unsigned int)@Base" 0.8.0 + (c++)"pkgCacheGenerator::CreateDynamicMMap(FileFd*, unsigned long)@Base" 0.8.0 + (c++)"pkgCacheGenerator::MergeFileProvides(pkgCacheGenerator::ListParser&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::MakeOnlyStatusCache(OpProgress*, DynamicMMap**)@Base" 0.8.0 + (c++)"pkgCacheGenerator::ReMap(void const*, void const*)@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::Dynamic::toReMap@Base" 0.8.0 + (c++)"pkgCacheGenerator::NewGroup(pkgCache::GrpIterator&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCacheGenerator::MergeList(pkgCacheGenerator::ListParser&, pkgCache::VerIterator*)@Base" 0.8.0 + (c++)"pkgCacheGenerator::pkgCacheGenerator(DynamicMMap*, OpProgress*)@Base" 0.8.0 + (c++)"pkgCacheGenerator::~pkgCacheGenerator()@Base" 0.8.0 + (c++)"pkgPackageManager::FixMissing()@Base" 0.8.0 + (c++)"pkgPackageManager::EarlyRemove(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgPackageManager::GetArchives(pkgAcquire*, pkgSourceList*, pkgRecords*)@Base" 0.8.0 + (c++)"pkgPackageManager::SmartRemove(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgPackageManager::SmartUnPack(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgPackageManager::ConfigureAll()@Base" 0.8.0 + (c++)"pkgPackageManager::ImmediateAdd(pkgCache::PkgIterator, bool, unsigned int const&)@Base" 0.8.0 + (c++)"pkgPackageManager::OrderInstall()@Base" 0.8.0 + (c++)"pkgPackageManager::DepAlwaysTrue(pkgCache::DepIterator)@Base" 0.8.0 + (c++)"pkgPackageManager::CheckRConflicts(pkgCache::PkgIterator, pkgCache::DepIterator, char const*)@Base" 0.8.0 + (c++)"pkgPackageManager::CreateOrderList()@Base" 0.8.0 + (c++)"pkgPackageManager::DoInstallPostFork(int)@Base" 0.8.0 + (c++)"pkgPackageManager::Go(int)@Base" 0.8.0 + (c++)"pkgPackageManager::Reset()@Base" 0.8.0 + (c++)"pkgPackageManager::Remove(pkgCache::PkgIterator, bool)@Base" 0.8.0 + (c++)"pkgPackageManager::Install(pkgCache::PkgIterator, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgPackageManager::Configure(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgPackageManager::DoInstall(int)@Base" 0.8.0 + (c++)"pkgPackageManager::pkgPackageManager(pkgDepCache*)@Base" 0.8.0 + (c++)"pkgPackageManager::~pkgPackageManager()@Base" 0.8.0 + (c++)"debSrcRecordParser::BuildDepends(std::vector >&, bool const&, bool const&)@Base" 0.8.0 + (c++)"debSrcRecordParser::Jump(unsigned long const&)@Base" 0.8.0 + (c++)"debSrcRecordParser::Step()@Base" 0.8.0 + (c++)"debSrcRecordParser::AsStr()@Base" 0.8.0 + (c++)"debSrcRecordParser::Files(std::vector >&)@Base" 0.8.0 + (c++)"debSrcRecordParser::Offset()@Base" 0.8.0 + (c++)"debSrcRecordParser::Restart()@Base" 0.8.0 + (c++)"debSrcRecordParser::Binaries()@Base" 0.8.0 + (c++)"debSrcRecordParser::~debSrcRecordParser()@Base" 0.8.0 + (c++)"pkgProblemResolver::MakeScores()@Base" 0.8.0 + (c++)"pkgProblemResolver::ResolveByKeep()@Base" 0.8.0 + (c++)"pkgProblemResolver::InstallProtect()@Base" 0.8.0 + (c++)"pkgProblemResolver::This@Base" 0.8.0 + (c++)"pkgProblemResolver::Resolve(bool)@Base" 0.8.0 + (c++)"pkgProblemResolver::DoUpgrade(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgProblemResolver::ScoreSort(void const*, void const*)@Base" 0.8.0 + (c++)"pkgProblemResolver::pkgProblemResolver(pkgDepCache*)@Base" 0.8.0 + (c++)"pkgProblemResolver::~pkgProblemResolver()@Base" 0.8.0 + (c++)"debVersioningSystem::CmpFragment(char const*, char const*, char const*, char const*)@Base" 0.8.0 + (c++)"debVersioningSystem::DoCmpVersion(char const*, char const*, char const*, char const*)@Base" 0.8.0 + (c++)"debVersioningSystem::DoCmpReleaseVer(char const*, char const*, char const*, char const*)@Base" 0.8.0 + (c++)"debVersioningSystem::UpstreamVersion(char const*)@Base" 0.8.0 + (c++)"debVersioningSystem::CheckDep(char const*, int, char const*)@Base" 0.8.0 + (c++)"debVersioningSystem::debVersioningSystem()@Base" 0.8.0 + (c++)"debVersioningSystem::~debVersioningSystem()@Base" 0.8.0 + (c++)"pkgUdevCdromDevices::Scan()@Base" 0.8.0 + (c++)"pkgUdevCdromDevices::Dlopen()@Base" 0.8.0 + (c++)"pkgUdevCdromDevices::pkgUdevCdromDevices()@Base" 0.8.0 + (c++)"pkgUdevCdromDevices::~pkgUdevCdromDevices()@Base" 0.8.0 + (c++)"pkgVersioningSystem::GlobalList@Base" 0.8.0 + (c++)"pkgVersioningSystem::GlobalListLen@Base" 0.8.0 + (c++)"pkgVersioningSystem::TestCompatibility(pkgVersioningSystem const&)@Base" 0.8.0 + (c++)"pkgVersioningSystem::GetVS(char const*)@Base" 0.8.0 + (c++)"pkgVersioningSystem::pkgVersioningSystem()@Base" 0.8.0 + (c++)"debTranslationsIndex::debTranslationsIndex(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, char const*)@Base" 0.8.0 + (c++)"debTranslationsIndex::~debTranslationsIndex()@Base" 0.8.0 + (c++)"APT::CacheFilter::PackageNameMatchesRegEx::PackageNameMatchesRegEx(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"APT::CacheFilter::PackageNameMatchesRegEx::~PackageNameMatchesRegEx()@Base" 0.8.0 + (c++)"APT::CacheFilter::PackageNameMatchesRegEx::operator()(pkgCache::GrpIterator const&)@Base" 0.8.0 + (c++)"APT::CacheFilter::PackageNameMatchesRegEx::operator()(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"APT::Configuration::getLanguages(bool const&, bool const&, char const**)@Base" 0.8.0 + (c++)"APT::Configuration::getArchitectures(bool const&)@Base" 0.8.0 + (c++)"APT::Configuration::checkArchitecture(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"APT::Configuration::getCompressionTypes(bool const&)@Base" 0.8.0 + (c++)"APT::CacheSetHelper::canNotFindPkgName(pkgCacheFile&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"APT::CacheSetHelper::canNotFindNewestVer(pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"APT::CacheSetHelper::canNotFindCandidateVer(pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"APT::CacheSetHelper::canNotFindInstalledVer(pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"APT::CacheSetHelper::~CacheSetHelper()@Base" 0.8.0 + (c++)"URI::NoUserPassword(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"URI::CopyFrom(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"URI::SiteOnly(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"URI::~URI()@Base" 0.8.0 + (c++)"URI::operator std::basic_string, std::allocator >()@Base" 0.8.0 + (c++)"MMap::Map(FileFd&)@Base" 0.8.0 + (c++)"MMap::Sync(unsigned long, unsigned long)@Base" 0.8.0 + (c++)"MMap::Sync()@Base" 0.8.0 + (c++)"MMap::Close(bool)@Base" 0.8.0 + (c++)"MMap::MMap(FileFd&, unsigned long)@Base" 0.8.0 + (c++)"MMap::MMap(unsigned long)@Base" 0.8.0 + (c++)"MMap::~MMap()@Base" 0.8.0 + (c++)"FileFd::Size()@Base" 0.8.0 + (c++)"FileFd::Sync()@Base" 0.8.0 + (c++)"FileFd::Tell()@Base" 0.8.0 + (c++)"FileFd::Close()@Base" 0.8.0 + (c++)"FileFd::~FileFd()@Base" 0.8.0 + (c++)"Vendor::CheckDist(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"Vendor::Vendor(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector >*)@Base" 0.8.0 + (c++)"Vendor::~Vendor()@Base" 0.8.0 + (c++)"DiffInfo::~DiffInfo()@Base" 0.8.0 + (c++)"pkgCache::CompTypeDeb(unsigned char)@Base" 0.8.0 + (c++)"pkgCache::DepIterator::GlobOr(pkgCache::DepIterator&, pkgCache::DepIterator&)@Base" 0.8.0 + (c++)"pkgCache::DepIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::DepIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::GrpIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::GrpIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::PrvIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::PrvIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::VerIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::VerIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::DescIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::DescIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::PkgFileIterator::IsOk()@Base" 0.8.0 + (c++)"pkgCache::PkgFileIterator::RelStr()@Base" 0.8.0 + (c++)"pkgCache::PkgFileIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::PkgFileIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::VerFileIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::VerFileIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::DescFileIterator::operator++(int)@Base" 0.8.0 + (c++)"pkgCache::DescFileIterator::operator++()@Base" 0.8.0 + (c++)"pkgCache::SingleArchFindPkg(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCache::ReMap(bool const&)@Base" 0.8.0 + (c++)"pkgCache::Header::Header()@Base" 0.8.0 + (c++)"pkgCache::DepType(unsigned char)@Base" 0.8.0 + (c++)"pkgCache::FindGrp(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCache::FindPkg(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCache::FindPkg(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgCache::CompType(unsigned char)@Base" 0.8.0 + (c++)"pkgCache::Priority(unsigned char)@Base" 0.8.0 + (c++)"pkgCache::pkgCache(MMap*, bool)@Base" 0.8.0 + (c++)"pkgCache::~pkgCache()@Base" 0.8.0 + (c++)"pkgCdrom::DropRepeats(std::vector, std::allocator >, std::allocator, std::allocator > > >&, char const*)@Base" 0.8.0 + (c++)"pkgCdrom::FindPackages(std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::basic_string, std::allocator >&, pkgCdromStatus*, unsigned int)@Base" 0.8.0 + (c++)"pkgCdrom::WriteDatabase(Configuration&)@Base" 0.8.0 + (c++)"pkgCdrom::DropBinaryArch(std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.8.0 + (c++)"pkgCdrom::WriteSourceList(std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, bool)@Base" 0.8.0 + (c++)"pkgCdrom::ReduceSourcelist(std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.8.0 + (c++)"pkgCdrom::Add(pkgCdromStatus*)@Base" 0.8.0 + (c++)"pkgCdrom::Ident(std::basic_string, std::allocator >&, pkgCdromStatus*)@Base" 0.8.0 + (c++)"pkgCdrom::Score(std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"IndexCopy::CopyPackages(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, pkgCdromStatus*)@Base" 0.8.0 + (c++)"IndexCopy::ReconstructChop(unsigned long&, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"IndexCopy::ReconstructPrefix(std::basic_string, std::allocator >&, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"IndexCopy::ConvertToSourceList(std::basic_string, std::allocator >, std::basic_string, std::allocator >&)@Base" 0.8.0 + (c++)"IndexCopy::ChopDirs(std::basic_string, std::allocator >, unsigned int)@Base" 0.8.0 + (c++)"IndexCopy::GrabFirst(std::basic_string, std::allocator >, std::basic_string, std::allocator >&, unsigned int)@Base" 0.8.0 + (c++)"SigVerify::CopyAndVerify(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector, std::allocator >, std::allocator, std::allocator > > >&, std::vector, std::allocator >, std::allocator, std::allocator > > >, std::vector, std::allocator >, std::allocator, std::allocator > > >)@Base" 0.8.0 + (c++)"SigVerify::CopyMetaIndex(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"SigVerify::Verify(std::basic_string, std::allocator >, std::basic_string, std::allocator >, indexRecords*)@Base" 0.8.0 + (c++)"SigVerify::RunGPGV(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, int const&, int*)@Base" 0.8.0 + (c++)"debSystem::Initialize(Configuration&)@Base" 0.8.0 + (c++)"debSystem::CheckUpdates()@Base" 0.8.0 + (c++)"debSystem::AddStatusFiles(std::vector >&)@Base" 0.8.0 + (c++)"debSystem::ArchiveSupported(char const*)@Base" 0.8.0 + (c++)"debSystem::Lock()@Base" 0.8.0 + (c++)"debSystem::Score(Configuration const&)@Base" 0.8.0 + (c++)"debSystem::UnLock(bool)@Base" 0.8.0 + (c++)"debSystem::debSystem()@Base" 0.8.0 + (c++)"debSystem::~debSystem()@Base" 0.8.0 + (c++)"pkgDPkgPM::SendV2Pkgs(_IO_FILE*)@Base" 0.8.0 + (c++)"pkgDPkgPM::DoTerminalPty(int)@Base" 0.8.0 + (c++)"pkgDPkgPM::WriteHistoryTag(std::basic_string, std::allocator > const&, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgDPkgPM::WriteApportReport(char const*, char const*)@Base" 0.8.0 + (c++)"pkgDPkgPM::RunScriptsWithPkgs(char const*)@Base" 0.8.0 + (c++)"pkgDPkgPM::handleDisappearAction(std::basic_string, std::allocator > const&)@Base" 0.8.0 + (c++)"pkgDPkgPM::Go(int)@Base" 0.8.0 + (c++)"pkgDPkgPM::Reset()@Base" 0.8.0 + (c++)"pkgDPkgPM::Remove(pkgCache::PkgIterator, bool)@Base" 0.8.0 + (c++)"pkgDPkgPM::DoStdin(int)@Base" 0.8.0 + (c++)"pkgDPkgPM::Install(pkgCache::PkgIterator, std::basic_string, std::allocator >)@Base" 0.8.0 + (c++)"pkgDPkgPM::OpenLog()@Base" 0.8.0 + (c++)"pkgDPkgPM::CloseLog()@Base" 0.8.0 + (c++)"pkgDPkgPM::Configure(pkgCache::PkgIterator)@Base" 0.8.0 + (c++)"pkgDPkgPM::pkgDPkgPM(pkgDepCache*)@Base" 0.8.0 + (c++)"pkgDPkgPM::~pkgDPkgPM()@Base" 0.8.0 + (c++)"pkgPolicy::GetPriority(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgPolicy::InitDefaults()@Base" 0.8.0 + (c++)"pkgPolicy::GetCandidateVer(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgPolicy::PkgPin::~PkgPin()@Base" 0.8.0 + (c++)"pkgPolicy::GetMatch(pkgCache::PkgIterator const&)@Base" 0.8.0 + (c++)"pkgPolicy::CreatePin(pkgVersionMatch::MatchType, std::basic_string, std::allocator >, std::basic_string, std::allocator >, short)@Base" 0.8.0 + (c++)"pkgPolicy::pkgPolicy(pkgCache*)@Base" 0.8.0 + (c++)"pkgPolicy::~pkgPolicy()@Base" 0.8.0 + (c++)"pkgSystem::GlobalList@Base" 0.8.0 + (c++)"pkgSystem::Initialize(Configuration&)@Base" 0.8.0 + (c++)"pkgSystem::GlobalListLen@Base" 0.8.0 + (c++)"pkgSystem::Score(Configuration const&)@Base" 0.8.0 + (c++)"pkgSystem::GetSystem(char const*)@Base" 0.8.0 + (c++)"pkgSystem::pkgSystem()@Base" 0.8.0 + (c++)"HashString::VerifyFile(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"HashString::empty() const@Base" 0.8.0 + (c++)"HashString::toStr() const@Base" 0.8.0 + (c++)"CommandLine::FileSize() const@Base" 0.8.0 + (c++)"GlobalError::empty(GlobalError::MsgType const&) const@Base" 0.8.0 + (c++)"debIFTypePkg::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.0 + (c++)"debSLTypeDeb::CreateItem(std::vector >&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::map, std::allocator >, std::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::basic_string, std::allocator > > > > const&) const@Base" 0.8.0 + (c++)"indexRecords::GetValidUntil() const@Base" 0.8.0 + (c++)"indexRecords::GetExpectedDist() const@Base" 0.8.0 + (c++)"indexRecords::Exists(std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"indexRecords::GetDist() const@Base" 0.8.0 + (c++)"indexRecords::CheckDist(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"pkgIndexFile::ArchiveURI(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"pkgIndexFile::SourceInfo(pkgSrcRecords::Parser const&, pkgSrcRecords::File const&) const@Base" 0.8.0 + (c++)"pkgIndexFile::ArchiveInfo(pkgCache::VerIterator) const@Base" 0.8.0 + (c++)"pkgIndexFile::FindInCache(pkgCache&) const@Base" 0.8.0 + (c++)"pkgIndexFile::CreateSrcParser() const@Base" 0.8.0 + (c++)"pkgIndexFile::MergeFileProvides(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 + (c++)"pkgIndexFile::MergeFileProvides(pkgCacheGenerator&, OpProgress&) const@Base" 0.8.0 + (c++)"pkgIndexFile::Type::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.0 + (c++)"pkgIndexFile::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 + (c++)"pkgIndexFile::Merge(pkgCacheGenerator&, OpProgress&) const@Base" 0.8.0 + (c++)"Configuration::FindVector(char const*) const@Base" 0.8.0 + (c++)"Configuration::MatchAgainstConfig::Match(char const*) const@Base" 0.8.0 + (c++)"Configuration::Find(char const*, char const*) const@Base" 0.8.0 + (c++)"Configuration::Item::FullTag(Configuration::Item const*) const@Base" 0.8.0 + (c++)"Configuration::FindB(char const*, bool const&) const@Base" 0.8.0 + (c++)"Configuration::FindI(char const*, int const&) const@Base" 0.8.0 + (c++)"Configuration::Exists(char const*) const@Base" 0.8.0 + (c++)"Configuration::FindAny(char const*, char const*) const@Base" 0.8.0 + (c++)"Configuration::FindDir(char const*, char const*) const@Base" 0.8.0 + (c++)"Configuration::FindFile(char const*, char const*) const@Base" 0.8.0 + (c++)"Configuration::ExistsAny(char const*) const@Base" 0.8.0 + (c++)"pkgSourceList::GetIndexes(pkgAcquire*, bool) const@Base" 0.8.0 + (c++)"pkgSourceList::Type::FixupURI(std::basic_string, std::allocator >&) const@Base" 0.8.0 + (c++)"pkgSourceList::Type::ParseLine(std::vector >&, char const*, unsigned long const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"pkgSourceList::FindIndex(pkgCache::PkgFileIterator, pkgIndexFile*&) const@Base" 0.8.0 + (c++)"pkgTagSection::Find(char const*, char const*&, char const*&) const@Base" 0.8.0 + (c++)"pkgTagSection::Find(char const*, unsigned int&) const@Base" 0.8.0 + (c++)"pkgTagSection::FindI(char const*, long) const@Base" 0.8.0 + (c++)"pkgTagSection::FindS(char const*) const@Base" 0.8.0 + (c++)"pkgTagSection::FindULL(char const*, unsigned long long const&) const@Base" 0.8.0 + (c++)"pkgTagSection::FindFlag(char const*, unsigned long&, unsigned long) const@Base" 0.8.0 + (c++)"debStatusIndex::FindInCache(pkgCache&) const@Base" 0.8.0 + (c++)"debStatusIndex::HasPackages() const@Base" 0.8.0 + (c++)"debStatusIndex::Size() const@Base" 0.8.0 + (c++)"debStatusIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 + (c++)"debStatusIndex::Exists() const@Base" 0.8.0 + (c++)"debStatusIndex::GetType() const@Base" 0.8.0 + (c++)"debStatusIndex::Describe(bool) const@Base" 0.8.0 + (c++)"debIFTypeStatus::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.0 + (c++)"debReleaseIndex::ArchiveURI(std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::GetIndexes(pkgAcquire*, bool const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::MetaIndexURI(char const*) const@Base" 0.8.0 + (c++)"debReleaseIndex::MetaIndexFile(char const*) const@Base" 0.8.0 + (c++)"debReleaseIndex::MetaIndexInfo(char const*) const@Base" 0.8.0 + (c++)"debReleaseIndex::IndexURISuffix(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::SourceIndexURI(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::ComputeIndexTargets() const@Base" 0.8.0 + (c++)"debReleaseIndex::SourceIndexURISuffix(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::Info(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::IndexURI(char const*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"debReleaseIndex::IsTrusted() const@Base" 0.8.0 + (c++)"debSLTypeDebSrc::CreateItem(std::vector >&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::map, std::allocator >, std::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::basic_string, std::allocator > > > > const&) const@Base" 0.8.0 + (c++)"debSLTypeDebian::CreateItemInternal(std::vector >&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool const&, std::map, std::allocator >, std::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::basic_string, std::allocator > > > > const&) const@Base" 0.8.0 + (c++)"debSourcesIndex::ArchiveURI(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"debSourcesIndex::SourceInfo(pkgSrcRecords::Parser const&, pkgSrcRecords::File const&) const@Base" 0.8.0 + (c++)"debSourcesIndex::HasPackages() const@Base" 0.8.0 + (c++)"debSourcesIndex::CreateSrcParser() const@Base" 0.8.0 + (c++)"debSourcesIndex::Info(char const*) const@Base" 0.8.0 + (c++)"debSourcesIndex::Size() const@Base" 0.8.0 + (c++)"debSourcesIndex::Exists() const@Base" 0.8.0 + (c++)"debSourcesIndex::GetType() const@Base" 0.8.0 + (c++)"debSourcesIndex::Describe(bool) const@Base" 0.8.0 + (c++)"debSourcesIndex::IndexURI(char const*) const@Base" 0.8.0 + (c++)"debPackagesIndex::ArchiveURI(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"debPackagesIndex::ArchiveInfo(pkgCache::VerIterator) const@Base" 0.8.0 + (c++)"debPackagesIndex::FindInCache(pkgCache&) const@Base" 0.8.0 + (c++)"debPackagesIndex::HasPackages() const@Base" 0.8.0 + (c++)"debPackagesIndex::Info(char const*) const@Base" 0.8.0 + (c++)"debPackagesIndex::Size() const@Base" 0.8.0 + (c++)"debPackagesIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 + (c++)"debPackagesIndex::Exists() const@Base" 0.8.0 + (c++)"debPackagesIndex::GetType() const@Base" 0.8.0 + (c++)"debPackagesIndex::Describe(bool) const@Base" 0.8.0 + (c++)"debPackagesIndex::IndexURI(char const*) const@Base" 0.8.0 + (c++)"debSrcRecordParser::Maintainer() const@Base" 0.8.0 + (c++)"debSrcRecordParser::Package() const@Base" 0.8.0 + (c++)"debSrcRecordParser::Section() const@Base" 0.8.0 + (c++)"debSrcRecordParser::Version() const@Base" 0.8.0 + (c++)"debTranslationsIndex::GetIndexes(pkgAcquire*) const@Base" 0.8.0 + (c++)"debTranslationsIndex::FindInCache(pkgCache&) const@Base" 0.8.0 + (c++)"debTranslationsIndex::HasPackages() const@Base" 0.8.0 + (c++)"debTranslationsIndex::Info(char const*) const@Base" 0.8.0 + (c++)"debTranslationsIndex::Size() const@Base" 0.8.0 + (c++)"debTranslationsIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.0 + (c++)"debTranslationsIndex::Exists() const@Base" 0.8.0 + (c++)"debTranslationsIndex::GetType() const@Base" 0.8.0 + (c++)"debTranslationsIndex::Describe(bool) const@Base" 0.8.0 + (c++)"debTranslationsIndex::IndexURI(char const*) const@Base" 0.8.0 + (c++)"Vendor::GetVendorID() const@Base" 0.8.0 + (c++)"Vendor::LookupFingerprint(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"pkgCache::DepIterator::AllTargets() const@Base" 0.8.0 + (c++)"pkgCache::DepIterator::IsCritical() const@Base" 0.8.0 + (c++)"pkgCache::DepIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::DepIterator::SmartTargetPkg(pkgCache::PkgIterator&) const@Base" 0.8.0 + (c++)"pkgCache::GrpIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::GrpIterator::FindPreferredPkg(bool const&) const@Base" 0.8.0 + (c++)"pkgCache::GrpIterator::FindPkg(std::basic_string, std::allocator >) const@Base" 0.8.0 + (c++)"pkgCache::GrpIterator::NextPkg(pkgCache::PkgIterator const&) const@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::CurVersion() const@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::CandVersion() const@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::State() const@Base" 0.8.0 + (c++)"pkgCache::PkgIterator::FullName(bool const&) const@Base" 0.8.0 + (c++)"pkgCache::PrvIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::CompareVer(pkgCache::VerIterator const&) const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::NewestFile() const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::Downloadable() const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::TranslatedDescription() const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::RelStr() const@Base" 0.8.0 + (c++)"pkgCache::VerIterator::Automatic() const@Base" 0.8.0 + (c++)"pkgCache::DescIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::PkgFileIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::VerFileIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::DescFileIterator::OwnerPointer() const@Base" 0.8.0 + (c++)"pkgCache::sHash(char const*) const@Base" 0.8.0 + (c++)"pkgCache::sHash(std::basic_string, std::allocator > const&) const@Base" 0.8.0 + (c++)"pkgCache::Header::CheckSizes(pkgCache::Header&) const@Base" 0.8.0 + (c++)"debSystem::CreatePM(pkgDepCache*) const@Base" 0.8.0 + (c++)"debSystem::FindIndex(pkgCache::PkgFileIterator, pkgIndexFile*&) const@Base" 0.8.0 + (c++)"metaIndex::GetURI() const@Base" 0.8.0 + (c++)"metaIndex::GetDist() const@Base" 0.8.0 + (c++)"metaIndex::GetType() const@Base" 0.8.0 + (c++)"typeinfo for OpProgress@Base" 0.8.0 + (c++)"typeinfo for SourceCopy@Base" 0.8.0 + (c++)"typeinfo for pkgAcqFile@Base" 0.8.0 + (c++)"typeinfo for pkgAcquire@Base" 0.8.0 + (c++)"typeinfo for DynamicMMap@Base" 0.8.0 + (c++)"typeinfo for PackageCopy@Base" 0.8.0 + (c++)"typeinfo for pkgAcqIndex@Base" 0.8.0 + (c++)"typeinfo for pkgDepCache@Base" 0.8.0 + (c++)"typeinfo for pkgSimulate@Base" 0.8.0 + (c++)"typeinfo for debIFTypePkg@Base" 0.8.0 + (c++)"typeinfo for debIFTypeSrc@Base" 0.8.0 + (c++)"typeinfo for debSLTypeDeb@Base" 0.8.0 + (c++)"typeinfo for indexRecords@Base" 0.8.0 + (c++)"typeinfo for pkgAcqMethod@Base" 0.8.0 + (c++)"typeinfo for pkgCacheFile@Base" 0.8.0 + (c++)"typeinfo for pkgIndexFile@Base" 0.8.0 + (c++)"typeinfo for WeakPointable@Base" 0.8.0 + (c++)"typeinfo for debListParser@Base" 0.8.0 + (c++)"typeinfo for pkgAcqArchive@Base" 0.8.0 + (c++)"typeinfo for pkgAcqMetaSig@Base" 0.8.0 + (c++)"typeinfo for pkgTagSection@Base" 0.8.0 + (c++)"typeinfo for OpTextProgress@Base" 0.8.0 + (c++)"typeinfo for debIFTypeTrans@Base" 0.8.0 + (c++)"typeinfo for debStatusIndex@Base" 0.8.0 + (c++)"typeinfo for debIFTypeStatus@Base" 0.8.0 + (c++)"typeinfo for debRecordParser@Base" 0.8.0 + (c++)"typeinfo for debReleaseIndex@Base" 0.8.0 + (c++)"typeinfo for debSLTypeDebSrc@Base" 0.8.0 + (c++)"typeinfo for debSLTypeDebian@Base" 0.8.0 + (c++)"typeinfo for debSourcesIndex@Base" 0.8.0 + (c++)"typeinfo for pkgAcqDiffIndex@Base" 0.8.0 + (c++)"typeinfo for pkgAcqMetaIndex@Base" 0.8.0 + (c++)"typeinfo for debPackagesIndex@Base" 0.8.0 + (c++)"typeinfo for pkgAcqIndexDiffs@Base" 0.8.0 + (c++)"typeinfo for pkgAcqIndexTrans@Base" 0.8.0 + (c++)"typeinfo for pkgAcquireStatus@Base" 0.8.0 + (c++)"typeinfo for PreferenceSection@Base" 0.8.0 + (c++)"typeinfo for pkgPackageManager@Base" 0.8.0 + (c++)"typeinfo for debSrcRecordParser@Base" 0.8.0 + (c++)"typeinfo for debVersioningSystem@Base" 0.8.0 + (c++)"typeinfo for pkgUdevCdromDevices@Base" 0.8.0 + (c++)"typeinfo for pkgVersioningSystem@Base" 0.8.0 + (c++)"typeinfo for debTranslationsIndex@Base" 0.8.0 + (c++)"typeinfo for MMap@Base" 0.8.0 + (c++)"typeinfo for FileFd@Base" 0.8.0 + (c++)"typeinfo for Vendor@Base" 0.8.0 + (c++)"typeinfo for pkgCache@Base" 0.8.0 + (c++)"typeinfo for IndexCopy@Base" 0.8.0 + (c++)"typeinfo for debSystem@Base" 0.8.0 + (c++)"typeinfo for metaIndex@Base" 0.8.0 + (c++)"typeinfo for pkgDPkgPM@Base" 0.8.0 + (c++)"typeinfo for pkgPolicy@Base" 0.8.0 + (c++)"typeinfo for pkgSystem@Base" 0.8.0 + (c++)"typeinfo for pkgAcquire::Item@Base" 0.8.0 + (c++)"typeinfo for pkgRecords::Parser@Base" 0.8.0 + (c++)"typeinfo for pkgDepCache::InRootSetFunc@Base" 0.8.0 + (c++)"typeinfo for pkgDepCache::DefaultRootSetFunc@Base" 0.8.0 + (c++)"typeinfo for pkgDepCache::Policy@Base" 0.8.0 + (c++)"typeinfo for pkgSimulate::Policy@Base" 0.8.0 + (c++)"typeinfo for pkgIndexFile::Type@Base" 0.8.0 + (c++)"typeinfo for Configuration::MatchAgainstConfig@Base" 0.8.0 + (c++)"typeinfo for pkgSourceList::Type@Base" 0.8.0 + (c++)"typeinfo for pkgSrcRecords::Parser@Base" 0.8.0 + (c++)"typeinfo for pkgCacheGenerator::ListParser@Base" 0.8.0 + (c++)"typeinfo for APT::CacheSetHelper@Base" 0.8.0 + (c++)"typeinfo for pkgCache::DepIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::GrpIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::PkgIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::PrvIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::VerIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::DescIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::PkgFileIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::VerFileIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::DescFileIterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo for pkgCache::Namespace@Base" 0.8.0 + (c++)"typeinfo name for OpProgress@Base" 0.8.0 + (c++)"typeinfo name for SourceCopy@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqFile@Base" 0.8.0 + (c++)"typeinfo name for pkgAcquire@Base" 0.8.0 + (c++)"typeinfo name for DynamicMMap@Base" 0.8.0 + (c++)"typeinfo name for PackageCopy@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqIndex@Base" 0.8.0 + (c++)"typeinfo name for pkgDepCache@Base" 0.8.0 + (c++)"typeinfo name for pkgSimulate@Base" 0.8.0 + (c++)"typeinfo name for debIFTypePkg@Base" 0.8.0 + (c++)"typeinfo name for debIFTypeSrc@Base" 0.8.0 + (c++)"typeinfo name for debSLTypeDeb@Base" 0.8.0 + (c++)"typeinfo name for indexRecords@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqMethod@Base" 0.8.0 + (c++)"typeinfo name for pkgCacheFile@Base" 0.8.0 + (c++)"typeinfo name for pkgIndexFile@Base" 0.8.0 + (c++)"typeinfo name for WeakPointable@Base" 0.8.0 + (c++)"typeinfo name for debListParser@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqArchive@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqMetaSig@Base" 0.8.0 + (c++)"typeinfo name for pkgTagSection@Base" 0.8.0 + (c++)"typeinfo name for OpTextProgress@Base" 0.8.0 + (c++)"typeinfo name for debIFTypeTrans@Base" 0.8.0 + (c++)"typeinfo name for debStatusIndex@Base" 0.8.0 + (c++)"typeinfo name for debIFTypeStatus@Base" 0.8.0 + (c++)"typeinfo name for debRecordParser@Base" 0.8.0 + (c++)"typeinfo name for debReleaseIndex@Base" 0.8.0 + (c++)"typeinfo name for debSLTypeDebSrc@Base" 0.8.0 + (c++)"typeinfo name for debSLTypeDebian@Base" 0.8.0 + (c++)"typeinfo name for debSourcesIndex@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqDiffIndex@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqMetaIndex@Base" 0.8.0 + (c++)"typeinfo name for debPackagesIndex@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqIndexDiffs@Base" 0.8.0 + (c++)"typeinfo name for pkgAcqIndexTrans@Base" 0.8.0 + (c++)"typeinfo name for pkgAcquireStatus@Base" 0.8.0 + (c++)"typeinfo name for PreferenceSection@Base" 0.8.0 + (c++)"typeinfo name for pkgPackageManager@Base" 0.8.0 + (c++)"typeinfo name for debSrcRecordParser@Base" 0.8.0 + (c++)"typeinfo name for debVersioningSystem@Base" 0.8.0 + (c++)"typeinfo name for pkgUdevCdromDevices@Base" 0.8.0 + (c++)"typeinfo name for pkgVersioningSystem@Base" 0.8.0 + (c++)"typeinfo name for debTranslationsIndex@Base" 0.8.0 + (c++)"typeinfo name for MMap@Base" 0.8.0 + (c++)"typeinfo name for FileFd@Base" 0.8.0 + (c++)"typeinfo name for Vendor@Base" 0.8.0 + (c++)"typeinfo name for pkgCache@Base" 0.8.0 + (c++)"typeinfo name for IndexCopy@Base" 0.8.0 + (c++)"typeinfo name for debSystem@Base" 0.8.0 + (c++)"typeinfo name for metaIndex@Base" 0.8.0 + (c++)"typeinfo name for pkgDPkgPM@Base" 0.8.0 + (c++)"typeinfo name for pkgPolicy@Base" 0.8.0 + (c++)"typeinfo name for pkgSystem@Base" 0.8.0 + (c++)"typeinfo name for pkgAcquire::Item@Base" 0.8.0 + (c++)"typeinfo name for pkgRecords::Parser@Base" 0.8.0 + (c++)"typeinfo name for pkgDepCache::InRootSetFunc@Base" 0.8.0 + (c++)"typeinfo name for pkgDepCache::DefaultRootSetFunc@Base" 0.8.0 + (c++)"typeinfo name for pkgDepCache::Policy@Base" 0.8.0 + (c++)"typeinfo name for pkgSimulate::Policy@Base" 0.8.0 + (c++)"typeinfo name for pkgIndexFile::Type@Base" 0.8.0 + (c++)"typeinfo name for Configuration::MatchAgainstConfig@Base" 0.8.0 + (c++)"typeinfo name for pkgSourceList::Type@Base" 0.8.0 + (c++)"typeinfo name for pkgSrcRecords::Parser@Base" 0.8.0 + (c++)"typeinfo name for pkgCacheGenerator::ListParser@Base" 0.8.0 + (c++)"typeinfo name for APT::CacheSetHelper@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::DepIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::GrpIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::PkgIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::PrvIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::VerIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::DescIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::PkgFileIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::VerFileIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::DescFileIterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Iterator@Base" 0.8.0 + (c++)"typeinfo name for pkgCache::Namespace@Base" 0.8.0 + (c++)"vtable for OpProgress@Base" 0.8.0 + (c++)"vtable for SourceCopy@Base" 0.8.0 + (c++)"vtable for pkgAcqFile@Base" 0.8.0 + (c++)"vtable for pkgAcquire@Base" 0.8.0 + (c++)"vtable for DynamicMMap@Base" 0.8.0 + (c++)"vtable for PackageCopy@Base" 0.8.0 + (c++)"vtable for pkgAcqIndex@Base" 0.8.0 + (c++)"vtable for pkgDepCache@Base" 0.8.0 + (c++)"vtable for pkgSimulate@Base" 0.8.0 + (c++)"vtable for debIFTypePkg@Base" 0.8.0 + (c++)"vtable for debIFTypeSrc@Base" 0.8.0 + (c++)"vtable for debSLTypeDeb@Base" 0.8.0 + (c++)"vtable for indexRecords@Base" 0.8.0 + (c++)"vtable for pkgAcqMethod@Base" 0.8.0 + (c++)"vtable for pkgCacheFile@Base" 0.8.0 + (c++)"vtable for pkgIndexFile@Base" 0.8.0 + (c++)"vtable for debListParser@Base" 0.8.0 + (c++)"vtable for pkgAcqArchive@Base" 0.8.0 + (c++)"vtable for pkgAcqMetaSig@Base" 0.8.0 + (c++)"vtable for pkgTagSection@Base" 0.8.0 + (c++)"vtable for OpTextProgress@Base" 0.8.0 + (c++)"vtable for debIFTypeTrans@Base" 0.8.0 + (c++)"vtable for debStatusIndex@Base" 0.8.0 + (c++)"vtable for debIFTypeStatus@Base" 0.8.0 + (c++)"vtable for debRecordParser@Base" 0.8.0 + (c++)"vtable for debReleaseIndex@Base" 0.8.0 + (c++)"vtable for debSLTypeDebSrc@Base" 0.8.0 + (c++)"vtable for debSLTypeDebian@Base" 0.8.0 + (c++)"vtable for debSourcesIndex@Base" 0.8.0 + (c++)"vtable for pkgAcqDiffIndex@Base" 0.8.0 + (c++)"vtable for pkgAcqMetaIndex@Base" 0.8.0 + (c++)"vtable for debPackagesIndex@Base" 0.8.0 + (c++)"vtable for pkgAcqIndexDiffs@Base" 0.8.0 + (c++)"vtable for pkgAcqIndexTrans@Base" 0.8.0 + (c++)"vtable for pkgAcquireStatus@Base" 0.8.0 + (c++)"vtable for PreferenceSection@Base" 0.8.0 + (c++)"vtable for pkgPackageManager@Base" 0.8.0 + (c++)"vtable for debSrcRecordParser@Base" 0.8.0 + (c++)"vtable for debVersioningSystem@Base" 0.8.0 + (c++)"vtable for pkgUdevCdromDevices@Base" 0.8.0 + (c++)"vtable for pkgVersioningSystem@Base" 0.8.0 + (c++)"vtable for debTranslationsIndex@Base" 0.8.0 + (c++)"vtable for MMap@Base" 0.8.0 + (c++)"vtable for FileFd@Base" 0.8.0 + (c++)"vtable for Vendor@Base" 0.8.0 + (c++)"vtable for pkgCache@Base" 0.8.0 + (c++)"vtable for IndexCopy@Base" 0.8.0 + (c++)"vtable for debSystem@Base" 0.8.0 + (c++)"vtable for metaIndex@Base" 0.8.0 + (c++)"vtable for pkgDPkgPM@Base" 0.8.0 + (c++)"vtable for pkgPolicy@Base" 0.8.0 + (c++)"vtable for pkgSystem@Base" 0.8.0 + (c++)"vtable for pkgAcquire::Item@Base" 0.8.0 + (c++)"vtable for pkgRecords::Parser@Base" 0.8.0 + (c++)"vtable for pkgDepCache::InRootSetFunc@Base" 0.8.0 + (c++)"vtable for pkgDepCache::DefaultRootSetFunc@Base" 0.8.0 + (c++)"vtable for pkgDepCache::Policy@Base" 0.8.0 + (c++)"vtable for pkgSimulate::Policy@Base" 0.8.0 + (c++)"vtable for pkgIndexFile::Type@Base" 0.8.0 + (c++)"vtable for Configuration::MatchAgainstConfig@Base" 0.8.0 + (c++)"vtable for pkgSourceList::Type@Base" 0.8.0 + (c++)"vtable for pkgSrcRecords::Parser@Base" 0.8.0 + (c++)"vtable for pkgCacheGenerator::ListParser@Base" 0.8.0 + (c++)"vtable for APT::CacheSetHelper@Base" 0.8.0 + (c++)"vtable for pkgCache::DepIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::GrpIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::PkgIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::PrvIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::VerIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::DescIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::PkgFileIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::VerFileIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::DescFileIterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"vtable for pkgCache::Iterator@Base" 0.8.0 + (c++)"non-virtual thunk to pkgDepCache::DefaultRootSetFunc::~DefaultRootSetFunc()@Base" 0.8.0 + (c++)"operator<<(std::basic_ostream >&, pkgCache::DepIterator)@Base" 0.8.0 + (c++)"operator<<(std::basic_ostream >&, pkgCache::PkgIterator)@Base" 0.8.0 + _apt_DebSrcType@Base 0.8.0 + _apt_DebType@Base 0.8.0 + _config@Base 0.8.0 + _system@Base 0.8.0 + debSys@Base 0.8.0 + debVS@Base 0.8.0 + pkgLibVersion@Base 0.8.0 + pkgVersion@Base 0.8.0 +### architecture specific: va_list + (arch=armel armhf|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, std::__va_list&) const@Base" 0.8.15~exp1 + (arch=i386 hurd-i386 kfreebsd-i386 ppc64|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, char*&) const@Base" 0.8.15~exp1 + (arch=hppa ia64 mips mipsel sparc sparc64|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, void*&) const@Base" 0.8.15~exp1 + (arch=amd64 kfreebsd-amd64 powerpc powerpcspe s390 s390x x32|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, __va_list_tag (&) [1]) const@Base" 0.8.15~exp1 + (arch=sh4|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, __builtin_va_list&) const@Base" 0.8.15~exp1 + (arch=alpha|c++)"pkgAcqMethod::PrintStatus(char const*, char const*, __va_list_tag&) const@Base" 0.8.15~exp1 +### architecture specific: va_list & size_t + (arch=i386 hurd-i386 kfreebsd-i386|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, char*&, unsigned int&)@Base" 0.8.11.4 + (arch=armel armhf|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, std::__va_list&, unsigned int&)@Base" 0.8.11.4 + (arch=alpha|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag&, unsigned long&)@Base" 0.8.11.4 + (arch=powerpc powerpcspe x32|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag (&) [1], unsigned int&)@Base" 0.8.11.4 + (arch=amd64 kfreebsd-amd64 s390 s390x|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __va_list_tag (&) [1], unsigned long&)@Base" 0.8.11.4 + (arch=hppa mips mipsel sparc|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, void*&, unsigned int&)@Base" 0.8.11.4 + (arch=ia64 sparc64|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, void*&, unsigned long&)@Base" 0.8.11.4 + (arch=sh4|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, __builtin_va_list&, unsigned int&)@Base" 0.8.11.4 + (arch=ppc64|c++)"GlobalError::Insert(GlobalError::MsgType, char const*, char*&, unsigned long&)@Base" 0.8.11.4 + (arch=i386 hurd-i386 kfreebsd-i386|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, char*&, int, unsigned int&)@Base" 0.8.11.4 + (arch=armel armhf|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, std::__va_list&, int, unsigned int&)@Base" 0.8.11.4 + (arch=alpha|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag&, int, unsigned long&)@Base" 0.8.11.4 + (arch=powerpc powerpcspe x32|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag (&) [1], int, unsigned int&)@Base" 0.8.11.4 + (arch=amd64 kfreebsd-amd64 s390 s390x|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __va_list_tag (&) [1], int, unsigned long&)@Base" 0.8.11.4 + (arch=hppa mips mipsel sparc|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, void*&, int, unsigned int&)@Base" 0.8.11.4 + (arch=ia64 sparc64|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, void*&, int, unsigned long&)@Base" 0.8.11.4 1 + (arch=sh4|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, __builtin_va_list&, int, unsigned int&)@Base" 0.8.11.4 + (arch=ppc64|c++)"GlobalError::InsertErrno(GlobalError::MsgType, char const*, char const*, char*&, int, unsigned long&)@Base" 0.8.11.4 +### architecture specific: size_t + (arch=i386 armel armhf hppa hurd-i386 kfreebsd-i386 mips mipsel powerpc powerpcspe sh4 sparc x32|c++)"_strtabexpand(char*, unsigned int)@Base" 0.8.0 + (arch=alpha amd64 ia64 kfreebsd-amd64 s390 s390x sparc64 ppc64|c++)"_strtabexpand(char*, unsigned long)@Base" 0.8.0 +### architecture specific: time_t + (arch=!x32|c++)"TimeRFC1123(long)@Base" 0.8.0 + (arch=x32|c++)"TimeRFC1123(long long)@Base" 0.8.0 + (arch=!x32|c++)"FTPMDTMStrToTime(char const*, long&)@Base" 0.8.0 + (arch=x32|c++)"FTPMDTMStrToTime(char const*, long long&)@Base" 0.8.0 + (arch=!x32|c++)"StrToTime(std::basic_string, std::allocator > const&, long&)@Base" 0.8.0 + (arch=x32|c++)"StrToTime(std::basic_string, std::allocator > const&, long long&)@Base" 0.8.0 + (arch=!x32|c++)"RFC1123StrToTime(char const*, long&)@Base" 0.8.0 + (arch=x32|c++)"RFC1123StrToTime(char const*, long long&)@Base" 0.8.0 +### + (c++)"Configuration::MatchAgainstConfig::clearPatterns()@Base" 0.8.1 + (c++)"CreateAPTDirectoryIfNeeded(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.2 + (c++)"FileFd::FileSize()@Base" 0.8.8 + (c++)"Base256ToNum(char const*, unsigned long&, unsigned int)@Base" 0.8.11 + (c++)"pkgDepCache::SetCandidateRelease(pkgCache::VerIterator, std::basic_string, std::allocator > const&, std::list, std::allocator > >&)@Base" 0.8.11 + (c++)"pkgDepCache::SetCandidateRelease(pkgCache::VerIterator, std::basic_string, std::allocator > const&)@Base" 0.8.11 + (c++)"RealFileExists(std::basic_string, std::allocator >)@Base" 0.8.11 + (c++)"StripEpoch(std::basic_string, std::allocator > const&)@Base" 0.8.11 + (c++)"pkgAcqIndex::Init(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.11 + (c++)"pkgAcqIndex::pkgAcqIndex(pkgAcquire*, IndexTarget const*, HashString const&, indexRecords const*)@Base" 0.8.11 + (c++)"pkgTagSection::FindFlag(unsigned long&, unsigned long, char const*, char const*)@Base" 0.8.11 + (c++)"pkgAcqSubIndex::ParseIndex(std::basic_string, std::allocator > const&)@Base" 0.8.11 + (c++)"pkgAcqSubIndex::Custom600Headers()@Base" 0.8.11 + (c++)"pkgAcqSubIndex::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.11 + (c++)"pkgAcqSubIndex::DescURI()@Base" 0.8.11 + (c++)"pkgAcqSubIndex::pkgAcqSubIndex(pkgAcquire*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, HashString const&)@Base" 0.8.11 + (c++)"pkgAcqSubIndex::~pkgAcqSubIndex()@Base" 0.8.11 + (c++)"pkgAcqMetaClearSig::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.11 + (c++)"pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::vector > const*, indexRecords*)@Base" 0.8.11 + (c++)"pkgAcqMetaClearSig::~pkgAcqMetaClearSig()@Base" 0.8.11 + (c++)"pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire*, IndexTarget const*, HashString const&, indexRecords const*)@Base" 0.8.11 + (c++)"IndexTarget::IsOptional() const@Base" 0.8.11 + (c++)"IndexTarget::IsSubIndex() const@Base" 0.8.11 + (c++)"debReleaseIndex::TranslationIndexURI(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.11 + (c++)"debReleaseIndex::TranslationIndexURISuffix(char const*, std::basic_string, std::allocator > const&) const@Base" 0.8.11 + (c++)"typeinfo for pkgAcqSubIndex@Base" 0.8.11 + (c++)"typeinfo for pkgAcqMetaClearSig@Base" 0.8.11 + (c++)"typeinfo name for pkgAcqSubIndex@Base" 0.8.11 + (c++)"typeinfo name for pkgAcqMetaClearSig@Base" 0.8.11 + (c++)"vtable for pkgAcqSubIndex@Base" 0.8.11 + (c++)"vtable for pkgAcqMetaClearSig@Base" 0.8.11 + (c++)"FindMountPointForDevice(char const*)@Base" 0.8.12 + (c++)"pkgUdevCdromDevices::ScanForRemovable(bool)@Base" 0.8.12 + (c++)"APT::Configuration::Compressor::Compressor(char const*, char const*, char const*, char const*, char const*, unsigned short)@Base" 0.8.12 + (c++)"APT::Configuration::Compressor::~Compressor()@Base" 0.8.12 + (c++)"APT::Configuration::getCompressors(bool)@Base" 0.8.12 + (c++)"APT::Configuration::getCompressorExtensions()@Base" 0.8.12 + (c++)"APT::Configuration::setDefaultConfigurationForCompressors()@Base" 0.8.12 + (c++)"pkgAcqMetaClearSig::Custom600Headers()@Base" 0.8.13 + (c++)"debListParser::NewProvidesAllArch(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.8.13.2 + (c++)"pkgDepCache::IsModeChangeOk(pkgDepCache::ModeList, pkgCache::PkgIterator const&, unsigned long, bool)@Base" 0.8.13.2 + (c++)"pkgCache::DepIterator::IsNegative() const@Base" 0.8.15~exp1 + (c++)"Configuration::CndSet(char const*, int)@Base" 0.8.15.3 + (c++)"pkgProblemResolver::InstOrNewPolicyBroken(pkgCache::PkgIterator)@Base" 0.8.15.3 + (c++)"DeEscapeString(std::basic_string, std::allocator > const&)@Base" 0.8.15.4 + (c++)"GetModificationTime(std::basic_string, std::allocator > const&)@Base" 0.8.15.6 + (c++)"pkgSourceList::GetLastModifiedTime()@Base" 0.8.15.6 + (c++)"pkgCacheGenerator::NewDepends(pkgCache::PkgIterator&, pkgCache::VerIterator&, std::basic_string, std::allocator > const&, unsigned int const&, unsigned int const&, unsigned int*&)@Base" 0.8.15.6 + (c++)"pkgCacheFile::RemoveCaches()@Base" 0.8.15.7 + (c++)"pkgOrderList::VisitNode(pkgCache::PkgIterator, char const*)@Base" 0.8.15.7 +### external dependency resolver ### + (c++)"edspIFType::~edspIFType()@Base" 0.8.16~exp2 + (c++)"edspSystem::Initialize(Configuration&)@Base" 0.8.16~exp2 + (c++)"edspSystem::AddStatusFiles(std::vector >&)@Base" 0.8.16~exp2 + (c++)"edspSystem::ArchiveSupported(char const*)@Base" 0.8.16~exp2 + (c++)"edspSystem::Lock()@Base" 0.8.16~exp2 + (c++)"edspSystem::Score(Configuration const&)@Base" 0.8.16~exp2 + (c++)"edspSystem::UnLock(bool)@Base" 0.8.16~exp2 + (c++)"edspSystem::edspSystem()@Base" 0.8.16~exp2 + (c++)"edspSystem::~edspSystem()@Base" 0.8.16~exp2 + (c++)"edspListParser::NewVersion(pkgCache::VerIterator&)@Base" 0.8.16~exp2 + (c++)"edspListParser::Description()@Base" 0.8.16~exp2 + (c++)"edspListParser::ParseStatus(pkgCache::PkgIterator&, pkgCache::VerIterator&)@Base" 0.8.16~exp2 + (c++)"edspListParser::VersionHash()@Base" 0.8.16~exp2 + (c++)"edspListParser::Description_md5()@Base" 0.8.16~exp2 + (c++)"edspListParser::LoadReleaseInfo(pkgCache::PkgFileIterator&, FileFd&, std::basic_string, std::allocator >)@Base" 0.8.16~exp2 + (c++)"edspListParser::DescriptionLanguage()@Base" 0.8.16~exp2 + (c++)"edspListParser::edspListParser(FileFd*, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp2 + (c++)"edspListParser::~edspListParser()@Base" 0.8.16~exp2 + (c++)"edspIndex::edspIndex(std::basic_string, std::allocator >)@Base" 0.8.16~exp2 + (c++)"edspIndex::~edspIndex()@Base" 0.8.16~exp2 + (c++)"edspIFType::CreatePkgParser(pkgCache::PkgFileIterator) const@Base" 0.8.16~exp2 + (c++)"edspSystem::CreatePM(pkgDepCache*) const@Base" 0.8.16~exp2 + (c++)"edspSystem::FindIndex(pkgCache::PkgFileIterator, pkgIndexFile*&) const@Base" 0.8.16~exp2 + (c++)"edspIndex::Merge(pkgCacheGenerator&, OpProgress*) const@Base" 0.8.16~exp2 + (c++)"edspIndex::GetType() const@Base" 0.8.16~exp2 + (c++)"EDSP::WriteError(char const*, std::basic_string, std::allocator > const&, _IO_FILE*)@Base" 0.8.16~exp2 + (c++)"EDSP::ReadRequest(int, std::list, std::allocator >, std::allocator, std::allocator > > >&, std::list, std::allocator >, std::allocator, std::allocator > > >&, bool&, bool&, bool&)@Base" 0.8.16~exp2 + (c++)"EDSP::ApplyRequest(std::list, std::allocator >, std::allocator, std::allocator > > > const&, std::list, std::allocator >, std::allocator, std::allocator > > > const&, pkgDepCache&)@Base" 0.8.16~exp2 + (c++)"EDSP::ReadResponse(int, pkgDepCache&, OpProgress*)@Base" 0.8.16~exp2 + (c++)"EDSP::WriteRequest(pkgDepCache&, _IO_FILE*, bool, bool, bool, OpProgress*)@Base" 0.8.16~exp2 + (c++)"EDSP::ExecuteSolver(char const*, int*, int*)@Base" 0.8.16~exp2 + (c++)"EDSP::WriteProgress(unsigned short, char const*, _IO_FILE*)@Base" 0.8.16~exp2 + (c++)"EDSP::WriteScenario(pkgDepCache&, _IO_FILE*, OpProgress*)@Base" 0.8.16~exp2 + (c++)"EDSP::WriteSolution(pkgDepCache&, _IO_FILE*)@Base" 0.8.16~exp2 + (c++)"EDSP::ResolveExternal(char const*, pkgDepCache&, bool, bool, bool, OpProgress*)@Base" 0.8.16~exp2 + (c++)"EDSP::DepMap@Base" 0.8.16~exp2 + (c++)"EDSP::PrioMap@Base" 0.8.16~exp2 + (c++)"pkgDepCache::Policy::GetPriority(pkgCache::PkgIterator const&)@Base" 0.8.16~exp6 + (c++)"pkgDepCache::Policy::GetPriority(pkgCache::PkgFileIterator const&)@Base" 0.8.16~exp6 + (c++)"typeinfo for edspIFType@Base" 0.8.16~exp2 + (c++)"typeinfo for edspSystem@Base" 0.8.16~exp2 + (c++)"typeinfo for edspListParser@Base" 0.8.16~exp2 + (c++)"typeinfo for edspIndex@Base" 0.8.16~exp2 + (c++)"typeinfo name for edspIFType@Base" 0.8.16~exp2 + (c++)"typeinfo name for edspSystem@Base" 0.8.16~exp2 + (c++)"typeinfo name for edspListParser@Base" 0.8.16~exp2 + (c++)"typeinfo name for edspIndex@Base" 0.8.16~exp2 + (c++)"vtable for edspIFType@Base" 0.8.16~exp2 + (c++)"vtable for edspSystem@Base" 0.8.16~exp2 + (c++)"vtable for edspListParser@Base" 0.8.16~exp2 + (c++)"vtable for edspIndex@Base" 0.8.16~exp2 + edspSys@Base 0.8.16~exp2 +### generalisation of checksums (with lfs) -- mostly api-compatible available (without sha512 in previous versions) + (c++)"AddCRC16(unsigned short, void const*, unsigned long long)@Base" 0.8.16~exp2 + (c++)"MD5Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 + (c++)"MD5Summation::Result()@Base" 0.8.16~exp2 + (c++)"MD5Summation::MD5Summation()@Base" 0.8.16~exp2 + (c++)"SHA1Summation::SHA1Summation()@Base" 0.8.16~exp2 + (c++)"SHA1Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 + (c++)"SHA1Summation::Result()@Base" 0.8.16~exp2 + (c++)"SHA256Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 + (c++)"SHA512Summation::Add(unsigned char const*, unsigned long long)@Base" 0.8.16~exp6 + (c++)"debRecordParser::SHA512Hash()@Base" 0.8.16~exp2 + (c++)"pkgRecords::Parser::SHA512Hash()@Base" 0.8.16~exp6 + (c++)"Hashes::AddFD(int, unsigned long long, bool, bool, bool, bool)@Base" 0.8.16~exp6 + (c++)"SummationImplementation::AddFD(int, unsigned long long)@Base" 0.8.16~exp6 + (c++)"typeinfo for MD5Summation@Base" 0.8.16~exp6 + (c++)"typeinfo for SHA1Summation@Base" 0.8.16~exp6 + (c++)"typeinfo for SHA256Summation@Base" 0.8.16~exp6 + (c++)"typeinfo for SHA512Summation@Base" 0.8.16~exp6 + (c++)"typeinfo for SHA2SummationBase@Base" 0.8.16~exp6 + (c++)"typeinfo for SummationImplementation@Base" 0.8.16~exp6 + (c++)"typeinfo name for MD5Summation@Base" 0.8.16~exp6 + (c++)"typeinfo name for SHA1Summation@Base" 0.8.16~exp6 + (c++)"typeinfo name for SHA256Summation@Base" 0.8.16~exp6 + (c++)"typeinfo name for SHA512Summation@Base" 0.8.16~exp6 + (c++)"typeinfo name for SHA2SummationBase@Base" 0.8.16~exp6 + (c++)"typeinfo name for SummationImplementation@Base" 0.8.16~exp6 + (c++)"vtable for MD5Summation@Base" 0.8.16~exp6 + (c++)"vtable for SHA1Summation@Base" 0.8.16~exp6 + (c++)"vtable for SHA256Summation@Base" 0.8.16~exp6 + (c++)"vtable for SHA512Summation@Base" 0.8.16~exp6 + (c++)"vtable for SHA2SummationBase@Base" 0.8.16~exp6 + (c++)"vtable for SummationImplementation@Base" 0.8.16~exp6 +### large file support - available in older api-compatible versions without lfs ### + (c++)"StrToNum(char const*, unsigned long long&, unsigned int, unsigned int)@Base" 0.8.16~exp6 + (c++)"OpProgress::SubProgress(unsigned long long, std::basic_string, std::allocator > const&, float)@Base" 0.8.16~exp6 + (c++)"OpProgress::OverallProgress(unsigned long long, unsigned long long, unsigned long long, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp6 + (c++)"OpProgress::Progress(unsigned long long)@Base" 0.8.16~exp6 + (c++)"SourceCopy::GetFile(std::basic_string, std::allocator >&, unsigned long long&)@Base" 0.8.16~exp6 + (c++)"pkgAcqFile::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgAcqFile::pkgAcqFile(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp6 + (c++)"pkgAcquire::UriIterator::~UriIterator()@Base" 0.8.16~exp6 + (c++)"pkgAcquire::MethodConfig::~MethodConfig()@Base" 0.8.16~exp6 + (c++)"pkgAcquire::Item::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgAcquire::Item::Start(std::basic_string, std::allocator >, unsigned long long)@Base" 0.8.16~exp6 + (c++)"pkgRecords::Parser::RecordField(char const*)@Base" 0.8.16~exp6 + (c++)"pkgTagFile::Jump(pkgTagSection&, unsigned long long)@Base" 0.8.16~exp6 + (c++)"pkgTagFile::Offset()@Base" 0.8.16~exp6 + (c++)"pkgTagFile::pkgTagFile(FileFd*, unsigned long long)@Base" 0.8.16~exp6 + (c++)"DynamicMMap::RawAllocate(unsigned long long, unsigned long)@Base" 0.8.16~exp6 + (c++)"PackageCopy::GetFile(std::basic_string, std::allocator >&, unsigned long long&)@Base" 0.8.16~exp6 + (c++)"pkgAcqIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"indexRecords::parseSumData(char const*&, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned long long&)@Base" 0.8.16~exp6 + (c++)"pkgAcqArchive::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgTagSection::~pkgTagSection()@Base" 0.8.16~exp6 + (c++)"pkgAcqSubIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"debRecordParser::RecordField(char const*)@Base" 0.8.16~exp6 + (c++)"debReleaseIndex::SetTrusted(bool)@Base" 0.8.16~exp6 + (c++)"debReleaseIndex::debReleaseIndex(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp6 + (c++)"pkgAcqMetaIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgAcqIndexDiffs::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgAcqMetaSig::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgAcqDiffIndex::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.8.16~exp6 + (c++)"pkgAcquireStatus::Fetched(unsigned long long, unsigned long long)@Base" 0.8.16~exp6 + (c++)"PreferenceSection::~PreferenceSection()@Base" 0.8.16~exp6 + (c++)"pkgCacheGenerator::NewDescription(pkgCache::DescIterator&, std::basic_string, std::allocator > const&, HashSumValue<128> const&, unsigned int)@Base" 0.8.16~exp6 + (c++)"pkgProblemResolver::ResolveInternal(bool)@Base" 0.8.16~exp6 + (c++)"pkgProblemResolver::ResolveByKeepInternal()@Base" 0.8.16~exp6 + (c++)"FileFd::Read(void*, unsigned long long, unsigned long long*)@Base" 0.8.16~exp6 + (c++)"FileFd::Seek(unsigned long long)@Base" 0.8.16~exp6 + (c++)"FileFd::Skip(unsigned long long)@Base" 0.8.16~exp6 + (c++)"FileFd::Write(void const*, unsigned long long)@Base" 0.8.16~exp6 + (c++)"FileFd::Truncate(unsigned long long)@Base" 0.8.16~exp6 + (c++)"pkgPolicy::GetPriority(pkgCache::PkgFileIterator const&)@Base" 0.8.16~exp6 + (c++)"OptionalIndexTarget::IsOptional() const@Base" 0.8.16~exp6 + (c++)"typeinfo for pkgTagFile@Base" 0.8.16~exp6 + (c++)"typeinfo for IndexTarget@Base" 0.8.16~exp6 + (c++)"typeinfo for pkgSrcRecords@Base" 0.8.16~exp6 + (c++)"typeinfo for OptionalIndexTarget@Base" 0.8.16~exp6 + (c++)"typeinfo for pkgAcquire::UriIterator@Base" 0.8.16~exp6 + (c++)"typeinfo for pkgAcquire::MethodConfig@Base" 0.8.16~exp6 + (c++)"typeinfo for pkgAcquire::Queue@Base" 0.8.16~exp6 + (c++)"typeinfo for pkgAcquire::Worker@Base" 0.8.16~exp6 + (c++)"typeinfo name for pkgTagFile@Base" 0.8.16~exp6 + (c++)"typeinfo name for IndexTarget@Base" 0.8.16~exp6 + (c++)"typeinfo name for pkgSrcRecords@Base" 0.8.16~exp6 + (c++)"typeinfo name for OptionalIndexTarget@Base" 0.8.16~exp6 + (c++)"typeinfo name for pkgAcquire::UriIterator@Base" 0.8.16~exp6 + (c++)"typeinfo name for pkgAcquire::MethodConfig@Base" 0.8.16~exp6 + (c++)"typeinfo name for pkgAcquire::Queue@Base" 0.8.16~exp6 + (c++)"typeinfo name for pkgAcquire::Worker@Base" 0.8.16~exp6 + (c++)"vtable for pkgTagFile@Base" 0.8.16~exp6 + (c++)"vtable for IndexTarget@Base" 0.8.16~exp6 + (c++)"vtable for pkgSrcRecords@Base" 0.8.16~exp6 + (c++)"vtable for OptionalIndexTarget@Base" 0.8.16~exp6 + (c++)"vtable for pkgAcquire::UriIterator@Base" 0.8.16~exp6 + (c++)"vtable for pkgAcquire::MethodConfig@Base" 0.8.16~exp6 + (c++)"vtable for pkgAcquire::Queue@Base" 0.8.16~exp6 + (c++)"vtable for pkgAcquire::Worker@Base" 0.8.16~exp6 +### remove deprecated parameter + (c++)"pkgDepCache::SetCandidateVersion(pkgCache::VerIterator)@Base" 0.8.16~exp6 + (c++)"pkgDepCache::AddSizes(pkgCache::PkgIterator const&, bool)@Base" 0.8.16~exp6 + (c++)"pkgDepCache::AddStates(pkgCache::PkgIterator const&, bool)@Base" 0.8.16~exp6 +### used internally by public interfaces - if you use them directly, you can keep the pieces + (c++|optional=internal|regex)"^SHA256_.*@Base$" 0.8.16~exp2 + (c++|optional=internal|regex)"^SHA384_.*@Base$" 0.8.16~exp2 + (c++|optional=internal|regex)"^SHA512_.*@Base$" 0.8.16~exp2 +### orderlist rework: the touched methods are protected + (c++)"SigINT(int)@Base" 0.8.16~exp14 + (c++)"pkgPackageManager::SigINTStop@Base" 0.8.16~exp14 + (c++)"pkgPackageManager::SmartUnPack(pkgCache::PkgIterator, bool, int)@Base" 0.8.16~exp14 + (c++)"pkgPackageManager::SmartConfigure(pkgCache::PkgIterator, int)@Base" 0.8.16~exp14 +### FileFd rework: supporting different on-the-fly (de)compressing needs more parameter (abi), but the api is stable + (c++)"FileFd::OpenDescriptor(int, unsigned int, FileFd::CompressMode, bool)@Base" 0.8.16~exp9 + (c++)"FileFd::OpenDescriptor(int, unsigned int, APT::Configuration::Compressor const&, bool)@Base" 0.8.16~exp9 + (c++)"FileFd::ModificationTime()@Base" 0.8.16~exp9 + (c++)"FileFd::Open(std::basic_string, std::allocator >, unsigned int, FileFd::CompressMode, unsigned long)@Base" 0.8.16~exp9 + (c++)"FileFd::Open(std::basic_string, std::allocator >, unsigned int, APT::Configuration::Compressor const&, unsigned long)@Base" 0.8.16~exp9 + (c++)"FileFd::ReadLine(char*, unsigned long long)@Base" 0.8.16~exp9 + (c++)"SummationImplementation::AddFD(FileFd&, unsigned long long)@Base" 0.8.16~exp9 + (c++)"Hashes::AddFD(FileFd&, unsigned long long, bool, bool, bool, bool)@Base" 0.8.16~exp9 + (c++|optional=deprecated,previous-inline)"FileFd::gzFd()@Base" 0.8.0 +### CacheSet rework: making them real containers breaks bigtime the API (for the CacheSetHelper) + (c++)"APT::PackageContainer, std::allocator > >::const_iterator::getPkg() const@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer, std::allocator > >::getConstructor() const@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer, std::allocator > >::empty() const@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer > >::const_iterator::getPkg() const@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer > >::getConstructor() const@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer > >::empty() const@Base" 0.8.16~exp9 + (c++)"APT::VersionContainer > >::empty() const@Base" 0.8.16~exp9 + (c++)"APT::VersionContainer > >::iterator::getVer() const@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::canNotFindTask(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::canNotFindRegEx(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::canNotFindAllVer(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::canNotFindPackage(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::showTaskSelection(pkgCache::PkgIterator const&, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const&, std::basic_string, std::allocator > const&)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::showSelectedVersion(pkgCache::PkgIterator const&, pkgCache::VerIterator, std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::canNotFindCandInstVer(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 + (c++)"APT::CacheSetHelper::canNotFindInstCandVer(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer, std::allocator > >::setConstructor(APT::PackageContainerInterface::Constructor const&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer, std::allocator > >::clear()@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer, std::allocator > >::insert(pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer > >::setConstructor(APT::PackageContainerInterface::Constructor const&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer > >::clear()@Base" 0.8.16~exp9 + (c++)"APT::PackageContainer > >::insert(pkgCache::PkgIterator const&)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainer > >::clear()@Base" 0.8.16~exp9 + (c++)"APT::VersionContainer > >::insert(pkgCache::VerIterator const&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainerInterface::FromString(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainerInterface::FromCommandLine(APT::PackageContainerInterface*, pkgCacheFile&, char const**, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainerInterface::FromModifierCommandLine(unsigned short&, APT::PackageContainerInterface*, pkgCacheFile&, char const*, std::list > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainerInterface::FromName(pkgCacheFile&, std::basic_string, std::allocator > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainerInterface::FromTask(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::PackageContainerInterface::FromRegEx(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainerInterface::FromString(APT::VersionContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::VersionContainerInterface::Version const&, APT::CacheSetHelper&, bool)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainerInterface::FromPackage(APT::VersionContainerInterface*, pkgCacheFile&, pkgCache::PkgIterator const&, APT::VersionContainerInterface::Version const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainerInterface::FromCommandLine(APT::VersionContainerInterface*, pkgCacheFile&, char const**, APT::VersionContainerInterface::Version const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainerInterface::getCandidateVer(pkgCacheFile&, pkgCache::PkgIterator const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainerInterface::getInstalledVer(pkgCacheFile&, pkgCache::PkgIterator const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"APT::VersionContainerInterface::FromModifierCommandLine(unsigned short&, APT::VersionContainerInterface*, pkgCacheFile&, char const*, std::list > const&, APT::CacheSetHelper&)@Base" 0.8.16~exp9 + (c++)"EDSP::WriteLimitedScenario(pkgDepCache&, _IO_FILE*, APT::PackageContainer, std::allocator > > const&, OpProgress*)@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::PackageContainer, std::allocator > >::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::PackageContainer, std::allocator > >@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::PackageContainer > >::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::PackageContainer > >@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::VersionContainer > >::iterator@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::VersionContainer > >@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::PackageContainerInterface::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::PackageContainerInterface@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo for APT::VersionContainerInterface@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::PackageContainer, std::allocator > >::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::PackageContainer, std::allocator > >@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::PackageContainer > >::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::PackageContainer > >@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::VersionContainer > >::iterator@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::VersionContainer > >@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::PackageContainerInterface::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::PackageContainerInterface@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9 + (c++)"typeinfo name for APT::VersionContainerInterface@Base" 0.8.16~exp9 + (c++)"vtable for APT::PackageContainer, std::allocator > >::const_iterator@Base" 0.8.16~exp9 + (c++)"vtable for APT::PackageContainer, std::allocator > >@Base" 0.8.16~exp9 + (c++)"vtable for APT::PackageContainer > >::const_iterator@Base" 0.8.16~exp9 + (c++)"vtable for APT::PackageContainer > >@Base" 0.8.16~exp9 + (c++)"vtable for APT::VersionContainer > >::iterator@Base" 0.8.16~exp9 + (c++)"vtable for APT::VersionContainer > >@Base" 0.8.16~exp9 + (c++)"vtable for APT::PackageContainerInterface::const_iterator@Base" 0.8.16~exp9 + (c++)"vtable for APT::PackageContainerInterface@Base" 0.8.16~exp9 + (c++)"vtable for APT::VersionContainerInterface::const_iterator@Base" 0.8.16~exp9 + (c++)"vtable for APT::VersionContainerInterface@Base" 0.8.16~exp9 +### rework of the packagemanager rework + (c++)"APT::Progress::PackageManager::ConffilePrompt(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::Error(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::HandleSIGWINCH(int)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::~PackageManagerFancy()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::PackageManagerFancy()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::SetupTerminalScrollArea(int)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::Stop()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::fork()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::GetPulseInterval()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::~PackageManager()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::ConffilePrompt(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::Error(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::~PackageManagerProgressDeb822Fd()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::PackageManagerProgressDeb822Fd(int)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::StartDpkg()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::Stop()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressDeb822Fd::WriteToStatusFd(std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFactory()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::ConffilePrompt(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::Error(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::~PackageManagerProgressFd()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::PackageManagerProgressFd(int)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::StartDpkg()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::Stop()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerProgressFd::WriteToStatusFd(std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::Pulse()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::StartDpkg()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManager::Stop()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerText::~PackageManagerText()@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerText::StatusChanged(std::basic_string, std::allocator >, unsigned int, unsigned int, std::basic_string, std::allocator >)@Base" 0.9.13~exp1 + (c++)"APT::String::Strip(std::basic_string, std::allocator > const&)@Base" 0.9.13~exp1 + (c++)"APT::Upgrade::Upgrade(pkgDepCache&, int)@Base" 0.9.13~exp1 + (c++)"pkgDPkgPM::BuildPackagesProgressMap()@Base" 0.9.13~exp1 + (c++)"pkgDPkgPM::DoDpkgStatusFd(int)@Base" 0.9.13~exp1 + (c++)"pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager*)@Base" 0.9.13~exp1 + (c++)"pkgDPkgPM::ProcessDpkgStatusLine(char*)@Base" 0.9.13~exp1 + (c++)"pkgDPkgPM::StartPtyMagic()@Base" 0.9.13~exp1 + (c++)"pkgDPkgPM::StopPtyMagic()@Base" 0.9.13~exp1 + (c++)"typeinfo for APT::Progress::PackageManager@Base" 0.9.13~exp1 + (c++)"typeinfo for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1 + (c++)"typeinfo for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1 + (c++)"typeinfo for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1 + (c++)"typeinfo for APT::Progress::PackageManagerText@Base" 0.9.13~exp1 + (c++)"typeinfo name for APT::Progress::PackageManager@Base" 0.9.13~exp1 + (c++)"typeinfo name for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1 + (c++)"typeinfo name for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1 + (c++)"typeinfo name for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1 + (c++)"typeinfo name for APT::Progress::PackageManagerText@Base" 0.9.13~exp1 + (c++)"vtable for APT::Progress::PackageManager@Base" 0.9.13~exp1 + (c++)"vtable for APT::Progress::PackageManagerFancy@Base" 0.9.13~exp1 + (c++)"vtable for APT::Progress::PackageManagerProgressDeb822Fd@Base" 0.9.13~exp1 + (c++)"vtable for APT::Progress::PackageManagerProgressFd@Base" 0.9.13~exp1 + (c++)"vtable for APT::Progress::PackageManagerText@Base" 0.9.13~exp1 + (c++)"APT::Progress::PackageManagerFancy::instances@Base" 0.9.14.2 + (c++)"APT::Progress::PackageManagerFancy::Start(int)@Base" 0.9.14.2 + (c++)"APT::Progress::PackageManagerFancy::staticSIGWINCH(int)@Base" 0.9.14.2 + (c++)"APT::Progress::PackageManager::Start(int)@Base" 0.9.14.2 +### client-side merged pdiffs + (c++)"pkgAcqIndexMergeDiffs::DescURI()@Base" 0.9.14.3~exp1 + (c++)"pkgAcqIndexMergeDiffs::Done(std::basic_string, std::allocator >, unsigned long long, std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.9.14.3~exp1 + (c++)"pkgAcqIndexMergeDiffs::Failed(std::basic_string, std::allocator >, pkgAcquire::MethodConfig*)@Base" 0.9.14.3~exp1 + (c++)"pkgAcqIndexMergeDiffs::~pkgAcqIndexMergeDiffs()@Base" 0.9.14.3~exp1 + (c++)"pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire*, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, HashString const&, DiffInfo const&, std::vector > const*)@Base" 0.9.14.3~exp1 + (c++)"typeinfo for pkgAcqIndexMergeDiffs@Base" 0.9.14.3~exp1 + (c++)"typeinfo name for pkgAcqIndexMergeDiffs@Base" 0.9.14.3~exp1 + (c++)"vtable for pkgAcqIndexMergeDiffs@Base" 0.9.14.3~exp1 +### deb822 sources.list format + (c++)"pkgSourceList::ParseFileDeb822(std::basic_string, std::allocator >)@Base" 0.9.14.3~exp1 + (c++)"pkgSourceList::ParseFileOldStyle(std::basic_string, std::allocator >)@Base" 0.9.14.3~exp1 + (c++)"pkgSourceList::Type::ParseStanza(std::vector >&, pkgTagSection&, int, FileFd&)@Base" 0.9.14.3~exp1 +### mixed stuff + (c++)"GetListOfFilesInDir(std::basic_string, std::allocator > const&, bool)@Base" 0.8.16~exp13 + (c++)"pkgCache::DepIterator::IsIgnorable(pkgCache::PkgIterator const&) const@Base" 0.8.16~exp10 + (c++)"pkgCache::DepIterator::IsIgnorable(pkgCache::PrvIterator const&) const@Base" 0.8.16~exp10 + (c++)"FileFd::Write(int, void const*, unsigned long long)@Base" 0.8.16~exp14 + (c++)"pkgTagSection::Exists(char const*)@Base" 0.9.7.9~exp1 + (c++)"_strrstrip(char*)@Base" 0.9.7.9~exp2 + (c++)"SplitClearSignedFile(std::basic_string, std::allocator > const&, FileFd*, std::vector, std::allocator >, std::allocator, std::allocator > > >*, FileFd*)@Base" 0.9.7.9~exp2 + (c++)"OpenMaybeClearSignedFile(std::basic_string, std::allocator > const&, FileFd&)@Base" 0.9.7.9~exp2 + (c++)"ExecGPGV(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, int const&, int*)@Base" 0.9.7.9~exp2 + (c++)"SigVerify::RunGPGV(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, int const&)@Base" 0.9.7.9~exp2 + (c++)"Configuration::Dump(std::basic_ostream >&, char const*, char const*, bool)@Base" 0.9.3 + (c++)"AcquireUpdate(pkgAcquire&, int, bool, bool)@Base" 0.9.3 + (c++)"pkgCache::DepIterator::IsMultiArchImplicit() const@Base" 0.9.6 + (c++)"pkgCache::PrvIterator::IsMultiArchImplicit() const@Base" 0.9.6 + (c++)"APT::PackageContainerInterface::FromGroup(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.9.7 + (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::PackageArchitectureMatchesSpecification(std::basic_string, std::allocator > const&, bool)@Base" 0.9.7 + (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::~PackageArchitectureMatchesSpecification()@Base" 0.9.7 + (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::operator()(pkgCache::PkgIterator const&)@Base" 0.9.7 + (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::operator()(pkgCache::VerIterator const&)@Base" 0.9.7 + (c++)"APT::CacheFilter::PackageArchitectureMatchesSpecification::operator()(char const* const&)@Base" 0.9.7 + (c++)"APT::Configuration::checkLanguage(std::basic_string, std::allocator >, bool)@Base" 0.9.7.5 + (c++)"pkgCdrom::DropTranslation(std::vector, std::allocator >, std::allocator, std::allocator > > >&)@Base" 0.9.7.5 + (c++)"pkgCache::DepIterator::IsSatisfied(pkgCache::PrvIterator const&) const@Base" 0.9.8 + (c++)"pkgCache::DepIterator::IsSatisfied(pkgCache::VerIterator const&) const@Base" 0.9.8 + (c++)"pkgCacheGenerator::NewDepends(pkgCache::PkgIterator&, pkgCache::VerIterator&, unsigned int, unsigned int const&, unsigned int const&, unsigned int*&)@Base" 0.9.8 + (c++)"pkgCacheGenerator::NewVersion(pkgCache::VerIterator&, std::basic_string, std::allocator > const&, unsigned int, unsigned long, unsigned long)@Base" 0.9.8 + (c++)"operator<<(std::basic_ostream >&, GlobalError::Item)@Base" 0.9.9 + (c++)"pkgDepCache::IsDeleteOkProtectInstallRequests(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.9.9.1 + (c++)"pkgDepCache::IsInstallOkMultiArchSameVersionSynced(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 0.9.9.1 + (c++)"pkgDPkgPM::SendPkgsInfo(_IO_FILE*, unsigned int const&)@Base" 0.9.9.1 + (c++)"pkgCache::VerIterator::MultiArchType() const@Base" 0.9.9.1 + (c++)"CommandLine::GetCommand(CommandLine::Dispatch const*, unsigned int, char const* const*)@Base" 0.9.11 + (c++)"CommandLine::MakeArgs(char, char const*, char const*, unsigned long)@Base" 0.9.11 + (c++)"Configuration::Clear()@Base" 0.9.11 + (c++)"Glob(std::basic_string, std::allocator > const&, int)@Base" 0.9.11 + (c++)"APT::CacheFilter::PackageNameMatchesFnmatch::operator()(pkgCache::GrpIterator const&)@Base" 0.9.11 + (c++)"APT::CacheFilter::PackageNameMatchesFnmatch::operator()(pkgCache::PkgIterator const&)@Base" 0.9.11 + (c++)"APT::PackageContainerInterface::FromFnmatch(APT::PackageContainerInterface*, pkgCacheFile&, std::basic_string, std::allocator >, APT::CacheSetHelper&)@Base" 0.9.11 + (c++)"pkgTagSection::pkgTagSection()@Base" 0.9.11 + (c++)"strv_length(char const**)@Base" 0.9.11 + (c++)"StringSplit(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&, unsigned int)@Base" 0.9.11.3 + (c++)"pkgAcquire::Item::RenameOnError(pkgAcquire::Item::RenameOnErrorState)@Base" 0.9.12 + (c++)"APT::String::Endswith(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&)@Base" 0.9.13.1 + (c++)"ExecFork(std::set, std::allocator >)@Base" 0.9.13.1 + (c++)"MergeKeepFdsFromConfiguration(std::set, std::allocator >&)@Base" 0.9.13.1 + (c++)"HashString::FromFile(std::basic_string, std::allocator >)@Base" 0.9.13.1 + (c++)"HashString::GetHashForFile(std::basic_string, std::allocator >) const@Base" 0.9.13.1 + (c++)"indexRecords::GetSuite() const@Base" 0.9.13.2 + (c++)"GetTempDir()@Base" 0.9.14.2 + (c++)"APT::Configuration::getBuildProfiles()@Base" 0.9.16 + (c++)"APT::Configuration::getBuildProfilesString()@Base" 0.9.16 + (c++)"Configuration::FindVector(char const*, std::basic_string, std::allocator > const&) const@Base" 0.9.16 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&)@Base" 0.9.16 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&, bool const&)@Base" 0.9.16 + (c++)"debListParser::ParseDepends(char const*, char const*, std::basic_string, std::allocator >&, std::basic_string, std::allocator >&, unsigned int&, bool const&, bool const&, bool const&)@Base" 0.9.16 + (c++)"pkgCacheGenerator::ListParser::SameVersion(unsigned short, pkgCache::VerIterator const&)@Base" 0.9.16 + (c++)"Rename(std::basic_string, std::allocator >, std::basic_string, std::allocator >)@Base" 0.9.16 + (c++)"pkgDepCache::IsInstallOkDependenciesSatisfiableByCandidates(pkgCache::PkgIterator const&, bool, unsigned long, bool)@Base" 1.0 + (c++)"APT::Progress::PackageManagerFancy::GetTerminalSize()@Base" 1.0 + (c++)"APT::Progress::PackageManagerFancy::GetTextProgressStr(float, int)@Base" 1.0 + (c++)"pkgCdromStatus::GetOpProgress()@Base" 1.0 + (c++)"pkgCdromStatus::SetTotal(int)@Base" 1.0 + (c++)"EDSP::ExecuteSolver(char const*, int*, int*, bool)@Base" 1.0.4 + (c++)"pkgPackageManager::EarlyRemove(pkgCache::PkgIterator, pkgCache::DepIterator const*)@Base" 1.0.4 + (c++)"debTranslationsParser::Architecture()@Base" 1.0.4 + (c++)"debTranslationsParser::~debTranslationsParser()@Base" 1.0.4 + (c++)"debTranslationsParser::Version()@Base" 1.0.4 + (c++)"typeinfo for debTranslationsParser@Base" 1.0.4 + (c++)"typeinfo name for debTranslationsParser@Base" 1.0.4 + (c++)"vtable for debTranslationsParser@Base" 1.0.4 +### demangle strangeness - buildd report it as MISSING and as new… + (c++)"pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire*, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::vector > const*, indexRecords*)@Base" 0.8.0 +### gcc-4.6 artefacts +# (c++|optional=implicit)"HashString::operator=(HashString const&)@Base" 0.8.0 +# (c++|optional=implicit)"HashString::HashString(HashString const&)@Base" 0.8.0 +# (c++|optional=inline)"APT::VersionContainer > >::iterator std::max_element > >::iterator, CompareProviders>(APT::VersionContainer > >::iterator, APT::VersionContainer > >::iterator, CompareProviders)@Base" 0.8.0 +# (c++|optional=inline)"pkgCache::VerIterator::ParentPkg() const@Base" 0.8.0 +### gcc-4.8 artefacts +# (c++|optional=implicit)"debSLTypeDebian::~debSLTypeDebian()@Base" 0.8.0 +### empty destructors included in the .h file +# (c++|optional=inline)"pkgVersioningSystem::~pkgVersioningSystem()@Base" 0.8.0 +# (c++|optional=inline)"pkgSystem::~pkgSystem()@Base" 0.8.0 +# (c++|optional=inline)"pkgRecords::Parser::~Parser()@Base" 0.8.0 +# (c++|optional=inline)"pkgSrcRecords::Parser::~Parser()@Base" 0.8.0 +# (c++|optional=inline)"pkgIndexFile::Type::~Type()@Base" 0.8.0 +# (c++|optional=inline)"pkgSourceList::Type::~Type()@Base" 0.8.0 +# (c++|optional=inline)"pkgIndexFile::~pkgIndexFile()@Base" 0.8.0 +# (c++|optional=inline)"pkgCacheGenerator::ListParser::~ListParser()@Base" 0.8.0 +# (c++|optional=inline)"pkgAcquireStatus::~pkgAcquireStatus()@Base" 0.8.0 +# (c++|optional=inline)"metaIndex::~metaIndex()@Base" 0.8.0 +# (c++|optional=inline)"IndexCopy::~IndexCopy()@Base" 0.8.0 +### std library artefacts + (c++|regex|optional=std)"^std::vector::(vector|push_back|erase|_[^ ]+)\(.+\)( const|)@Base$" 0.8.0 + (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct<__gnu_cxx::__normal_iterator, std::allocator > > >(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 + (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct<__gnu_cxx::__normal_iterator, std::allocator > > >(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 + (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct(char const*, char const*, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 + (c++|optional=std)"char* std::basic_string, std::allocator >::_S_construct(char*, char*, std::allocator const&, std::forward_iterator_tag)@Base" 0.8.0 +### try to ignore std:: template instances + (c++|regex|optional=std)"^(void |)std::[^ ]+<.+ >::(_|~).+\(.*\)@Base$" 0.8.0 + (c++|regex|optional=std)"^std::[^ ]+<.+ >::(append|insert|reserve|operator[^ ]+)\(.*\)@Base$" 0.8.0 + (c++|regex|optional=std)"^(void |DiffInfo\* |)std::_.*@Base$" 0.8.0 + (c++|regex|optional=std)"^std::reverse_iterator<.+ > std::__.+@Base$" 0.8.0 + (c++|regex|optional=std)"^std::basic_string<.+ >\(.+\)@Base$" 0.8.0 + (c++|regex|optional=std)"^__gnu_cxx::__[^ ]+<.*@Base$" 0.8.0 + (c++|regex|optional=std)"^typeinfo name for std::iterator<.*>@Base$" 0.8.0 + (c++|regex|optional=std)"^typeinfo for std::iterator<.*>@Base$" 0.8.0 + (c++|optional=std)"std::ctype::do_widen(char) const@Base" 1.0.3 diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 00d8eb7e9..cb081e478 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 ffecc6ceb..31c8f63dc 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -390,9 +390,9 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; The setting Acquire::http::Pipeline-Depth can be used to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e.g. on high-latency connections. It specifies how many requests are sent in a pipeline. - Previous APT versions had a default of 10 for this setting, but the default value - is now 0 (= disabled) to avoid problems with the ever-growing amount of webservers - and proxies which choose to not conform to the HTTP/1.1 specification. + APT tries to detect and workaround misbehaving webservers and proxies at runtime, but + if you know that yours does not conform to the HTTP/1.1 specification pipelining can + be disabled by setting the value to 0. It is enabled by default with the value 10. Acquire::http::AllowRedirect controls whether APT will follow redirects, which is enabled by default. diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index 663b47ad0..70d64a8b5 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt-doc 1.0.5\n" +"Project-Id-Version: apt-doc 1.1~exp1\n" "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2014-07-03 22:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" @@ -2884,10 +2884,10 @@ msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial " "e.g. on high-latency connections. It specifies how many requests are sent in " -"a pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the " -"ever-growing amount of webservers and proxies which choose to not conform to " -"the HTTP/1.1 specification." +"a pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to " +"0. It is enabled by default with the value 10." msgstr "" #. type: Content of: diff --git a/doc/po/de.po b/doc/po/de.po index 53ea8ce90..87a0485f7 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -4084,14 +4084,23 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:390 +#, fuzzy +#| msgid "" +#| "The setting Acquire::http::Pipeline-Depth can be used " +#| "to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be " +#| "beneficial e.g. on high-latency connections. It specifies how many " +#| "requests are sent in a pipeline. Previous APT versions had a default of " +#| "10 for this setting, but the default value is now 0 (= disabled) to avoid " +#| "problems with the ever-growing amount of webservers and proxies which " +#| "choose to not conform to the HTTP/1.1 specification." msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" "Die Einstellung Acquire::http::Pipeline-Depth kann " "verwandt werden, um HTTP-Weiterleitung zu aktivieren (RFC 2616 Abschnitt " diff --git a/doc/po/es.po b/doc/po/es.po index efb90c878..90c3a578a 100644 --- a/doc/po/es.po +++ b/doc/po/es.po @@ -4158,14 +4158,23 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:390 +#, fuzzy +#| msgid "" +#| "The setting Acquire::http::Pipeline-Depth can be used " +#| "to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be " +#| "beneficial e.g. on high-latency connections. It specifies how many " +#| "requests are sent in a pipeline. Previous APT versions had a default of " +#| "10 for this setting, but the default value is now 0 (= disabled) to avoid " +#| "problems with the ever-growing amount of webservers and proxies which " +#| "choose to not conform to the HTTP/1.1 specification." msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" "La opción Acquire::http::Pipeline-Depth se puede utilizar " "para activar HTTP pipelining (RFC 2616 sección 8.1.2.2), que puede " diff --git a/doc/po/fr.po b/doc/po/fr.po index 47e15077f..be944698b 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -1,15 +1,30 @@ -# Translation of apt package man pages -# Copyright (C) 2000-2009 Debian French l10n team -# This file is distributed under the same license as the apt package. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. # -# Translators: -# Jérôme Marant, 2000. -# Philippe Batailler, 2005. -# Christian Perrier , 2009, 2010, 2011, 2012, 2013. +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: APT Development Team \n" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-07-08 13:28+0200\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#~ # Translation of apt package man pages +#~ # Copyright (C) 2000-2009 Debian French l10n team +#~ # This file is distributed under the same license as the apt package. +#~ # +#~ # Translators: +#~ # Jérôme Marant, 2000. +#~ # Philippe Batailler, 2005. +#~ # Christian Perrier , 2009, 2010, 2011, 2012, 2013. +#~ msgid "" +#~ msgstr "" +#~ "Project-Id-Version: \n" +#~ "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2014-07-03 22:15+0200\n" "PO-Revision-Date: 2014-07-04 01:28+0200\n" "Last-Translator: Christian Perrier \n" @@ -4104,14 +4119,23 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:390 +#, fuzzy +#| msgid "" +#| "The setting Acquire::http::Pipeline-Depth can be used " +#| "to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be " +#| "beneficial e.g. on high-latency connections. It specifies how many " +#| "requests are sent in a pipeline. Previous APT versions had a default of " +#| "10 for this setting, but the default value is now 0 (= disabled) to avoid " +#| "problems with the ever-growing amount of webservers and proxies which " +#| "choose to not conform to the HTTP/1.1 specification." msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" "Le réglage Acquire::http::Pipeline-Depth permet " "d'utiliser l'enchaînement HTTP (« HTTP pipelining », RFC 2616 section " diff --git a/doc/po/it.po b/doc/po/it.po index d2c0b6e02..225422cfa 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -4100,14 +4100,23 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:390 +#, fuzzy +#| msgid "" +#| "The setting Acquire::http::Pipeline-Depth can be used " +#| "to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be " +#| "beneficial e.g. on high-latency connections. It specifies how many " +#| "requests are sent in a pipeline. Previous APT versions had a default of " +#| "10 for this setting, but the default value is now 0 (= disabled) to avoid " +#| "problems with the ever-growing amount of webservers and proxies which " +#| "choose to not conform to the HTTP/1.1 specification." msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" "L'impostazione Acquire::http::Pipeline-Depth può essere " "usata per abilitare le pipeline HTTP (RFC 2616, sezione 8.1.2.2) che possono " diff --git a/doc/po/ja.po b/doc/po/ja.po index dc541483b..58b4cf3ee 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -3970,14 +3970,23 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:390 +#, fuzzy +#| msgid "" +#| "The setting Acquire::http::Pipeline-Depth can be used " +#| "to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be " +#| "beneficial e.g. on high-latency connections. It specifies how many " +#| "requests are sent in a pipeline. Previous APT versions had a default of " +#| "10 for this setting, but the default value is now 0 (= disabled) to avoid " +#| "problems with the ever-growing amount of webservers and proxies which " +#| "choose to not conform to the HTTP/1.1 specification." msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" "Acquire::http::Pipeline-Depth の設定は、例えばレイテンシの" "高い接続で有益な、HTTP パイプライン (RFC 2616 8.1.2.2 節) を有効にするのに使" diff --git a/doc/po/pl.po b/doc/po/pl.po index 711a355fd..1644da26b 100644 --- a/doc/po/pl.po +++ b/doc/po/pl.po @@ -3996,10 +3996,10 @@ msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" #. type: Content of: diff --git a/doc/po/pt.po b/doc/po/pt.po index 5ed11928e..7ac460648 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -4099,14 +4099,23 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:390 +#, fuzzy +#| msgid "" +#| "The setting Acquire::http::Pipeline-Depth can be used " +#| "to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be " +#| "beneficial e.g. on high-latency connections. It specifies how many " +#| "requests are sent in a pipeline. Previous APT versions had a default of " +#| "10 for this setting, but the default value is now 0 (= disabled) to avoid " +#| "problems with the ever-growing amount of webservers and proxies which " +#| "choose to not conform to the HTTP/1.1 specification." msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" "A definição Acquire::http::Pipeline-Depth pode ser usada " "para activar o 'pipelining' de HTTP (RFC 2616 secção 8.1.2.2) a qual pode " diff --git a/doc/po/pt_BR.po b/doc/po/pt_BR.po index 833fcf1a3..d14429d1c 100644 --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@ -2892,10 +2892,10 @@ msgid "" "The setting Acquire::http::Pipeline-Depth can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" #. type: Content of: diff --git a/ftparchive/cachedb.cc b/ftparchive/cachedb.cc index 0901492f7..7770a3244 100644 --- a/ftparchive/cachedb.cc +++ b/ftparchive/cachedb.cc @@ -21,11 +21,13 @@ #include #include #include +#include #include // htonl, etc #include #include #include +#include #include "cachedb.h" @@ -268,15 +270,10 @@ bool CacheDB::GetCurStat() /*}}}*/ // CacheDB::GetFileInfo - Get all the info about the file /*{{{*/ // --------------------------------------------------------------------- -bool CacheDB::GetFileInfo(std::string const &FileName, bool const &DoControl, - bool const &DoContents, - bool const &GenContentsOnly, - bool const &DoSource, - bool const &DoMD5, bool const &DoSHA1, - bool const &DoSHA256, bool const &DoSHA512, +bool CacheDB::GetFileInfo(std::string const &FileName, bool const &DoControl, bool const &DoContents, + bool const &GenContentsOnly, bool const DoSource, unsigned int const DoHashes, bool const &checkMtime) { - bool result = true; this->FileName = FileName; if (GetCurStat() == false) @@ -284,31 +281,28 @@ bool CacheDB::GetFileInfo(std::string const &FileName, bool const &DoControl, OldStat = CurStat; if (GetFileStat(checkMtime) == false) - return false; + return false; /* if mtime changed, update CurStat from disk */ if (checkMtime == true && OldStat.mtime != CurStat.mtime) CurStat.Flags = FlSize; Stats.Bytes += CurStat.FileSize; - Stats.Packages++; + ++Stats.Packages; if ((DoControl && LoadControl() == false) - || (DoContents && LoadContents(GenContentsOnly) == false) - || (DoSource && LoadSource() == false) - || (DoMD5 && GetMD5(false) == false) - || (DoSHA1 && GetSHA1(false) == false) - || (DoSHA256 && GetSHA256(false) == false) - || (DoSHA512 && GetSHA512(false) == false) ) + || (DoContents && LoadContents(GenContentsOnly) == false) + || (DoSource && LoadSource() == false) + || (DoHashes != 0 && GetHashes(false, DoHashes) == false) + ) { - result = false; + return false; } - - return result; + + return true; } /*}}}*/ - -bool CacheDB::LoadSource() +bool CacheDB::LoadSource() /*{{{*/ { // Try to read the control information out of the DB. if ((CurStat.Flags & FlSource) == FlSource) @@ -338,7 +332,7 @@ bool CacheDB::LoadSource() return true; } - + /*}}}*/ // CacheDB::LoadControl - Load Control information /*{{{*/ // --------------------------------------------------------------------- /* */ @@ -407,7 +401,7 @@ bool CacheDB::LoadContents(bool const &GenOnly) return true; } /*}}}*/ - +// CacheDB::GetHashes - Get the hashs /*{{{*/ static std::string bytes2hex(uint8_t *bytes, size_t length) { char buf[3]; std::string space; @@ -437,125 +431,59 @@ static void hex2bytes(uint8_t *bytes, const char *hex, int length) { bytes++; } } - -// CacheDB::GetMD5 - Get the MD5 hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool CacheDB::GetMD5(bool const &GenOnly) +bool CacheDB::GetHashes(bool const GenOnly, unsigned int const DoHashes) { - // Try to read the control information out of the DB. - if ((CurStat.Flags & FlMD5) == FlMD5) - { - if (GenOnly == true) - return true; - - MD5Res = bytes2hex(CurStat.MD5, sizeof(CurStat.MD5)); - return true; - } - - Stats.MD5Bytes += CurStat.FileSize; - - if (OpenFile() == false) - return false; + unsigned int FlHashes = DoHashes & (Hashes::MD5SUM | Hashes::SHA1SUM | Hashes::SHA256SUM | Hashes::SHA512SUM); + HashesList.clear(); - MD5Summation MD5; - if (Fd->Seek(0) == false || MD5.AddFD(*Fd, CurStat.FileSize) == false) - return false; - - MD5Res = MD5.Result(); - hex2bytes(CurStat.MD5, MD5Res.data(), sizeof(CurStat.MD5)); - CurStat.Flags |= FlMD5; - return true; -} - /*}}}*/ -// CacheDB::GetSHA1 - Get the SHA1 hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool CacheDB::GetSHA1(bool const &GenOnly) -{ - // Try to read the control information out of the DB. - if ((CurStat.Flags & FlSHA1) == FlSHA1) + if (FlHashes != 0) { - if (GenOnly == true) - return true; + if (OpenFile() == false) + return false; - SHA1Res = bytes2hex(CurStat.SHA1, sizeof(CurStat.SHA1)); - return true; - } - - Stats.SHA1Bytes += CurStat.FileSize; - - if (OpenFile() == false) - return false; + Hashes hashes; + if (Fd->Seek(0) == false || hashes.AddFD(*Fd, CurStat.FileSize, FlHashes) == false) + return false; - SHA1Summation SHA1; - if (Fd->Seek(0) == false || SHA1.AddFD(*Fd, CurStat.FileSize) == false) - return false; - - SHA1Res = SHA1.Result(); - hex2bytes(CurStat.SHA1, SHA1Res.data(), sizeof(CurStat.SHA1)); - CurStat.Flags |= FlSHA1; - return true; -} - /*}}}*/ -// CacheDB::GetSHA256 - Get the SHA256 hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool CacheDB::GetSHA256(bool const &GenOnly) -{ - // Try to read the control information out of the DB. - if ((CurStat.Flags & FlSHA256) == FlSHA256) - { - if (GenOnly == true) - return true; - - SHA256Res = bytes2hex(CurStat.SHA256, sizeof(CurStat.SHA256)); - return true; + HashStringList hl = hashes.GetHashStringList(); + for (HashStringList::const_iterator hs = hl.begin(); hs != hl.end(); ++hs) + { + HashesList.push_back(*hs); + if (strcasecmp(hs->HashType().c_str(), "SHA512") == 0) + { + Stats.SHA512Bytes += CurStat.FileSize; + hex2bytes(CurStat.SHA512, hs->HashValue().data(), sizeof(CurStat.SHA512)); + CurStat.Flags |= FlSHA512; + } + else if (strcasecmp(hs->HashType().c_str(), "SHA256") == 0) + { + Stats.SHA256Bytes += CurStat.FileSize; + hex2bytes(CurStat.SHA256, hs->HashValue().data(), sizeof(CurStat.SHA256)); + CurStat.Flags |= FlSHA256; + } + else if (strcasecmp(hs->HashType().c_str(), "SHA1") == 0) + { + Stats.SHA1Bytes += CurStat.FileSize; + hex2bytes(CurStat.SHA1, hs->HashValue().data(), sizeof(CurStat.SHA1)); + CurStat.Flags |= FlSHA1; + } + else if (strcasecmp(hs->HashType().c_str(), "MD5Sum") == 0) + { + Stats.MD5Bytes += CurStat.FileSize; + hex2bytes(CurStat.MD5, hs->HashValue().data(), sizeof(CurStat.MD5)); + CurStat.Flags |= FlMD5; + } + else + return _error->Error("Got unknown unrequested hashtype %s", hs->HashType().c_str()); + } } - - Stats.SHA256Bytes += CurStat.FileSize; - - if (OpenFile() == false) - return false; - - SHA256Summation SHA256; - if (Fd->Seek(0) == false || SHA256.AddFD(*Fd, CurStat.FileSize) == false) - return false; - - SHA256Res = SHA256.Result(); - hex2bytes(CurStat.SHA256, SHA256Res.data(), sizeof(CurStat.SHA256)); - CurStat.Flags |= FlSHA256; - return true; -} - /*}}}*/ -// CacheDB::GetSHA256 - Get the SHA256 hash /*{{{*/ -// --------------------------------------------------------------------- -/* */ -bool CacheDB::GetSHA512(bool const &GenOnly) -{ - // Try to read the control information out of the DB. - if ((CurStat.Flags & FlSHA512) == FlSHA512) - { - if (GenOnly == true) - return true; - - SHA512Res = bytes2hex(CurStat.SHA512, sizeof(CurStat.SHA512)); + if (GenOnly == true) return true; - } - - Stats.SHA512Bytes += CurStat.FileSize; - - if (OpenFile() == false) - return false; - SHA512Summation SHA512; - if (Fd->Seek(0) == false || SHA512.AddFD(*Fd, CurStat.FileSize) == false) - return false; - - SHA512Res = SHA512.Result(); - hex2bytes(CurStat.SHA512, SHA512Res.data(), sizeof(CurStat.SHA512)); - CurStat.Flags |= FlSHA512; - return true; + return HashesList.push_back(HashString("MD5Sum", bytes2hex(CurStat.MD5, sizeof(CurStat.MD5)))) && + HashesList.push_back(HashString("SHA1", bytes2hex(CurStat.SHA1, sizeof(CurStat.SHA1)))) && + HashesList.push_back(HashString("SHA256", bytes2hex(CurStat.SHA256, sizeof(CurStat.SHA256)))) && + HashesList.push_back(HashString("SHA512", bytes2hex(CurStat.SHA512, sizeof(CurStat.SHA512)))); } /*}}}*/ // CacheDB::Finish - Write back the cache structure /*{{{*/ diff --git a/ftparchive/cachedb.h b/ftparchive/cachedb.h index 29d710d2c..b40fd7df7 100644 --- a/ftparchive/cachedb.h +++ b/ftparchive/cachedb.h @@ -12,6 +12,7 @@ #ifndef CACHEDB_H #define CACHEDB_H +#include #include #include @@ -94,11 +95,8 @@ class CacheDB bool LoadControl(); bool LoadContents(bool const &GenOnly); bool LoadSource(); - bool GetMD5(bool const &GenOnly); - bool GetSHA1(bool const &GenOnly); - bool GetSHA256(bool const &GenOnly); - bool GetSHA512(bool const &GenOnly); - + bool GetHashes(bool const GenOnly, unsigned int const DoHashes); + // Stat info stored in the DB, Fixed types since it is written to disk. enum FlagList {FlControl = (1<<0),FlMD5=(1<<1),FlContents=(1<<2), FlSize=(1<<3), FlSHA1=(1<<4), FlSHA256=(1<<5), @@ -142,12 +140,8 @@ class CacheDB debDebFile::MemControlExtract Control; ContentsExtract Contents; DscExtract Dsc; + HashStringList HashesList; - std::string MD5Res; - std::string SHA1Res; - std::string SHA256Res; - std::string SHA512Res; - // Runtime statistics struct Stats { @@ -183,16 +177,13 @@ class CacheDB bool SetFile(std::string const &FileName,struct stat St,FileFd *Fd); // terrible old overloaded interface - bool GetFileInfo(std::string const &FileName, - bool const &DoControl, - bool const &DoContents, - bool const &GenContentsOnly, - bool const &DoSource, - bool const &DoMD5, - bool const &DoSHA1, - bool const &DoSHA256, - bool const &DoSHA512, - bool const &checkMtime = false); + bool GetFileInfo(std::string const &FileName, + bool const &DoControl, + bool const &DoContents, + bool const &GenContentsOnly, + bool const DoSource, + unsigned int const DoHashes, + bool const &checkMtime = false); bool Finish(); diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index 7c1c9cc03..db617e92a 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -54,29 +54,42 @@ FTWScanner *FTWScanner::Owner; // SetTFRewriteData - Helper for setting rewrite lists /*{{{*/ // --------------------------------------------------------------------- /* */ -inline void SetTFRewriteData(struct TFRewriteData &tfrd, - const char *tag, +static inline TFRewriteData SetTFRewriteData(const char *tag, const char *rewrite, const char *newtag = 0) { - tfrd.Tag = tag; - tfrd.Rewrite = rewrite; - tfrd.NewTag = newtag; + TFRewriteData tfrd; + tfrd.Tag = tag; + tfrd.Rewrite = rewrite; + tfrd.NewTag = newtag; + return tfrd; +} + /*}}}*/ +// ConfigToDoHashes - which hashes to generate /*{{{*/ +static void SingleConfigToDoHashes(unsigned int &DoHashes, std::string const &Conf, unsigned int const Flag) +{ + if (_config->FindB(Conf, true) == true) + DoHashes |= Flag; + else + DoHashes &= ~Flag; +} +static void ConfigToDoHashes(unsigned int &DoHashes, std::string const &Conf) +{ + SingleConfigToDoHashes(DoHashes, Conf + "::MD5", Hashes::MD5SUM); + SingleConfigToDoHashes(DoHashes, Conf + "::SHA1", Hashes::SHA1SUM); + SingleConfigToDoHashes(DoHashes, Conf + "::SHA256", Hashes::SHA256SUM); + SingleConfigToDoHashes(DoHashes, Conf + "::SHA512", Hashes::SHA512SUM); } /*}}}*/ // FTWScanner::FTWScanner - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -FTWScanner::FTWScanner(string const &Arch): Arch(Arch) +FTWScanner::FTWScanner(string const &Arch): Arch(Arch), DoHashes(~0) { ErrorPrinted = false; NoLinkAct = !_config->FindB("APT::FTPArchive::DeLinkAct",true); - - DoMD5 = _config->FindB("APT::FTPArchive::MD5",true); - DoSHA1 = _config->FindB("APT::FTPArchive::SHA1",true); - DoSHA256 = _config->FindB("APT::FTPArchive::SHA256",true); - DoSHA512 = _config->FindB("APT::FTPArchive::SHA512",true); + ConfigToDoHashes(DoHashes, "APT::FTPArchive"); } /*}}}*/ // FTWScanner::Scanner - FTW Scanner /*{{{*/ @@ -327,10 +340,7 @@ PackagesWriter::PackagesWriter(string const &DB,string const &Overrides,string c DeLinkLimit = 0; // Process the command line options - DoMD5 = _config->FindB("APT::FTPArchive::Packages::MD5",DoMD5); - DoSHA1 = _config->FindB("APT::FTPArchive::Packages::SHA1",DoSHA1); - DoSHA256 = _config->FindB("APT::FTPArchive::Packages::SHA256",DoSHA256); - DoSHA512 = _config->FindB("APT::FTPArchive::Packages::SHA512",DoSHA512); + ConfigToDoHashes(DoHashes, "APT::FTPArchive::Packages"); DoAlwaysStat = _config->FindB("APT::FTPArchive::AlwaysStat", false); DoContents = _config->FindB("APT::FTPArchive::Contents",true); NoOverride = _config->FindB("APT::FTPArchive::NoOverrideMsg",false); @@ -385,12 +395,12 @@ bool FTWScanner::SetExts(string const &Vals) bool PackagesWriter::DoPackage(string FileName) { // Pull all the data we need form the DB - if (Db.GetFileInfo(FileName, - true, /* DoControl */ - DoContents, - true, /* GenContentsOnly */ - false, /* DoSource */ - DoMD5, DoSHA1, DoSHA256, DoSHA512, DoAlwaysStat) == false) + if (Db.GetFileInfo(FileName, + true, /* DoControl */ + DoContents, + true, /* GenContentsOnly */ + false, /* DoSource */ + DoHashes, DoAlwaysStat) == false) { return false; } @@ -454,30 +464,27 @@ bool PackagesWriter::DoPackage(string FileName) } // This lists all the changes to the fields we are going to make. - // (7 hardcoded + maintainer + suggests + end marker) - TFRewriteData Changes[6+2+OverItem->FieldOverride.size()+1+1]; - - unsigned int End = 0; - SetTFRewriteData(Changes[End++], "Size", Size); - if (DoMD5 == true) - SetTFRewriteData(Changes[End++], "MD5sum", Db.MD5Res.c_str()); - if (DoSHA1 == true) - SetTFRewriteData(Changes[End++], "SHA1", Db.SHA1Res.c_str()); - if (DoSHA256 == true) - SetTFRewriteData(Changes[End++], "SHA256", Db.SHA256Res.c_str()); - if (DoSHA512 == true) - SetTFRewriteData(Changes[End++], "SHA512", Db.SHA512Res.c_str()); - SetTFRewriteData(Changes[End++], "Filename", NewFileName.c_str()); - SetTFRewriteData(Changes[End++], "Priority", OverItem->Priority.c_str()); - SetTFRewriteData(Changes[End++], "Status", 0); - SetTFRewriteData(Changes[End++], "Optional", 0); + std::vector Changes; + + Changes.push_back(SetTFRewriteData("Size", Size)); + for (HashStringList::const_iterator hs = Db.HashesList.begin(); hs != Db.HashesList.end(); ++hs) + { + if (hs->HashType() == "MD5Sum") + Changes.push_back(SetTFRewriteData("MD5sum", hs->HashValue().c_str())); + else + Changes.push_back(SetTFRewriteData(hs->HashType().c_str(), hs->HashValue().c_str())); + } + Changes.push_back(SetTFRewriteData("Filename", NewFileName.c_str())); + Changes.push_back(SetTFRewriteData("Priority", OverItem->Priority.c_str())); + Changes.push_back(SetTFRewriteData("Status", 0)); + Changes.push_back(SetTFRewriteData("Optional", 0)); string DescriptionMd5; if (LongDescription == false) { MD5Summation descmd5; descmd5.Add(desc.c_str()); DescriptionMd5 = descmd5.Result().Value(); - SetTFRewriteData(Changes[End++], "Description-md5", DescriptionMd5.c_str()); + Changes.push_back(SetTFRewriteData("Description-md5", DescriptionMd5.c_str())); if (TransWriter != NULL) TransWriter->DoPackage(Package, desc, DescriptionMd5); } @@ -492,12 +499,12 @@ bool PackagesWriter::DoPackage(string FileName) NewLine(1); ioprintf(c1out, _(" %s maintainer is %s not %s\n"), Package.c_str(), Tags.FindS("Maintainer").c_str(), OverItem->OldMaint.c_str()); - } + } } - + if (NewMaint.empty() == false) - SetTFRewriteData(Changes[End++], "Maintainer", NewMaint.c_str()); - + Changes.push_back(SetTFRewriteData("Maintainer", NewMaint.c_str())); + /* Get rid of the Optional tag. This is an ugly, ugly, ugly hack that dpkg-scanpackages does. Well sort of. dpkg-scanpackages just does renaming but dpkg does this append bit. So we do the append bit, at least that way the @@ -508,17 +515,17 @@ bool PackagesWriter::DoPackage(string FileName) { if (Tags.FindS("Suggests").empty() == false) OptionalStr = Tags.FindS("Suggests") + ", " + OptionalStr; - SetTFRewriteData(Changes[End++], "Suggests", OptionalStr.c_str()); + Changes.push_back(SetTFRewriteData("Suggests", OptionalStr.c_str())); } - for (map::const_iterator I = OverItem->FieldOverride.begin(); + for (map::const_iterator I = OverItem->FieldOverride.begin(); I != OverItem->FieldOverride.end(); ++I) - SetTFRewriteData(Changes[End++],I->first.c_str(),I->second.c_str()); + Changes.push_back(SetTFRewriteData(I->first.c_str(),I->second.c_str())); - SetTFRewriteData(Changes[End++], 0, 0); + Changes.push_back(SetTFRewriteData( 0, 0)); // Rewrite and store the fields. - if (TFRewrite(Output,Tags,TFRewritePackageOrder,Changes) == false) + if (TFRewrite(Output,Tags,TFRewritePackageOrder,Changes.data()) == false) return false; fprintf(Output,"\n"); @@ -589,10 +596,7 @@ SourcesWriter::SourcesWriter(string const &DB, string const &BOverrides,string c BufSize = 0; // Process the command line options - DoMD5 = _config->FindB("APT::FTPArchive::Sources::MD5",DoMD5); - DoSHA1 = _config->FindB("APT::FTPArchive::Sources::SHA1",DoSHA1); - DoSHA256 = _config->FindB("APT::FTPArchive::Sources::SHA256",DoSHA256); - DoSHA512 = _config->FindB("APT::FTPArchive::Sources::SHA512",DoSHA512); + ConfigToDoHashes(DoHashes, "APT::FTPArchive::Sources"); NoOverride = _config->FindB("APT::FTPArchive::NoOverrideMsg",false); DoAlwaysStat = _config->FindB("APT::FTPArchive::AlwaysStat", false); @@ -614,17 +618,25 @@ SourcesWriter::SourcesWriter(string const &DB, string const &BOverrides,string c } /*}}}*/ // SourcesWriter::DoPackage - Process a single package /*{{{*/ -// --------------------------------------------------------------------- -/* */ +static std::ostream& addDscHash(std::ostream &out, unsigned int const DoHashes, + Hashes::SupportedHashes const DoIt, pkgTagSection &Tags, char const * const FieldName, + HashString const * const Hash, unsigned long long Size, std::string FileName) +{ + if ((DoHashes & DoIt) != DoIt || Tags.Exists(FieldName) == false || Hash == NULL) + return out; + out << "\n " << Hash->HashValue() << " " << Size << " " << FileName + << "\n " << Tags.FindS(FieldName); + return out; +} bool SourcesWriter::DoPackage(string FileName) { // Pull all the data we need form the DB if (Db.GetFileInfo(FileName, - false, /* DoControl */ - false, /* DoContents */ - false, /* GenContentsOnly */ - true, /* DoSource */ - DoMD5, DoSHA1, DoSHA256, DoSHA512, DoAlwaysStat) == false) + false, /* DoControl */ + false, /* DoContents */ + false, /* GenContentsOnly */ + true, /* DoSource */ + DoHashes, DoAlwaysStat) == false) { return false; } @@ -712,29 +724,19 @@ bool SourcesWriter::DoPackage(string FileName) *SOverItem = *OverItem; } } - + // Add the dsc to the files hash list string const strippedName = flNotDir(FileName); std::ostringstream ostreamFiles; - if (DoMD5 == true && Tags.Exists("Files")) - ostreamFiles << "\n " << Db.MD5Res.c_str() << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Files"); + addDscHash(ostreamFiles, DoHashes, Hashes::MD5SUM, Tags, "Files", Db.HashesList.find("MD5Sum"), St.st_size, strippedName); string const Files = ostreamFiles.str(); std::ostringstream ostreamSha1; - if (DoSHA1 == true && Tags.Exists("Checksums-Sha1")) - ostreamSha1 << "\n " << string(Db.SHA1Res.c_str()) << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Checksums-Sha1"); - + addDscHash(ostreamSha1, DoHashes, Hashes::SHA1SUM, Tags, "Checksums-Sha1", Db.HashesList.find("SHA1"), St.st_size, strippedName); std::ostringstream ostreamSha256; - if (DoSHA256 == true && Tags.Exists("Checksums-Sha256")) - ostreamSha256 << "\n " << string(Db.SHA256Res.c_str()) << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Checksums-Sha256"); - + addDscHash(ostreamSha256, DoHashes, Hashes::SHA256SUM, Tags, "Checksums-Sha256", Db.HashesList.find("SHA256"), St.st_size, strippedName); std::ostringstream ostreamSha512; - if (DoSHA512 == true && Tags.Exists("Checksums-Sha512")) - ostreamSha512 << "\n " << string(Db.SHA512Res.c_str()) << " " << St.st_size << " " - << strippedName << "\n " << Tags.FindS("Checksums-Sha512"); + addDscHash(ostreamSha512, DoHashes, Hashes::SHA512SUM, Tags, "Checksums-Sha512", Db.HashesList.find("SHA512"), St.st_size, strippedName); // Strip the DirStrip prefix from the FileName and add the PathPrefix string NewFileName; @@ -766,35 +768,54 @@ bool SourcesWriter::DoPackage(string FileName) string OriginalPath = Directory + ParseJnk; // Add missing hashes to source files - if ((DoSHA1 == true && !Tags.Exists("Checksums-Sha1")) || - (DoSHA256 == true && !Tags.Exists("Checksums-Sha256")) || - (DoSHA512 == true && !Tags.Exists("Checksums-Sha512"))) + if (((DoHashes & Hashes::SHA1SUM) == Hashes::SHA1SUM && !Tags.Exists("Checksums-Sha1")) || + ((DoHashes & Hashes::SHA256SUM) == Hashes::SHA256SUM && !Tags.Exists("Checksums-Sha256")) || + ((DoHashes & Hashes::SHA512SUM) == Hashes::SHA512SUM && !Tags.Exists("Checksums-Sha512"))) { - if (Db.GetFileInfo(OriginalPath, + if (Db.GetFileInfo(OriginalPath, false, /* DoControl */ false, /* DoContents */ false, /* GenContentsOnly */ false, /* DoSource */ - DoMD5, DoSHA1, DoSHA256, DoSHA512, + DoHashes, DoAlwaysStat) == false) { return _error->Error("Error getting file info"); } - if (DoSHA1 == true && !Tags.Exists("Checksums-Sha1")) - ostreamSha1 << "\n " << string(Db.SHA1Res) << " " - << Db.GetFileSize() << " " << ParseJnk; - - if (DoSHA256 == true && !Tags.Exists("Checksums-Sha256")) - ostreamSha256 << "\n " << string(Db.SHA256Res) << " " - << Db.GetFileSize() << " " << ParseJnk; - - if (DoSHA512 == true && !Tags.Exists("Checksums-Sha512")) - ostreamSha512 << "\n " << string(Db.SHA512Res) << " " - << Db.GetFileSize() << " " << ParseJnk; + for (HashStringList::const_iterator hs = Db.HashesList.begin(); hs != Db.HashesList.end(); ++hs) + { + if (hs->HashType() == "MD5Sum") + continue; + char const * fieldname; + std::ostream * out; + if (hs->HashType() == "SHA1") + { + fieldname = "Checksums-Sha1"; + out = &ostreamSha1; + } + else if (hs->HashType() == "SHA256") + { + fieldname = "Checksums-Sha256"; + out = &ostreamSha256; + } + else if (hs->HashType() == "SHA512") + { + fieldname = "Checksums-Sha512"; + out = &ostreamSha512; + } + else + { + _error->Warning("Ignoring unknown Checksumtype %s in SourcesWriter::DoPackages", hs->HashType().c_str()); + continue; + } + if (Tags.Exists(fieldname) == true) + continue; + (*out) << "\n " << hs->HashValue() << " " << Db.GetFileSize() << " " << ParseJnk; + } - // write back the GetFileInfo() stats data - Db.Finish(); + // write back the GetFileInfo() stats data + Db.Finish(); } // Perform the delinking operation @@ -820,22 +841,21 @@ bool SourcesWriter::DoPackage(string FileName) // This lists all the changes to the fields we are going to make. // (5 hardcoded + checksums + maintainer + end marker) - TFRewriteData Changes[5+2+1+SOverItem->FieldOverride.size()+1]; + std::vector Changes; - unsigned int End = 0; - SetTFRewriteData(Changes[End++],"Source",Package.c_str(),"Package"); + Changes.push_back(SetTFRewriteData("Source",Package.c_str(),"Package")); if (Files.empty() == false) - SetTFRewriteData(Changes[End++],"Files",Files.c_str()); + Changes.push_back(SetTFRewriteData("Files",Files.c_str())); if (ChecksumsSha1.empty() == false) - SetTFRewriteData(Changes[End++],"Checksums-Sha1",ChecksumsSha1.c_str()); + Changes.push_back(SetTFRewriteData("Checksums-Sha1",ChecksumsSha1.c_str())); if (ChecksumsSha256.empty() == false) - SetTFRewriteData(Changes[End++],"Checksums-Sha256",ChecksumsSha256.c_str()); + Changes.push_back(SetTFRewriteData("Checksums-Sha256",ChecksumsSha256.c_str())); if (ChecksumsSha512.empty() == false) - SetTFRewriteData(Changes[End++],"Checksums-Sha512",ChecksumsSha512.c_str()); + Changes.push_back(SetTFRewriteData("Checksums-Sha512",ChecksumsSha512.c_str())); if (Directory != "./") - SetTFRewriteData(Changes[End++],"Directory",Directory.c_str()); - SetTFRewriteData(Changes[End++],"Priority",BestPrio.c_str()); - SetTFRewriteData(Changes[End++],"Status",0); + Changes.push_back(SetTFRewriteData("Directory",Directory.c_str())); + Changes.push_back(SetTFRewriteData("Priority",BestPrio.c_str())); + Changes.push_back(SetTFRewriteData("Status",0)); // Rewrite the maintainer field if necessary bool MaintFailed; @@ -850,16 +870,16 @@ bool SourcesWriter::DoPackage(string FileName) } } if (NewMaint.empty() == false) - SetTFRewriteData(Changes[End++], "Maintainer", NewMaint.c_str()); + Changes.push_back(SetTFRewriteData("Maintainer", NewMaint.c_str())); for (map::const_iterator I = SOverItem->FieldOverride.begin(); I != SOverItem->FieldOverride.end(); ++I) - SetTFRewriteData(Changes[End++],I->first.c_str(),I->second.c_str()); + Changes.push_back(SetTFRewriteData(I->first.c_str(),I->second.c_str())); - SetTFRewriteData(Changes[End++], 0, 0); + Changes.push_back(SetTFRewriteData(0, 0)); // Rewrite and store the fields. - if (TFRewrite(Output,Tags,TFRewriteSourceOrder,Changes) == false) + if (TFRewrite(Output,Tags,TFRewriteSourceOrder,Changes.data()) == false) return false; fprintf(Output,"\n"); @@ -886,15 +906,13 @@ ContentsWriter::ContentsWriter(string const &DB, string const &Arch) : determine what the package name is. */ bool ContentsWriter::DoPackage(string FileName, string Package) { - if (!Db.GetFileInfo(FileName, - Package.empty(), /* DoControl */ - true, /* DoContents */ - false, /* GenContentsOnly */ - false, /* DoSource */ - false, /* DoMD5 */ - false, /* DoSHA1 */ - false, /* DoSHA256 */ - false)) /* DoSHA512 */ + if (!Db.GetFileInfo(FileName, + Package.empty(), /* DoControl */ + true, /* DoContents */ + false, /* GenContentsOnly */ + false, /* DoSource */ + 0, /* DoHashes */ + false /* checkMtime */)) { return false; } @@ -1030,9 +1048,7 @@ ReleaseWriter::ReleaseWriter(string const &/*DB*/) fprintf(Output, "%s: %s\n", (*I).first.c_str(), Value.c_str()); } - DoMD5 = _config->FindB("APT::FTPArchive::Release::MD5",DoMD5); - DoSHA1 = _config->FindB("APT::FTPArchive::Release::SHA1",DoSHA1); - DoSHA256 = _config->FindB("APT::FTPArchive::Release::SHA256",DoSHA256); + ConfigToDoHashes(DoHashes, "APT::FTPArchive::Release"); } /*}}}*/ // ReleaseWriter::DoPackage - Process a single package /*{{{*/ @@ -1066,15 +1082,8 @@ bool ReleaseWriter::DoPackage(string FileName) CheckSums[NewFileName].size = fd.Size(); Hashes hs; - hs.AddFD(fd, 0, DoMD5, DoSHA1, DoSHA256, DoSHA512); - if (DoMD5 == true) - CheckSums[NewFileName].MD5 = hs.MD5.Result(); - if (DoSHA1 == true) - CheckSums[NewFileName].SHA1 = hs.SHA1.Result(); - if (DoSHA256 == true) - CheckSums[NewFileName].SHA256 = hs.SHA256.Result(); - if (DoSHA512 == true) - CheckSums[NewFileName].SHA512 = hs.SHA512.Result(); + hs.AddFD(fd, 0, DoHashes); + CheckSums[NewFileName].Hashes = hs.GetHashStringList(); fd.Close(); return true; @@ -1083,54 +1092,29 @@ bool ReleaseWriter::DoPackage(string FileName) /*}}}*/ // ReleaseWriter::Finish - Output the checksums /*{{{*/ // --------------------------------------------------------------------- -void ReleaseWriter::Finish() +static void printChecksumTypeRecord(FILE * const Output, char const * const Type, map const &CheckSums) { - if (DoMD5 == true) - { - fprintf(Output, "MD5Sum:\n"); - for(map::const_iterator I = CheckSums.begin(); - I != CheckSums.end(); ++I) - { - fprintf(Output, " %s %16llu %s\n", - (*I).second.MD5.c_str(), - (*I).second.size, - (*I).first.c_str()); - } - } - if (DoSHA1 == true) - { - fprintf(Output, "SHA1:\n"); - for(map::const_iterator I = CheckSums.begin(); - I != CheckSums.end(); ++I) - { - fprintf(Output, " %s %16llu %s\n", - (*I).second.SHA1.c_str(), - (*I).second.size, - (*I).first.c_str()); - } - } - if (DoSHA256 == true) - { - fprintf(Output, "SHA256:\n"); - for(map::const_iterator I = CheckSums.begin(); + fprintf(Output, "%s:\n", Type); + for(map::const_iterator I = CheckSums.begin(); I != CheckSums.end(); ++I) { + HashString const * const hs = I->second.Hashes.find(Type); + if (hs == NULL) + continue; fprintf(Output, " %s %16llu %s\n", - (*I).second.SHA256.c_str(), + hs->HashValue().c_str(), (*I).second.size, (*I).first.c_str()); } - } - - fprintf(Output, "SHA512:\n"); - for(map::const_iterator I = CheckSums.begin(); - I != CheckSums.end(); - ++I) - { - fprintf(Output, " %s %16llu %s\n", - (*I).second.SHA512.c_str(), - (*I).second.size, - (*I).first.c_str()); - } - +} +void ReleaseWriter::Finish() +{ + if ((DoHashes & Hashes::MD5SUM) == Hashes::MD5SUM) + printChecksumTypeRecord(Output, "MD5Sum", CheckSums); + if ((DoHashes & Hashes::SHA1SUM) == Hashes::SHA1SUM) + printChecksumTypeRecord(Output, "SHA1", CheckSums); + if ((DoHashes & Hashes::SHA256SUM) == Hashes::SHA256SUM) + printChecksumTypeRecord(Output, "SHA256", CheckSums); + if ((DoHashes & Hashes::SHA512SUM) == Hashes::SHA512SUM) + printChecksumTypeRecord(Output, "SHA512", CheckSums); } diff --git a/ftparchive/writer.h b/ftparchive/writer.h index d8a10e0bb..226996475 100644 --- a/ftparchive/writer.h +++ b/ftparchive/writer.h @@ -13,6 +13,8 @@ #ifndef WRITER_H #define WRITER_H +#include + #include #include #include @@ -61,10 +63,7 @@ class FTWScanner } public: - bool DoMD5; - bool DoSHA1; - bool DoSHA256; - bool DoSHA512; + unsigned int DoHashes; unsigned long DeLinkLimit; string InternalPrefix; @@ -197,17 +196,14 @@ public: string PathPrefix; string DirStrip; -protected: struct CheckSum { - string MD5; - string SHA1; - string SHA256; - string SHA512; + HashStringList Hashes; // Limited by FileFd::Size() unsigned long long size; ~CheckSum() {}; }; +protected: map CheckSums; }; diff --git a/methods/server.cc b/methods/server.cc index 5a13f18a7..c91d3b218 100644 --- a/methods/server.cc +++ b/methods/server.cc @@ -392,9 +392,16 @@ bool ServerMethod::Fetch(FetchItem *) for (FetchItem *I = Queue; I != 0 && Depth < (signed)PipelineDepth; I = I->Next, Depth++) { - // If pipelining is disabled, we only queue 1 request - if (Server->Pipeline == false && Depth >= 0) - break; + if (Depth >= 0) + { + // If pipelining is disabled, we only queue 1 request + if (Server->Pipeline == false) + break; + // if we have no hashes, do at most one such request + // as we can't fixup pipeling misbehaviors otherwise + else if (I->ExpectedHashes.usable() == false) + break; + } // Make sure we stick with the same server if (Server->Comp(I->Uri) == false) @@ -546,7 +553,38 @@ int ServerMethod::Loop() // Send status to APT if (Result == true) { - Res.TakeHashes(*Server->GetHashes()); + Hashes * const resultHashes = Server->GetHashes(); + HashStringList const hashList = resultHashes->GetHashStringList(); + if (PipelineDepth != 0 && Queue->ExpectedHashes.usable() == true && Queue->ExpectedHashes != hashList) + { + // we did not get the expected hash… mhhh: + // could it be that server/proxy messed up pipelining? + FetchItem * BeforeI = Queue; + for (FetchItem *I = Queue->Next; I != 0 && I != QueueBack; I = I->Next) + { + if (I->ExpectedHashes.usable() == true && I->ExpectedHashes == hashList) + { + // yes, he did! Disable pipelining and rewrite queue + if (Server->Pipeline == true) + { + // FIXME: fake a warning message as we have no proper way of communicating here + std::string out; + strprintf(out, _("Automatically disabled %s due to incorrect response from server/proxy. (man 5 apt.conf)"), "Acquire::http::PipelineDepth"); + std::cerr << "W: " << out << std::endl; + Server->Pipeline = false; + // we keep the PipelineDepth value so that the rest of the queue can be fixed up as well + } + Rename(Res.Filename, I->DestFile); + Res.Filename = I->DestFile; + BeforeI->Next = I->Next; + I->Next = Queue; + Queue = I; + break; + } + BeforeI = I; + } + } + Res.TakeHashes(*resultHashes); URIDone(Res); } else diff --git a/methods/server.h b/methods/server.h index 0f45ab994..5299b3954 100644 --- a/methods/server.h +++ b/methods/server.h @@ -140,7 +140,7 @@ class ServerMethod : public pkgAcqMethod virtual ServerState * CreateServerState(URI uri) = 0; virtual void RotateDNS() = 0; - ServerMethod(const char *Ver,unsigned long Flags = 0) : pkgAcqMethod(Ver, Flags), Server(NULL), File(NULL), PipelineDepth(0), AllowRedirect(false), Debug(false) {}; + ServerMethod(const char *Ver,unsigned long Flags = 0) : pkgAcqMethod(Ver, Flags), Server(NULL), File(NULL), PipelineDepth(10), AllowRedirect(false), Debug(false) {}; virtual ~ServerMethod() {}; }; diff --git a/po/ar.po b/po/ar.po index e7c5ce7fe..c52b24fd2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@ -19,3012 +19,3025 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +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:161 +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:164 +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:171 #, c-format -msgid "Unable to locate package %s" -msgstr "تعذر العثور على الحزمة %s" - -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "ملفات الحزم:" +msgid "This APT does not support the versioning system '%s'" +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:181 +#, c-format +msgid "The package cache was built for different architectures: %s vs %s" msgstr "" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "الحزم المُدبّسة:" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "يعتمد" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(غير موجود)" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "يعتمد مسبقاً" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " مُثبّت:" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "يستحسن" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " مرشّح: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "يقترح" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(لاشيء)" +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "يعارض" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "يستبدل" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " جدول النسخ:" +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +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-pkg/pkgcache.cc:326 +msgid "Breaks" +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:326 +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 "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "مهم" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter" +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "مطلوب" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "فشل تغيير اسم %s إلى %s" +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +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:338 +msgid "optional" +msgstr "اختياري" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "إضافي" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" 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" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names 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" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions 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:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:598 #, 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:1233 #, 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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "قراءة قوائم الحزم" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, 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:865 -#, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "إلا أنه سيتم تثبيت %s" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +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:160 apt-pkg/contrib/fileutl.cc:2109 #, 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:175 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum غير متطابقة" + +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "الحجم غير متطابق" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "عمليّة غير صالحة %s" + +#: apt-pkg/acquire-item.cc:1679 #, 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:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" + +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" + +#: apt-pkg/acquire-item.cc:1775 #, 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:1797 #, 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:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1827 #, 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:1837 apt-pkg/acquire-item.cc:1842 #, 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:1972 #, 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:2038 #, 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:2074 #, c-format -msgid "Fetch source %s\n" -msgstr "إحضار المصدر %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" -#: 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 "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "Archives directory %spartial is missing." msgstr "" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "تعذر قفل دليل القائمة" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "أمر فك الحزمة '%s' فشل.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "Retrieving file %li of %li" msgstr "" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "أمر البناء '%s' فشل.\n" +msgid "Failed to fetch %s %s\n" +msgstr "فشل إحضار %s %s\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process 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 "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: cmdline/apt-get.cc:1054 +#: 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" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" +msgid "Did not understand pin type %s" 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" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, 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 "" -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "فشل إغلاق الملف %s" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:584 #, 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 "" -#: 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" +msgid "Line %u too long in source list %s." msgstr "" -#: 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" +msgid "Using CD-ROM mount point %s\n" msgstr "" -#: 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." +msgid "Stored label: %s\n" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "الاتصال بـ%s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "الوحدات المدعومة:" - -#: 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 "" - -#: 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 "" -#: 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 -#, 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 "" -#: 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" +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" +#: 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?" +#: 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 -#, 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 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" -#: 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 //" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" 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/depcache.cc:139 +msgid "Candidate versions" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" +#: 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" - -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "فشل USER، ردّ الخادم: %s" - -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "فشل PASS، ردّ الخادم: %s" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#, fuzzy +msgid "Reading state information" +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:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "فشل فتح %s" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "فشلت كتابة الملف %s" -#: methods/ftp.cc:306 +#: apt-pkg/tagfile.cc:169 #, 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" +msgid "Unable to parse package file %s (1)" msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "فشل" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "تعذر العثور على الحزمة %s" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "" +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "" +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "تعذر إرسال الأمر PORT" +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "فشل EPRT، ردّ الخادم: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:656 #, 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" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:664 #, 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 " +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "الاتصال بـ%s (%s)" +#: apt-pkg/indexrecords.cc:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: methods/connect.cc:94 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/connect.cc:100 -#, c-format -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/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: methods/connect.cc:126 -#, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "تعذر الاتصال بـ%s:%s (%s)." +#: apt-pkg/indexrecords.cc:168 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "تعذر فتح ملف قاعدة البيانات %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 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "Connecting to %s" -msgstr "الاتصال بـ%s" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Could not resolve '%s'" +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Temporary failure resolving '%s'" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "System error resolving '%s:%s'" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/connect.cc:258 -#, 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?!" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: 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/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "خطأ في الكتابة إلى الملف" +#: apt-pkg/sourcelist.cc:416 +#, c-format +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "تم تثبيت %s" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "خطأ في القراءة من الخادم" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "تهيئة %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "خطأ في الكتابة إلى الملف" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "إزالة %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "فشل التحديد" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "تمت إزالة %s بالكامل" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "انتهى وقت الاتصال" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "خطأ في الكتابة إلى ملف المُخرجات" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "بانتظار الترويسات" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -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/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "أرسل خادم http ترويسة ردّ غير صالحة" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +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:990 +#, c-format +msgid "Unpacking %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:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "التحضير لتهيئة %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "خادم http له دعم مدى معطوب" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "تم تثبيت %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "نسق تاريخ مجهول" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "التحضير لإزالة %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "بيانات ترويسة سيئة" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "تم إزالة %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "فشل الاتصال" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "التحضير لإزالة %s بالكامل" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "خطأ داخلي" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "تمت إزالة %s بالكامل" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "حساب الترقية..." +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "تمّ" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "تعذرت الكتابة إلى %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 " فشل." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "لم يمكن تصحيح المعتمدات" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "لم يمكن تقليص مجموعة الترقية" +msgid "Waited for %s but it wasn't there" +msgstr "" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " تم" +#: apt-pkg/deb/dpkgpm.cc:1563 +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 "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه." +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +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:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [مُثبّتة]" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [مُثبّتة]" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +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:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: 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 "" -#: apt-private/private-output.cc:248 +#: 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 "[upgradable from: %s]" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#: apt-private/private-output.cc:434 +#. 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 "" -#: apt-private/private-output.cc:436 +#. 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:443 -msgid "but it is not installable" -msgstr "إلا أنه غير قابل للتثبيت" - -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "إلا أنها حزمة وهمية" +msgid "%lih %limin %lis" +msgstr "" -#: apt-private/private-output.cc:448 -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 "" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "إلا أنه لن يتم تثبيتها" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " أو" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "تعذر العثور على التحديد %s" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "سيتم تثبيت الحزم الجديدة التالية:" - -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "سيتم إزالة الحزم التالية:" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "سيتم الإبقاء على الحزم التالية:" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "ستتم ترقية الحزم التالية:" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "سيتم تثبيط الحزم التالية:" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "سيتم تغيير الحزم المبقاة التالية:" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "%s (due to %s) " -msgstr "%s (بسبب %s) " +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: apt-private/private-output.cc:675 +#: apt-pkg/contrib/fileutl.cc:422 +#, 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" -"لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:841 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، " +msgid "Sub-process %s received a segmentation fault." +msgstr "" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/fileutl.cc:843 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu أعيد تثبيتها، " +msgid "Sub-process %s received signal %u." +msgstr "" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu downgraded, " -msgstr "%lu مثبطة، " +msgid "Sub-process %s returned an error code (%u)" +msgstr "" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/fileutl.cc:849 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 "" -#: apt-private/private-output.cc:718 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +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:740 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +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:746 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "فشل إغلاق الملف %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "لا يقبل الأمر update أية مُعطيات" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "خطأ في القراءة" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:1552 #, 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-private/private-update.cc:94 -msgid "All packages are up to date." +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, 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 "write, still have %llu to write but couldn't" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "مشكلة في إغلاق الملف" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "مشكلة في مزامنة الملف" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "خطأ داخلي، لم تنته عملية الترتيب" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "مشكلة في إغلاق الملف" -#: 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/contrib/fileutl.cc:1988 +msgid "Problem syncing the 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 -#: apt-private/private-install.cc:155 +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "تعذر إنشاء %s" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n" +msgid "%c%s... Error!" +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:160 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "بحاجة إلى جلب %sب من الأرشيف.\n" +msgid "%c%s... Done" +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:167 +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" +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:172 +#: 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 "" + +#: apt-pkg/contrib/mmap.cc:119 #, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" +msgid "Couldn't make mmap of %llu bytes" +msgstr "تعذر التغيير إلى %s" -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "ليس هناك مساحة كافية في %s." +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +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/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "تعذر إرسال الأمر PORT" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" 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/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "فشلت كتابة الملف %s" -#: apt-private/private-install.cc:222 +#: 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 "" -"أنت على وشك أن تقوم بشيء ضارّ جداً\n" -"كي تستمر اكتب العبارة '%s'\n" -" ؟] " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -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 "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -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-install.cc:313 -msgid "Some files failed to download" -msgstr "فشل تنزيل بعض الملفات" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -"تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" -"fix-missing؟" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "اختصار نوع مجهول: '%c'" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "تعذر تصحيح الحزم المفقودة." +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "فتح ملف التهيئة %s" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "إجهاض التثبيت." +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +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/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: 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." +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" 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/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +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] "سيتم تثبيت الحزم الجديدة التالية:" -msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +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/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +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] "" +#. 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:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" +#: 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:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." +#: 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: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." +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" msgstr "" -#: 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-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:802 -msgid "Suggested 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 =." +msgstr "" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "الحزم المستحسنة:" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" +msgid "Option '%s' is too long" +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/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" +msgid "Invalid operation %s" +msgstr "عمليّة غير صالحة %s" -#: apt-private/private-install.cc:846 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s هي النسخة الأحدث.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +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" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +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" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " الحزم العادية:" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +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 "" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " الحزمة الوهمية المفردة:" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "تحذير: تعذرت المصادقة على الحزم التالية!" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " الحزم الوهمية المختلطة:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "تم غض النظر عن تحذير المصادقة.\n" +#: cmdline/apt-cache.cc:363 +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:365 +msgid "Total distinct versions: " +msgstr "مجموع النسخ الفريدة:" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "تثبيت هذه الحزم دون التحقق منها؟" +#: cmdline/apt-cache.cc:367 +#, fuzzy +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:369 +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:372 +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:374 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "مجموع علاقات النسخ/الملفات:" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "جلب:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "تجاهل" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "خطأ" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "مجموع المساحة المحسوب حسابها:" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "جلب %sب في %s (%sب/Ø«)\n" +msgid "Package file %s is out of sync." +msgstr "" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [يعمل]" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "يجب أن تعطي صيغة واحدة بالضبط" + +#: cmdline/apt-cache.cc:1472 +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:1597 +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:1604 cmdline/apt-cache.cc:1695 +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:1618 +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:1630 cmdline/apt-cache.cc:1675 +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:1638 +msgid " Installed: " +msgstr " مُثبّت:" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " مرشّح: " -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(لاشيء)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "إعداد افتراضيّ سيّء!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +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:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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:1801 +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 "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً" +"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/update:30 -msgid "Merging available information" -msgstr "دمج المعلومات المتوفرة" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" msgstr "" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: 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:459 -msgid "Failed to allocate diversion" -msgstr "" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "تعذر العثور على الحزمة %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "خطأ داخلي في AddDiversion" +#: 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-inst/filelist.cc:477 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Double add of diversion %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 "ملف تهيئة مُزدوج %s/%s" +msgid "Couldn't find package %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:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -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-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" +#: 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" +#: 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 -#, c-format -msgid "Failed to stat %s" -msgstr "" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Failed to rename %s to %s" -msgstr "فشل تغيير اسم %s إلى %s" +msgid "Unable to find a source package for %s" +msgstr "تعذر العثور على مصدر الحزمة %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 "" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "المسار طويل جداً" - -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Overwrite package match with no version for %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:438 +#: cmdline/apt-get.cc:839 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "تخطي الملف '%s' المنزل مسبقاً\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to stat %s" -msgstr "" +msgid "Couldn't determine free space in %s" +msgstr "تعذر حساب المساحة الحرة في %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Failed to write file %s" -msgstr "فشلت كتابة الملف %s" +msgid "You don't have enough free space in %s" +msgstr "ليس هناك مساحة كافية في %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:893 #, c-format -msgid "Failed to close file %s" -msgstr "فشل إغلاق الملف %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\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:898 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "خطأ داخلي، تعذر العثور على العضو %s" +msgid "Fetch source %s\n" +msgstr "إحضار المصدر %s\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "فشل إحضار بعض الأرشيفات." -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "توقيع الأرشيف غير صالح" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-inst/contrib/arfile.cc:96 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "توقيع الأرشيف غير صالح" +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "أمر فك الحزمة '%s' فشل.\n" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" 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 "فشلت قراءة ترويسات الأرشيف" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "أمر البناء '%s' فشل.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "فشل تنفيذ gzip" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "أرشيف فاسد" +#: cmdline/apt-get.cc:1056 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "فشل تحقّق Checksum لملف Tar، الأرشيف فاسد" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "%s has no build depends.\n" msgstr "" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Unable to stat %s." +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Progress: [%3i%%]" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-get.cc:1337 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "نظام الحزم '%s' غير مدعوم" +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +#: cmdline/apt-get.cc:1382 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Wrote %i records.\n" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Wrote %i records with %i missing files.\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "" + +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "" + +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "الاتصال بـ%s (%s)" + +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "الوحدات المدعومة:" + +#: cmdline/apt-get.cc:1657 +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" -msgstr "" +#: 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" +#: 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 "" - -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" +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 "" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +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 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" -#: 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" +#: 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" +#: 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 -msgid "The package cache file is corrupted, it is too small" +#: 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 "" +msgid "Unable to read the cdrom database %s" +msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: 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 "Depends" -msgstr "يعتمد" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "يعتمد مسبقاً" - -#: 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" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: 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 "" +msgid "PASS failed, server said: %s" +msgstr "فشل PASS، ردّ الخادم: %s" -#: 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 "" +"تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، 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 (NewVersion1)" +#: 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 "" +#: 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 "" +#: 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 "أغلق الخادم الاتصال" -#: 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 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %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 "قراءة قوائم الحزم" - -#: 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 "تعذرت الكتابة إلى %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "فشل" -#: 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:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/edsp.cc:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "تعذر إرسال الأمر PORT" -#: 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 "فشل إعادة التسمية ، %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "MD5Sum غير متطابقة" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "فشل EPRT، ردّ الخادم: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "الحجم غير متطابق" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "عمليّة غير صالحة %s" +#: 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 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" +#: methods/ftp.cc:890 +#, c-format +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" +#: 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 "فشل نقل البيانات، ردّ الخادم '%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:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "" +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 "" +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" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: 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 "" +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 "" +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 "" +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 "" +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." +msgid "Could not resolve '%s'" msgstr "" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." +msgid "Temporary failure resolving '%s'" msgstr "" -#: 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:899 +#: methods/connect.cc:209 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" +msgid "System error resolving '%s:%s'" msgstr "" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "تعذر الاتصال بـ%s %s:" + +#: 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 "" -#: 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-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 "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" msgstr "" -#: 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 "فشل إغلاق الملف %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 "" -#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 -#, c-format -msgid "Line %u too long in source list %s." -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 "فشل التحديد" + +#: 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 ترويسة ردّ غير صالحة" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\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:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "بانتظار القرص...\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "خادم http له دعم مدى معطوب" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "تركيب القرص...\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "نسق تاريخ مجهول" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "جاري التعرف..." +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "بيانات ترويسة سيئة" -#: apt-pkg/cdrom.cc:662 +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "فشل الاتصال" + +#: methods/server.cc:572 #, c-format -msgid "Stored label: %s\n" +msgid "" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "خطأ داخلي" -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +#: 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:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: apt-private/private-list.cc:123 +msgid "Listing" msgstr "" -#: apt-pkg/cdrom.cc:771 +#: apt-private/private-list.cc:156 #, c-format -msgid "Found label '%s'\n" -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/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "هذا الاسم غير صالح، حاول مجدداً.\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "تصحيح المعتمدات..." -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"هذا القرص مسمى: \n" -"'%s'\n" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " فشل." -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "نسخ قوائم الحزم..." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "لم يمكن تصحيح المعتمدات" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "كتابة لائحة المصادر الجديدة\n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "لم يمكن تقليص مجموعة الترقية" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +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 "" +#: 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/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." +#: 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:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [مُثبّتة]" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [مُثبّتة]" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +#: apt-private/private-output.cc:242 #, fuzzy -msgid "Reading state information" -msgstr "دمج المعلومات المتوفرة" - -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "فشل فتح %s" +msgid "[installed,automatic]" +msgstr " [مُثبّتة]" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "فشلت كتابة الملف %s" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [مُثبّتة]" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:434 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" +msgid "but %s is installed" +msgstr "إلا أن %s مثبت" -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-output.cc:436 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" - -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "تعذر العثور على الحزمة %s" +msgid "but %s is to be installed" +msgstr "إلا أنه سيتم تثبيت %s" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "تعذر العثور على الحزمة %s" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +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:445 +msgid "but it is a virtual package" +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:448 +msgid "but it is not installed" +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-output.cc:448 +msgid "but it is not going to be installed" +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:453 +msgid " or" +msgstr " أو" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" msgstr "" -#: 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:502 +msgid "The following NEW packages will be installed:" +msgstr "سيتم تثبيت الحزم الجديدة التالية:" -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +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:550 +msgid "The following packages have been kept back:" +msgstr "سيتم الإبقاء على الحزم التالية:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +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:592 +msgid "The following packages will be DOWNGRADED:" +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:612 +msgid "The following held packages will be changed:" +msgstr "سيتم تغيير الحزم المبقاة التالية:" -#: apt-pkg/sourcelist.cc:127 +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (بسبب %s) " -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: apt-private/private-output.cc:675 +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:173 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu أعيد تثبيتها، " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" +msgid "%lu downgraded, " +msgstr "%lu مثبطة، " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -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:740 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -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:746 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "Y" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" msgstr "" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "فتح %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "لا يقبل الأمر update أية مُعطيات" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -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/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -#: apt-pkg/sourcelist.cc:416 +#: apt-private/private-show.cc:156 #, c-format -msgid "Type '%s' is not known on stanza %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/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "تم تثبيت %s" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +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:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "إزالة %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "تمت إزالة %s بالكامل" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "" +#: apt-private/private-install.cc:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "يا للغرابة... لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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:157 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\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:162 #, c-format -msgid "Directory '%s' missing" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "بحاجة إلى جلب %sب من الأرشيف.\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:169 #, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "فشل إغلاق الملف %s" - -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "تحضير %s" - -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "فتح %s" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %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:174 +#, fuzzy, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:202 #, c-format -msgid "Installed %s" -msgstr "تم تثبيت %s" +msgid "You don't have enough free space in %s." +msgstr "ليس هناك مساحة كافية في %s." -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "التحضير لإزالة %s" +#: apt-private/private-install.cc:212 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:1004 -#, c-format -msgid "Removed %s" -msgstr "تم إزالة %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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 "التحضير لإزالة %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:222 +msgid "Yes, do as I say!" +msgstr "نعم، افعل ما أقوله!" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:224 #, c-format -msgid "Completely removed %s" -msgstr "تمت إزالة %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 "" +"أنت على وشك أن تقوم بشيء ضارّ جداً\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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "إجهاض." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "هل تريد الاستمرار؟" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:315 +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:322 +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 "" +#: apt-private/private-install.cc:326 +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:331 +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:332 +msgid "Aborting install." +msgstr "إجهاض التثبيت." -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:368 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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:501 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "قد تساعد المعلومات التالية في حل المشكلة:" + +#: apt-private/private-install.cc:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" + +#: apt-private/private-install.cc:515 +#, 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:519 #, 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:521 +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" + +#: apt-private/private-install.cc:616 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:640 +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:661 +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:738 +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:828 +msgid "Suggested packages:" +msgstr "الحزم المقترحة:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "الحزم المستحسنة:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 +#, 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:867 #, 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:872 #, 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:920 +#, 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:925 +#, 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:967 +#, 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:973 +#, 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:88 +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:119 +msgid "Ign " +msgstr "تجاهل" -#: apt-pkg/contrib/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "مشكلة في إغلاق الملف" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "خطأ" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "مشكلة في مزامنة الملف" +#: apt-private/acqprogress.cc:147 +#, 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:237 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... خطأ!" +msgid " [Working]" +msgstr " [يعمل]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:298 #, 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... تمّ" +msgid "Can not read mirror file '%s'" +msgstr "فشل إغلاق الملف %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 "فشل إغلاق الملف %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 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "تعذر التغيير إلى %s" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "تعذر فتح %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "تعذر إرسال الأمر PORT" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "إعداد افتراضيّ سيّء!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %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 "اضغط مفتاح الإدخال للاستمرار." + +#: 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:184 #, 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-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-pkg/contrib/configuration.cc:900 +#: 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 =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3038,12 +3051,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "تعذر إنشاء %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "تعذر الحصول على نسخة debconf. هل هي مثبتة؟" @@ -3122,121 +3130,121 @@ msgstr "لم تُطابق أية تحديدات" msgid "Some files are missing in the package file group `%s'" msgstr "بعض الملفات مفقودة في مجموعة ملف الحزمة `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "قاعدة البيانات كانت فاسدة، فتم تغيير اسمها إلى %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "قاعدة البيانات قديمة، محاولة ترقية %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "تعذرت إزالة %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: تعذرت قراءة الدليل %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "فشل فتح %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** فشل ربط %s بـ%s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr "" diff --git a/po/ast.po b/po/ast.po index 1f568903d..5817a2bce 100644 --- a/po/ast.po +++ b/po/ast.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (ast)\n" @@ -15,3203 +15,3216 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Virtaal 0.5.2\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Caché de paquetes balera." + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "El ficheru de caché de paquetes ta tollíu" + +#: apt-pkg/pkgcache.cc:161 +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:164 +#, 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:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "El ficheru de paquetes %s nun ta sincronizáu." +msgid "This APT does not support the versioning system '%s'" +msgstr "Esti APT nun soporta'l sistema de versiones '%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 "Nun s'alcontraron paquetes" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "La caché de paquetes creóse pa una arquitectura estremada" -#: 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:324 +msgid "Depends" +msgstr "Depende de" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Predepende de" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Suxer" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomienda" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "En conflictu con" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Sustituye a" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Fai obsoletu a" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Ruempe" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Aumenta" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "requeríu" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "estándar" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcional" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Nun pue alcontrase'l paquete %s" +msgid "Index file type '%s' is not supported" +msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheros de paquete:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error de compilación d'espresión regular - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "La caché tien un sistema de versiones incompatible" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Hebo un error al procesar %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete" +"Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes na chincheta:" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nun s'alcontró)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instaláu: " +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidatu: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(dengún)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Chincheta de paquetes: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Lleendo llista de paquetes" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabla de versiones:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Recoyendo ficheros qu'apurren" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pa %s compiláu en %s %s\n" +msgid "Unable to write to %s" +msgstr "Nun se pue escribir en %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 "" -"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" - -#: 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'" - -#: 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Fallu de E/S al grabar caché d'oríxenes" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falló al montar '%s' a '%s'" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +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/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos non empareyaos" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" 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" -#: 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-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "falló'l cambiu de nome, %s (%s -> %s)." -#: 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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "La suma hash nun concasa" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "El tamañu nun concasa" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación incorreuta: %s" + +#: apt-pkg/acquire-item.cc:1679 #, 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" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Inorar versión non disponible de '%s' del paquete '%s'" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nun se pudo parchear el ficheru release %s" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nun pudo alcontrase'l paquete %s" +#: apt-pkg/acquire-item.cc:1737 +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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s axustáu como instaláu manualmente.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s axustáu como instaláu automáticamente.\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:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1827 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Error internu, l'iguador de problemes frañó coses" - -#: 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" - -#: 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" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nun pudo alcontrase un paquete fonte pa %s" +msgid "GPG error: %s: %s" +msgstr "Fallu GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"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: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/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" 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 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Saltando'l ficheru yá descargáu '%s'\n" +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." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nun pue determinase l'espaciu llibre de %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "El bloque de fornidor %s nun contién una buelga dixital" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nun hai espaciu llibre bastante en %s" +msgid "List directory %spartial is missing." +msgstr "Falta'l direutoriu de llistes %spartial." -#. 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.cc:92 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" +msgid "Archives directory %spartial is missing." +msgstr "Falta'l direutoriu d'archivos %spartial." -#. TRANSLATOR: The required 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.cc:100 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Hai falta descargar %sB d'archivos fonte.\n" +msgid "Unable to lock directory %s" +msgstr "Nun pudo bloquiase'l direutoriu %s" -#: cmdline/apt-get.cc:902 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Fetch source %s\n" -msgstr "Fonte descargada %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falló la descarga de dellos archivos." +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Descargando ficheru %li de %li (falten %s)" -#: 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-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Descargando ficheru %li de %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, 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 "Failed to fetch %s %s\n" +msgstr "Falló algamar %s %s\n" -#: cmdline/apt-get.cc:962 +#: 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 "" +"Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los " +"antiguos nel so llugar." + +#: 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 "Unpack command '%s' failed.\n" -msgstr "Falló la orde de desempaquetáu '%s'.\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:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Falló la orde build '%s'.\n" +msgid "Did not understand pin type %s" +msgstr "Nun s'entiende'l tipu de pin %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Falló el procesu fíu" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nun hai prioridá (o ye cero) conseñada pa pin" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Hai que conseñar polo menos un paquete pa verificar les dependencies de " -"construcción" +"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:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nun pudo abrise'l ficheru '%s'" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "Llinia %u enforma llarga na llista d'oríxenes %s." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando'l CD-ROM...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nun tien dependencies de construcción.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando el puntu de montaxe de CD-ROM %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Esperando'l discu...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando'l CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " + +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +"Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y " +"%zu firmes\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +"Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o " +"hai una arquiteutura inválida?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Atopóse la etiqueta: '%s'\n" + +#: 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" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye " -"enforma nuevu" +"Esti discu llámase: \n" +"'%s'\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando les llistes de paquetes..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribiendo llista nueva d'oríxenes\n" + +#: 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" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"La dependencia %s en %s nun puede satisfacese porque denguna versión " -"disponible del paquete %s satisfaz los requisitos de versión" +"El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " -"paquete %s" +"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-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Creando árbol de dependencies" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiones candidates" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Xeneración de dependencies" + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Nun se pudo abrir el ficheru d'estáu %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." +msgid "Failed to write temporary StateFile %s" +msgstr "Falló la escritura del ficheru temporal d'estáu %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Fallu al procesar les dependencies de construcción" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nun s'alcontró la distribución '%s' pa '%s'" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Nun s'alcontró la versión '%s' pa '%s'" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nun pue alcontrase'l paquete %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nun pudo alcontrase la xera '%s'" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Coneutando a %s (%s)" +msgid "Couldn't find any package by glob '%s'" +msgstr "Nun pudo alcontrase dengún paquete por regex '%s'" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos sofitaos:" +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' " +"como non tien nengún d'ellos" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:648 +#, 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" -#: 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/cacheset.cc:656 +#, 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" -#: 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" +#: apt-pkg/cacheset.cc:664 +#, 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" -#: 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/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nun se pudo parchear el ficheru release %s" -#: 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/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Ensin seiciones nel ficheru release %s" -#: 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/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Ensin entrada Hash nel ficheru release %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/indexrecords.cc:149 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperaba %s pero nun taba ellí" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s" -#: 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/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada inválida pa 'Date' nel ficheru release %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Nun pudo abrise %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)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/sourcelist.cc:170 +#, 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)" -#: 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/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)" -#: 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/sourcelist.cc:184 +#, 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)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nun se pudo lleer la base datos %s del CD-ROM" +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/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/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" 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" +"Llinia %lu mal formada na llista d'oríxenes %s ([%s] clave %s nun tien valor)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:206 #, 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á." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Nun s'atopa'l discu." +#: 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/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" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nun se pudo determinar el nome llocal" - -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "El sirvidor refugó la conexón, y dixo: %s" +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/ftp.cc:225 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "USER failed, server said: %s" -msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:224 #, 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." -msgstr "" -"Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" -"ProxyLogin ta baleru." +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/ftp.cc:280 +#: apt-pkg/sourcelist.cc:335 #, 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" +msgid "Opening %s" +msgstr "Abriendo %s" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:371 #, 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" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falló" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nun se pudo coneutar un socket pasivu." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nun pudo obtener un zócalu oyente" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nun se pudo enllazar con un socket" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nun se pudo escuchar nel socket" +msgid "Malformed line %u in source list %s (type)" +msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nun se pudo determinar el nome del socket" +#: 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/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nun se pudo mandar la orde PORT" +#: 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/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Direición de familia %u desconocida (AF_*)" +msgid "Installing %s" +msgstr "Instalando %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 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" +msgid "Configuring %s" +msgstr "Configurando %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 "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Gandió'l tiempu del zócalu de datos" +msgid "Removing %s" +msgstr "Desinstalando %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -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 " +msgid "Completely removing %s" +msgstr "Desinstalóse dafechu %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Coneutando a %s (%s)" +msgid "Noting disappearance of %s" +msgstr "Anotando desaniciáu de %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 "Executando activador de post-instalación 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 "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" +msgstr "Falta'l direutoriu '%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 "Nun se pudo coneutar a %s:%s (%s)." +msgid "Could not open file '%s'" +msgstr "Nun pudo abrise'l ficheru '%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 "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón" +msgid "Preparing %s" +msgstr "Preparando %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nun se pudo coneutar a %s:%s (%s)." +msgid "Unpacking %s" +msgstr "Desempaquetando %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 "Coneutando a %s" +msgid "Preparing to configure %s" +msgstr "Preparándose pa configurar %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nun se pudo resolver '%s'" +msgid "Installed %s" +msgstr "%s instaláu" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Fallu temporal al resolver '%s'" +msgid "Preparing for removal of %s" +msgstr "Preparándose pa desinstalar %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s desinstaláu" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" +msgid "Preparing to completely remove %s" +msgstr "Preparándose pa desinstalar dafechu %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nun pudo coneutase a %s:%s:" +msgid "Completely removed %s" +msgstr "Desinstalóse dafechu %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" 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." +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nun se pue escribir en %s" -#: 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/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Esperaba %s pero nun taba ellí" + +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Fallu desconocíu al executar gpgv" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Les siguientes robles nun valieron:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problemes de dependencies - déxase ensin configurar" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1632 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 robles siguientes nun pudieron verificase porque la to llave pública nun " -"ta a mano:\n" +"Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que " +"siguió dende un fallu previu" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1638 +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" -#: 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." - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fallu al lleer nel sirvidor" +#: apt-pkg/deb/dpkgpm.cc:1645 +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" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fallu al escribir nel ficheru" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Falló la escoyeta" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Gandió'l tiempu de conexón" +#: 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?" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fallu al escribir nel ficheru de salida" +#: 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?" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Esperando les testeres" +#. 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 interrumpióse, tienes qu'executar manualmente '%s' pa iguar el " +"problema. " -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Fallu na llinia testera" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non bloquiáu" -#: 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" +#. 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 "El sirvidor HTTP mandó una testera incorreuta de Content-Length" +#. 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 "El sirvidor HTTP mandó una testera incorreuta de 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 "Esti sirvidor HTTP tien rotu'l soporte d'alcance" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formatu de data desconocíu" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Escoyeta %s que nun s'atopa" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Datos de testera incorreutos" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Fallo la conexón" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nun puede abrise'l ficheru de bloquéu %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Fallu internu" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando l'anovamientu... " +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Nun se pudo torgar %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Fecho" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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:395 +#, 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:413 +#, 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:422 #, 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 "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Iguando dependencies..." +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "El subprocesu %s recibió un fallu de segmentación." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falló." +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "El subprocesu %s recibió una señal %u." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nun pudieron iguase les dependencies" +#: apt-pkg/contrib/fileutl.cc:847 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nun pue amenorgase'l conxuntu d'actualización" +#: apt-pkg/contrib/fileutl.cc:849 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-cachefile.cc:104 -msgid " Done" -msgstr " Fecho" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Fallu d'escritura" -#: 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/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problemes zarrando'l ficheru gzip %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencies incumplíes. Téntalo usando -f." +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nun se pudo abrir el ficheru %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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nun pudo abrise un ficheru descriptor %d" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instaláu]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Nun pudo criase'l soprocesu IPC" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instaláu]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Nun pudo executase'l compresor " -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Fallu de llectura" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instaláu]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instaláu]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Problem closing the file %s" +msgstr "Problemes zarrando'l ficheru %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "pero %s ta instaláu" +msgid "Problem renaming the file %s to %s" +msgstr "Hai problemes al renomar el ficheru %s a %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "pero %s ta pa instalar" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "pero nun ye instalable" +msgid "Problem unlinking the file %s" +msgstr "Hai problemes desvenceyando'l ficheru %s" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "pero ye un paquete virtual" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Hai problemes al sincronizar el ficheru" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "pero nun ta instaláu" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nun ye a lleer %s" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "pero nun va instalase" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ¡Fallu!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Fecho" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Los siguientes paquetes nun cumplen dependencies:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Van instalase los siguientes paquetes NUEVOS:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fecho" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Los siguientes paquetes van DESANICIASE:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nun se puede facer mmap d'un ficheru baleru" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Los siguientes paquetes tan reteníos:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nun pudo duplicase'l ficheru descriptor %i" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Los siguientes paquetes van actualizase:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Los siguientes paquetes van DESACTUALIZASE:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nun pudo zarrase mmap" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Van camudase los siguientes paquetes reteníos:" +#: 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-output.cc:667 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por %s) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nun se pudo facer mmap de %lu bytes" -#: apt-private/private-output.cc:675 +#: 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 "" -"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 "" -"AVISU: Los siguientes paquetes esenciales van desaniciase.\n" -"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" +"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-output.cc:706 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualizaos, %lu nuevos instalaos, " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Nun pudó incrementase'l tamañu de MMap col llímite de %lu bytes ya torgáu" -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalaos, " +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Nun pudó incrementase'l tamañu de MMap ya que crecer automáticamente ta " +"desactivao pol usuariu." -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualizaos, " +msgid "Unable to stat the mount point %s" +msgstr "Nun puede algamase información del puntu de montaxe %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nun se pudo montar el CD-ROM" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu para desaniciar y %lu nun actualizaos.\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Triba d'abreviatura que nun se reconoz: «%c»" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nun instalaos dafechu o desaniciaos.\n" +msgid "Opening configuration file %s" +msgstr "Abriendo ficheros de configuración %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:740 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/configuration.cc:803 +#, 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." -#. 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:746 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Fallu de sintaxis %s:%u: Marca mal formada" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Error de compilación d'espresión regular - %s" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "La orde update nun lleva argumentos" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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)" -msgstr "" +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:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!" +#. 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:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu." +#: 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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Error internu, ordenar nun finó" +#: 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: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/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" -#. 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 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Hai que descargar %sB/%sB d'archivos.\n" +msgid "Option %s requires an argument." +msgstr "La opción %s necesita un argumentu." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Hai que descargar %sB d'archivos.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, 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 "Option %s requires an integer argument, not '%s'" +msgstr "La opción %s pide un argumentu enteru, non '%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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" +msgid "Option '%s' is too long" +msgstr "Opción '%s' enforma llarga" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nun tienes espaciu libre bastante en %s." +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: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/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operación incorreuta: %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." +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "El paquete %s versión %s nun cumple una dependencia:\n" -#. 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!" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Total de nomes de paquetes: " -#: 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 "" -"Tas a piques de facer daqué potencialmente dañible.\n" -"Pa continuar escribe la frase '%s'\n" -" ?] " +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Total de cadarmes de paquetes: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Encaboxar." +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Paquetes normales: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "¿Quies continuar?" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuales puros: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Dellos ficheros nun pudieron descargase" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Paquetes virtuales cenciellos: " -#: 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?" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuales amestaos: " -#: 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" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Falten: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nun pudieron iguase los paquetes que falten." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Versiones distintes en total: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Encaboxando la instalación." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Descripciones distintes en total: " -#: 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:" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Dependencies totales: " -#: 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." +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Rellaciones versión/ficheru en total: " -#: 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" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Rellaciones descripción/ficheru en total: " -#: 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 "" -"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." +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Mapes de provisiones en total: " -#. -#. 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:" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Cadenes globalizaes en total: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error internu, AutoRemover rompió coses" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Espaciu de dependencies de versión en total: " -#: 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] "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:" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Espaciu ociosu en total: " + +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Informe del total d'espaciu: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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] "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 "Package file %s is out of sync." +msgstr "El ficheru de paquetes %s nun ta sincronizáu." -#: 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] "Usa 'apt-get autoremove' pa desinstalalos." -msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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/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:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Has de dar polo menos un patrón de gueta" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " -"conseña una solución)." -#: 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 "" -"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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Ficheros de paquete:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquetes frañaos" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Instalaránse los siguientes paquetes extra:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Paquetes na chincheta:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquetes afalaos:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nun s'alcontró)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquetes encamentaos" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instaláu: " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidatu: " -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(dengún)" -#: apt-private/private-install.cc:841 -#, 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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Chincheta de paquetes: " -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s yá ta na versión más nueva.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabla de versiones:" -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 "Esbillada la versión %s (%s) pa %s\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pa %s compiláu en %s %s\n" -#: 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" +#: cmdline/apt-cache.cc:1801 +#, 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" -#. 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" +#: 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-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" +#: 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-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Falló al montar '%s' a '%s'" + +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!" +#: 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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avisu d'autenticación saltáu.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos non empareyaos" -#: 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-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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "¿Instalar esos paquetes ensin verificación?" +#: 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-private/private-download.cc:91 apt-pkg/update.cc:77 +#: 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'" + +#: 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'" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falló algamar %s %s\n" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nun pudo renomase %s como %s" +msgid "Can not find version '%s' of package '%s'" +msgstr "Inorar versión non disponible de '%s' del paquete '%s'" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Couldn't find package %s" +msgstr "Nun pudo alcontrase'l paquete %s" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s axustáu como instaláu manualmente.\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Oxe " +#: 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-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Des:" +#: 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-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: 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-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: 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-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Descargaos %sB en %s (%sB/s)\n" +#: 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-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid " [Working]" -msgstr " [Tresnando]" +msgid "Unable to find a source package for %s" +msgstr "Nun pudo alcontrase un paquete fonte pa %s" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:786 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Cambeu de mediu: Por favor meti'l discu etiquetáu\n" -" '%s'\n" -"na unidá '%s' y calca Intro\n" +"AVISU: '%s' packaging is maintained in the '%s' version control system at:\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 "Nun ye a lleer %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 "Nun se pudo cambiar a %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 "Nun s'alcontró ficheru espeyu '%s'" - -#. 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'" - -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:791 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nun s'alcontró ficheru espeyu '%s'" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Espeyu: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Falló criar un tubu IPC al soprocesu" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexón encaboxada prematuramente" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "¡Mal axuste por omisió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 "Calca Intro pa continuar." - -#: 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 "" -"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" - -#: 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" - -#: dselect/install:105 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 "" -"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" +"Por favor, usa:\n" +"bzr get %s\n" +"pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal " +"paquete.\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doble suma de desvíu %s -> %s" +msgid "Couldn't determine free space in %s" +msgstr "Nun pue determinase l'espaciu llibre de %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ficheru de configuración duplicáu %s/%s" +msgid "You don't have enough free space in %s" +msgstr "Nun hai espaciu llibre bastante 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:893 #, c-format -msgid "The path %s is too long" -msgstr "La trayeutoria %s ye enforma llarga" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\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:898 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s más d'una vegada" +msgid "Need to get %sB of source archives.\n" +msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is diverted" -msgstr "El direutorio %s ta desviáu" +msgid "Fetch source %s\n" +msgstr "Fonte descargada %s\n" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Falló la descarga de dellos archivos." -#: 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:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Descarga completa y en mou de sólo descarga" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "Nun pudo lleese %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-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nun pudo renomase %s como %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Falló la orde de desempaquetáu '%s'.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: 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" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Falló la orde build '%s'.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La trayeutoria ye perllarga" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Falló el procesu fíu" -#: 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:1031 +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" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, 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" +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:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "Nun ye a lleer %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Nun pudo algamase información de dependencies de construcción pa %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "Falló la escritura nel ficheru %s" +msgid "%s has no build depends.\n" +msgstr "%s nun tien dependencies de construcción.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Falló al pesllar el ficheru %s" +#: cmdline/apt-get.cc:1296 +#, 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" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, 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'" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " +"paquete %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error internu, nun se pue atopar el miembru %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-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Ficheru de control inanalizable" +#: cmdline/apt-get.cc:1376 +#, 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" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Robla del ficheru inválida" +#: cmdline/apt-get.cc:1382 +#, 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" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fallu al lleer la testera de miembru del ficheru" +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Invalid archive member header %s" -msgstr "Testera de miembru del archivu %s inválida" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." -#: 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" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Fallu al procesar les dependencies de construcción" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Testera del TAR triba %u desconocida, miembru %s" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Coneutando a %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nun pudo lleese %s." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Módulos sofitaos:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +#, 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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Executando dpkt" - -#: 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" - -#: 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" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i rexistros escritos.\n" - -#: 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" - -#: 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-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/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 "" -"Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun " -"concasen\n" - -#: 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" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "El hash nun concasa pa: %s" - -#: 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-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 "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "pero nun ta instaláu" -#: 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-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/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-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/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-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/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-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/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nun pudo lleese la llista de fontes." +#: 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:155 -msgid "Empty package cache" -msgstr "Caché de paquetes balera." +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "El ficheru de caché de paquetes ta tollíu" +#: 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 "El ficheru de caché de paquetes ye una versión incompatible" +#: 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 "El ficheru de caché de paquetes ta tollíu" +#: 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 "Esti APT nun soporta'l sistema de versiones '%s'" - -#: 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" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende de" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Predepende de" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suxer" +msgid "Unable to read the cdrom database %s" +msgstr "Nun se pudo lleer la base datos %s del CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomienda" +#: 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:322 -msgid "Conflicts" -msgstr "En conflictu con" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM malu" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Sustituye a" +#: 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:323 -msgid "Obsoletes" -msgstr "Fai obsoletu a" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Nun s'atopa'l discu." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ruempe" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Nun s'atopa'l ficheru." -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Aumenta" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "Falló al lleer" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "requeríu" +#: 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/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Entrando" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nun se pudo determinar el nome del par" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nun se pudo determinar el nome llocal" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" +msgid "The server refused the connection and said: %s" +msgstr "El sirvidor refugó la conexón, y dixo: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La caché tien un sistema de versiones incompatible" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "L'usuariu (USER) falló; el sirvidor dixo: %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 "Hebo un error al procesar %s (FindPkg)" +#: 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: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 "" -"Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar." +"Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" +"ProxyLogin ta baleru." -#: 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." +#: 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" -#: 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:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "La triba (TYPE) falló; el sirvidor dixo: %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." +#: 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/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "El sirvidor zarró la conexón" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una rempuesta revirtió'l buffer." -#: 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:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupción del protocolu" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recoyendo ficheros qu'apurren" +#: 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/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Nun se pue escribir en %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/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:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falló" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Nun se pudo coneutar un socket pasivu." -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo nun pudo obtener un zócalu oyente" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Nun se pudo enllazar con un socket" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Nun se pudo escuchar nel socket" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: 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:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:802 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "falló'l cambiu de nome, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Direición de familia %u desconocida (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma hash nun concasa" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT falló; el sirvidor dixo: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "El tamañu nun concasa" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Gandió'l tiempu de conexón col zócalu de datos" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación incorreuta: %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Nun se pudo aceptar la conexón" -#: 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: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: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:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" -#: 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:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Gandió'l tiempu del zócalu de datos" -#: 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 "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:1699 +#: methods/connect.cc:76 #, 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 "Connecting to %s (%s)" +msgstr "Coneutando 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 "" -"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 "[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 "Fallu GPG: %s: %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/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 "" -"Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " -"necesites iguar manualmente esti paquete (por faltar una arquitectura)" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nun se pudo coneutar 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 "" +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-item.cc:1991 +#: methods/connect.cc:126 #, 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 connect to %s:%s (%s)." +msgstr "Nun se pudo coneutar 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 "El bloque de fornidor %s nun contién una buelga dixital" +msgid "Connecting to %s" +msgstr "Coneutando a %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 "Falta'l direutoriu de llistes %spartial." +msgid "Could not resolve '%s'" +msgstr "Nun se pudo resolver '%s'" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta'l direutoriu d'archivos %spartial." +msgid "Temporary failure resolving '%s'" +msgstr "Fallu temporal al resolver '%s'" -#: apt-pkg/acquire.cc:99 -#, c-format -msgid "Unable to lock directory %s" -msgstr "Nun pudo bloquiase'l direutoriu %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Daqué raro asocedió resolviendo '%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 "Descargando ficheru %li de %li (falten %s)" +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:496 +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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Fallo la conexón" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, c-format msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Creando árbol de dependencies" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Fallu internu" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiones candidates" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando l'anovamientu... " -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Xeneración de dependencies" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fecho" -#: 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-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 "Nun se pudo abrir el ficheru d'estáu %s" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:156 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Falló la escritura del ficheru temporal d'estáu %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/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-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Iguando dependencies..." -#: 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-cachefile.cc:96 +msgid " failed." +msgstr " falló." -#: 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'" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nun pudieron iguase les dependencies" -#: 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-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nun pue amenorgase'l conxuntu d'actualización" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Nun pudo alcontrase la xera '%s'" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fecho" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Nun pudo alcontrase dengún paquete por regex '%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/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-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencies incumplíes. Téntalo usando -f." -#: 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:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -"Nun pueden seleicionase versiones pal paquete'%s' como puramente 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:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instaláu]" -#: 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instaláu]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -"Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente " -"virtual" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instaláu]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instaláu]" + +#: apt-private/private-output.cc:248 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +msgid "[upgradable from: %s]" msgstr "" -"Nun puede seleicionase versión candidata pal paquete %s que nun tien " -"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:252 +msgid "[residual-config]" msgstr "" -"Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:434 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Nun se pudo parchear el ficheru release %s" +msgid "but %s is installed" +msgstr "pero %s ta instaláu" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:436 #, c-format -msgid "No sections in Release file %s" -msgstr "Ensin seiciones nel ficheru release %s" +msgid "but %s is to be installed" +msgstr "pero %s ta pa instalar" -#: 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:443 +msgid "but it is not installable" +msgstr "pero nun ye instalable" -#: 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:445 +msgid "but it is a virtual package" +msgstr "pero ye un paquete virtual" -#: 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:448 +msgid "but it is not installed" +msgstr "pero nun ta instaláu" -#: 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:448 +msgid "but it is not going to be installed" +msgstr "pero nun va instalase" -#: apt-pkg/sourcelist.cc:170 -#, 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)" +#: apt-private/private-output.cc:453 +msgid " or" +msgstr " o" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)" +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Los siguientes paquetes nun cumplen dependencies:" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Van instalase los siguientes paquetes NUEVOS:" + +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Los siguientes paquetes van DESANICIASE:" + +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Los siguientes paquetes tan reteníos:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Los siguientes paquetes van actualizase:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Los siguientes paquetes van DESACTUALIZASE:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Van camudase los siguientes paquetes reteníos:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "%s (due to %s) " +msgstr "%s (por %s) " + +#: apt-private/private-output.cc:675 +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 ([%s] nun ye una asignación)" +"AVISU: Los siguientes paquetes esenciales van desaniciase.\n" +"¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:706 #, 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 upgraded, %lu newly installed, " +msgstr "%lu actualizaos, %lu nuevos instalaos, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:710 #, 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 reinstalled, " +msgstr "%lu reinstalaos, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:712 #, 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 downgraded, " +msgstr "%lu desactualizaos, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:714 #, 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 to remove and %lu not upgraded.\n" +msgstr "%lu para desaniciar y %lu nun actualizaos.\n" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:718 #, 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)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nun instalaos dafechu o desaniciaos.\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:740 +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:746 +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:757 +msgid "Y" +msgstr "S" -#: 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: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "La orde update nun lleva argumentos" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "Abriendo %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)" -msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" +#: 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 "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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "Sí, ¡facer lo que digo!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, 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:230 apt-private/private-install.cc:248 +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:245 +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:315 +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:322 +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:326 +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:331 +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:332 +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:368 +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:372 +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:393 +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:501 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:504 apt-private/private-install.cc:655 +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 -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-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error internu, AutoRemover rompió coses" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:515 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" +"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-private/private-install.cc:519 +#, 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-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:521 +#, 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/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:614 +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-private/private-install.cc:616 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:640 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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Paquetes encamentaos" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 +#, 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:967 +#, 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:973 +#, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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" +msgid "[Mirror: %s]" +msgstr "[Espeyu: %s]" -#: 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" +#: 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:146 -msgid "Unable to close mmap" -msgstr "Nun pudo zarrase mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexón encaboxada prematuramente" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nun se pudo sincronizase mmap " +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "¡Mal axuste por omisión!" -#: 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: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:322 -msgid "Failed to truncate file" -msgstr "Falló al francer el ficheru" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?" -#: 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 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-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Fallu internu en 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 "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-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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3236,12 +3249,7 @@ msgstr "" "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nun ye a lleer %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nun se pue alcontrar la versión de debconf. ¿Ta instaláu debconf?" @@ -3359,17 +3367,17 @@ msgstr "Nun concasó denguna seleición" msgid "Some files are missing in the package file group `%s'" msgstr "Falten dellos ficheros nel grupu de ficheros de paquete `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "La BD corrompiose, ficheru renomáu como %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "La DB ye antigua, tentando actualizar %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3377,105 +3385,105 @@ msgstr "" "El formatu de la base de datos nun ye válidu. Si anovaste dende una versión " "anterior d'apt, desanicia y recrea la base de datos." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nun pudo abrise'l ficheru de BD %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Nun pudo lleese l'enllaz %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "L'archivu nun tien rexistru de control" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Nun pudo algamase un cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Nun pudo lleese'l direutoriu %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Nun pudo lleese %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Errores aplicables al ficheru " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Nun pudo resolvese %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Falló'l percorríu pol árbol" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Nun pudo abrise %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Desenllazar %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Nun pudo lleese l'enllaz %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Nun pudo desenllazase %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falló enllazar enllazr %s a %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Alcanzose'l llímite of %sB de desenllaz.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "L'archivu nun tien el campu paquetes" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nun tien la entrada saltos\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el curiador de %s ye %s y non %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nun tien la entrada saltos de fonte\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco nun tiene una entrada binaria de saltos\n" diff --git a/po/bg.po b/po/bg.po index 991a686f4..b631fdd0f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -21,3254 +21,3267 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: KBabel 1.11.4\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Празен кеш на пакети" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Файлът за кеш на пакети е повреден" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Файлът за кеш на пакети е несъвместима версия" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Файлът за кеш на пакети е повреден, твърде малък е" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Пакетният файл %s не е синхронизиран." +msgid "This APT does not support the versioning system '%s'" +msgstr "Тази версия на APT не поддържа система за версии „%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 "Няма намерени пакети" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Кешът на пакети е бил направен за различна архитектура" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Трябва да въведете поне един шаблон за търсене" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +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:324 +msgid "PreDepends" +msgstr "Предварително зависи от" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Предлага се" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Препоръчва се" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "В конфликт с" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Заменя" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Изважда от употреба" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Чупи" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Подобрява" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "важен" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "изискван" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "стандартен" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "незадължителен" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "допълнителен" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Пакетът %s не може да бъде намерен" +msgid "Index file type '%s' is not supported" +msgstr "Не се поддържа индексен файл от типа „%s“" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Пакетни файлове:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +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" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Възникна грешка при обработката на %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл" +"Еха, надхвърлихте броя имена на пакети, на който е способна тази версия на " +"APT." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Отбити пакети:" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не са намерени)" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя описания, на който е способна тази версия на APT." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Инсталирана: " +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(няма)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "" +"Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Отбиване на пакета: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Четене на списъците с пакети" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблица с версиите:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s за %s компилиран на %s %s\n" +msgid "Unable to write to %s" +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 [опции] 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Изпращане на сценарий към програмата за удовлетворяване на зависимости" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Сложете диск в устройството и натиснете „Enter“" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Изпращане на заявка към програмата за удовлетворяване на зависимости" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Неуспех при монтиране на %s на %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +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/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" +"Външната програма за удовлетворяване на зависимости се провали без да изведе " +"съобщение за грешка" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Повторете този процес за останалите дискове от комплекта." +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Аргументите не са по двойки" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "преименуването се провали, %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-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Несъответствие на контролната сума" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Несъответствие на размера" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Невалидна операция %s" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" +#: apt-pkg/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Не може да се открие елемент „%s“ във файла Release (объркан ред в sources." +"list или повреден файл)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Използване на пакет източник „%s“ вместо „%s“\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Не е открита контролна сума за „%s“ във файла Release" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Игнориране на несъществуваща версия „%s“ на пакета „%s“" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "Неуспех при намирането на пакет %s" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"Файлът със служебна информация за „%s“ е остарял (валиден до %s). Няма да се " +"прилагат обновявания от това хранилище." -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s е отбелязан като ръчно инсталиран.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s е отбелязан като автоматично инсталиран.\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." +"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 "" -"Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " -"manual“." - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" - -#: 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 "Трябва да укажете поне един пакет за изтегляне на изходния му код" +"Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се " +"използват старите индексни файлове. Грешка от GPG: %s: %s\n" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Неуспех при намирането на изходен код на пакет %s" +msgid "GPG error: %s: %s" +msgstr "Грешка от GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"Пакетирането на „%s“ се разработва в система за контрол на версиите „%s“ на " -"адрес:\n" -"%s\n" +"Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " +"ръчно да оправите този пакет (поради пропусната архитектура)." -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Не е открит източник, от който да се изтегли версия „%s“ на „%s“" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Използвайте:\n" -"bzr branch %s\n" -"за да изтеглите последните промени в пакета (евентуално в процес на " -"разработка).\n" +"Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускане на вече изтегления файл „%s“\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Блокът на производителя %s не съдържа отпечатък" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Неуспех при определянето на свободното пространство в %s" +msgid "List directory %spartial is missing." +msgstr "Директорията със списъци %spartial липсва." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Нямате достатъчно свободно пространство в %s" +msgid "Archives directory %spartial is missing." +msgstr "Директорията за архиви %spartial липсва." -#. 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.cc:100 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" +msgid "Unable to lock directory %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 -#: cmdline/apt-get.cc:896 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Изтегляне на файл %li от %li (остават %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, 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:314 -msgid "Download complete and in download only mode" -msgstr "Изтеглянето завърши в режим само на изтегляне" +msgid "Retrieving file %li of %li" +msgstr "Изтегляне на файл %li от %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Неуспех при изтеглянето на %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 "" -"Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" +"Някои индексни файлове не можаха да бъдат изтеглени. Те са пренебрегнати или " +"са използвани по-стари." + +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Трябва да добавите адреси-URI от тип „source“ в sources.list" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Командата за разпакетиране „%s“ пропадна.\n" +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 не е правилна, понеже в източниците " +"няма такова издание" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Невалиден запис във файла с настройки %s, липсва заглавна част Package" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Командата за компилиране „%s“ пропадна.\n" +msgid "Did not understand pin type %s" +msgstr "Неизвестен тип за отбиване %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Процесът-потомък пропадна" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Няма указан приоритет (или е нула) на отбиването" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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“. За повече информация вижте " +"информацията за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Неуспех при конфигуриране на „%s“. " + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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::" -"Architectures в apt.conf(5)." +"В следствие на циклични зависимости от типа „В конфликт с/Предварително " +"зависи от“, за да се продължи инсталацията трябва да се премахне необходимия " +"пакет %s. Това често е лошо, но ако наистина искате да го направите, " +"активирайте опцията APT::Force-LoopBreak." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "" -"Неуспех при получаването на информация за зависимостите за компилиране на %s" +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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s няма зависимости за компилиране.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Използване на точка за монтиране на CD-ROM %s\n" + +#: 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 "Stored label: %s\n" +msgstr "Запазен етикет: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Сканиране на диска за индексни файлове...\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, %s не се позволява " -"за пакети „%s“" +"Намерени са %zu индекса на пакети, %zu индекса на пакети с изходен код, %zu " +"индекса с преводи и %zu подписа.\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " -"не може да бъде намерен" +"Не са намерени файлове с пакети. Мое би дискът не е с Дебиан или е за " +"погрешна компютърна архитектура." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " -"пакет %s е твърде нов" +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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже версията " -"кандидат на пакета %s не може да удовлетвори изискването за версия" +"Наименование на този диск: \n" +"„%s“\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " -"няма подходящи версии" +"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " +"него." + +#: 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 "Четене на информацията за състоянието" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Неуспех при отварянето на StateFile %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." +msgid "Failed to write temporary StateFile %s" +msgstr "Неуспех при запис на временен StateFile %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Неуспех при обработката на зависимостите за компилиране" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Неуспех при анализирането на пакетен файл %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Журнал на промените в %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Неуспех при анализирането на пакетен файл %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Поддържани модули:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Не е намерено издание „%s“ на „%s“" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Не е намерена версия „%s“ на „%s“" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Пакетът %s не може да бъде намерен" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Неуспех при намиране на задача „%s“" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Не е възможно избиране на версия за пакета „%s“ понеже е виртуален" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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 "Трябва да укажете поне един пакет за изтегляне на изходния му код" +"Не е възможно избиране на инсталирана или кандидат версия за пакета „%s“ " +"понеже той няма нито едната" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" 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" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" +"Не е възможно избиране на кандидат-версия за пакета „%s“, защото няма " +"подходящ кандидати" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инсталиран.\n" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Не е възможно избиране на инсталирана версия на пакета „%s“, защото не е " +"инсталиран" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "Пакетът „%s“ вече е отбелязан като ръчно инсталиран.\n" +msgid "Unable to parse Release file %s" +msgstr "Неуспех при анализиране на файл Release %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "Пакетът „%s“ вече е отбелязан като автоматично инсталиран.\n" +msgid "No sections in Release file %s" +msgstr "Във файла Release %s липсват раздели" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "%s was already set on hold.\n" -msgstr "Пакетът „%s“ вече е задуржан.\n" +msgid "No Hash entry in Release file %s" +msgstr "Във файла Release %s липсва контролна сума" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s was already not hold.\n" -msgstr "Пакетът „%s“ вече е задържан.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Неправилна стойност за „Valid-Until“ във файла Release %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/indexrecords.cc:168 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Изчака се завършването на %s, но той не беше пуснат" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Неправилна стойност за „Date“ във файла Release %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "Пакетът „%s“ е задържан.\n" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:170 #, 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." +msgid "Malformed line %lu in source list %s ([option] unparseable)" 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)." +"Лошо форматиран ред %lu в списъка с източници %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/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (твърде кратка [опция])" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:184 #, 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" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -"Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. " -"„apt-get update“ не може да се използва за добавяне на нови дискове" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Грешен CD-ROM" +"Лошо форматиран ред %lu в списъка с източници %s ([%s] не е присвояване)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва." +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (липсва ключ в [%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 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сървърът отказа свързване и съобщи: %s" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s ([%s] ключът %s няма " +"стойност)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER се провали, сървърът съобщи: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:208 #, 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 (dist)" +msgstr "Лошо форматиран ред %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" - -#: 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" +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -"Неуспех при свързването на гнездо за данни, допустимото време за свързване " -"изтече" - -#: methods/ftp.cc:716 methods/connect.cc:116 -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 "Неуспех при определянето на името на гнездото" +"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Неуспех при изпращането на командата PORT" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Неизвестно семейство адреси %u (AF_*)" +msgid "Opening %s" +msgstr "Отваряне на %s" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT се провали, сървърът съобщи: %s" +msgid "Malformed line %u in source list %s (type)" +msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -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:838 -msgid "Unable to accept connection" -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:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблем при хеширане на файла" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +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 "Неуспех при намирането на IP адреса на „%s“" +msgid "Removed %s" +msgstr "%s е премахнат" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Временен неуспех при намирането на IP адреса на „%s“" +msgid "Preparing to completely remove %s" +msgstr "Подготовка за пълно премахване на %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s е напълно премахнат" + +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Нещо лошо се случи при намирането на IP адреса на „%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 "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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?!" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Операцията е прекъсната" + +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" msgstr "" -"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " -"ключа?!" +"Поради достигане на максималния брой доклади (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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "отлагане на настройката поради неудовлетворени зависимости" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Неуспех при изпълнение на „gpgv“ за проверка на подписа (инсталиран ли е " -"gpgv?)" +"Доклад за зависимостите не е записан защото съобщението за грешка е породено " +"от друга грешка." -#. 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 a disk full " +"error" msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчно дисково пространство" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Неизвестна грешка при изпълнението на gpgv" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчна оперативна памет" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Следните подписи са невалидни:\n" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Доклад за зависимостите не е записан защото грешката е причинена от " +"недостатъчно дисково пространство" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1679 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" +"Доклад за зависимостите не е записан поради входно-изходна грешка с 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). Може би липсват " +"административни права?" -#: 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 "Допустимото време за свързване изтече" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liм %liс" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Грешка при записа на изходен файл" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Чакане на заглавни части" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Изборът %s не е намерен" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Невалиден ред на заглавна част" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Не се използва заключване за файл за заключване %s, който е само за четене" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open 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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Не се използва заключване за файл за заключване %s, който е монтиран по NFS" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Неуспех при достъпа до заключване %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Не може да се създаде списък от файлове, защото „%s“ не е директория" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Неизвестен формат на дата" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Пропускане на „%s“ в директорията „%s“, понеже не е обикновен файл" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Невалидни данни на заглавната част" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Пропускане на файла „%s“ в директорията „%s“, понеже няма разширение" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Неуспех при свързването" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"Пропускане на файла „%s“ в директорията „%s“, понеже разширението му е грешно" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Вътрешна грешка" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Изчисляване на актуализацията..." +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Под-процесът %s получи сигнал %u." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Готово" +#: apt-pkg/contrib/fileutl.cc:847 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:849 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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Грешка при запис" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:951 #, 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 "Problem closing the gzip file %s" +msgstr "Проблем при затваряне на компресираният файл %s (gzip)" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Коригиране на зависимостите..." +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Неуспех при отварянето на файла %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " пропадна." +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Неуспех при отварянето на файлов манипулатор %d" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Неуспех при коригирането на зависимостите" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Неуспех при създаването на подпроцес IPC" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Неуспех при минимизирането на набора актуализации" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Неуспех при изпълнението на компресиращата програма " -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Готово" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +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:1552 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -"Възможно е да изпълните „apt-get -f install“, за да коригирате тези " -"неизправности." +"грешка при четене, все още има %llu за четене, но няма нито един останал" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Неудовлетворени зависимости. Опитайте с „-f“." +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" +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:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблем при затваряне на файла %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Инсталиран]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Проблем при преименуване на файла %s на %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Инсталиран]" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблем при изтриване на файла %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Проблем при синхронизиране на файла" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Инсталиран]" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Неуспех при получаването на атрибути за %s" -#: 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:434 +#. 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 "Невъзможно е да се прехвърли в паметта празен файл" + +#: 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:436 +#: 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 "Неуспех при прехвърлянето в паметта на %llu байта" -#: apt-private/private-output.cc:443 -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:445 -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:448 -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:448 -msgid "but it is not going to be installed" -msgstr "но той няма да бъде инсталиран" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Неуспех при отрязване на края на файла" -#: apt-private/private-output.cc:453 -msgid " or" -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:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -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 "" +"Неуспех при увеличаване на паметта за MMap. Достигнато е текущото " +"ограничение от %lu байта." -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -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-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Следните пакети ще бъдат ПРЕМАХНАТИ:" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Следните пакети няма да бъдат променени:" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Неуспех при намирането на атрибутите на cdrom" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Следните пакети ще бъдат актуализирани:" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Неизвестен тип на абревиатура: „%c“" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Следните пакети ще бъдат ВЪРНАТИ КЪМ ПО-СТАРА ВЕРСИЯ:" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Отваряне на конфигурационен файл %s" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Следните задържани пакети ще бъдат променени:" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтактична грешка %s:%u: В началото на блока няма име." -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "%s (due to %s) " -msgstr "%s (поради %s) " +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" -#: apt-private/private-output.cc:675 -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:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтактична грешка %s:%u: Излишни символи след стойността" + +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n" -"Това НЕ би трябвало да става освен ако знаете точно какво правите!" +"Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното " +"ниво" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu актуализирани, %lu нови инсталирани, " +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu преинсталирани, " +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "%lu downgraded, " -msgstr "%lu върнати към по-стара версия, " +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтактична грешка %s:%u: Неподдържана директива „%s“" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:902 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu за премахване и %lu без промяна.\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Синтактична грешка %s:%u: директивата clear изисква аргумент дърво от опции" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:952 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu не са напълно инсталирани или премахнати.\n" +msgid "Syntax error %s:%u: Extra junk at end of file" +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:740 -msgid "[Y/n]" -msgstr "[Y/n]" +#. 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: 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:746 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Неизвестна опция за команден ред „%c“ [от %s]." -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "Y" +#: 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 не е разпозната" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Опцията за команден ред %s не е булева" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Regex compilation error - %s" -msgstr "Грешка при компилирането на регулярния израз - %s" +msgid "Option %s requires an argument." +msgstr "Опция %s изисква аргумент." -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Командата „update“ не възприема аргументи" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Опция %s: Значението трябва да има =." -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/cmndline.cc:278 #, 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 "Option %s requires an integer argument, not '%s'" +msgstr "Опция %s изисква аргумент цяло число, не „%s“" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Опция „%s“ е твърде дълга" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/cmndline.cc:341 #, 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 "Sense %s is not understood, try true or false." +msgstr "Смисълът %s не е ясен, опитайте true или false." -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Невалидна операция %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" +#: 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:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Общо имена на пакети : " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Вътрешна грешка, „Ordering“ не завърши" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Общо пакетни структури: " -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Странно... Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +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:155 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\n" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +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:160 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необходимо е да се изтеглят %sB архиви.\n" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +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:167 -#, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"След тази операция ще бъде използвано %sB допълнително дисково " -"пространство.\n" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +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:172 -#, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Липсващи: " -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Нямате достатъчно свободно пространство в %s." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +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“" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Общо уникални описания: " -#: 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“, но това не е тривиална операция." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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 "Да, прави каквото казвам!" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +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" -" ?] " +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Общо отношения описание/файл: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Прекъсване." +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Общо отношения „Осигурява“: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Искате ли да продължите?" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Общо разгърнати низове: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Някои файлове не можаха да бъдат изтеглени" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Общо пространство за зависимости по версии: " -#: 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“?" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Общо празно пространство: " -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Общо отчетено пространство: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Неуспех при коригирането на липсващите пакети." +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "Пакетният файл %s не е синхронизиран." -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Прекъсване на инсталирането." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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: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] "" -"Следните пакети са отстранени от системата поради препокриване на всичките " -"им файлове от други пакети:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Трябва да въведете поне един шаблон за търсене" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Това се прави автоматично от dpkg." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Тази командата е остаряла. Използвайте „apt-mark showauto“ вместо нея." -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Пакетни файлове:" -#: 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." +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Хм, изглежда AutoRemover скапа нещо, а това не би трябвало\n" -"да се случва. Съобщете за грешка в пакета apt." +"Кешът не е синхронизиран, не може да се изпълни „x-ref“ на пакетен файл" -#. -#. 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 "" -"Следната информация може да помогне за намиране на изход от ситуацията:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Отбити пакети:" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(не са намерени)" -#: 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] "Следният пакет е бил инсталиран автоматично и вече не е необходим:" -msgstr[1] "" -"Следните пакети са били инсталирани автоматично и вече не са необходими:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Инсталирана: " -#: 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" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +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] "Използвайте „apt-get autoremove“ за да го премахнете." -msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете." +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +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:1672 +msgid " Package pin: " +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“ без пакети (или " -"укажете разрешение)." +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Таблица с версиите:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-install.cc:638 +#: cmdline/apt-cache.cc:1801 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-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" -"че сте изискали невъзможна ситуация или ако използвате нестабилната\n" -"дистрибуция, че някои необходими пакети още не са създадени или пък\n" -"са били преместени от Incoming." +"Употреба: 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-private/private-install.cc:659 -msgid "Broken packages" -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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Следните допълнителни пакети ще бъдат инсталирани:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Сложете диск в устройството и натиснете „Enter“" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Предложени пакети:" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Неуспех при монтиране на %s на %s" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -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-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\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:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +#: 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 "" -"Пропускане на %s, който не е инсталиран при заявени само обновявания.\n" +"Употреба: 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:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Не са намерен пакети, отговарящ на регулярния израз „%s“" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s вече е най-новата версия.\n" +#: 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:894 +#: 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 "Selected version '%s' (%s) for '%s'\n" -msgstr "Избрана е версия %s (%s) за %s\n" +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“" -#: apt-private/private-install.cc:899 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Избрана е версия „%s“ (%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:941 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Пакетът „%s“ не е инсталиран, така че не е премахнат. Може би имахте предвид " -"„%s“?\n" +msgid "%s set to manually installed.\n" +msgstr "%s е отбелязан като ръчно инсталиран.\n" -#: apt-private/private-install.cc:947 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакетът „%s“ не е инсталиран, така че не е премахнат\n" +msgid "%s set to automatically installed.\n" +msgstr "%s е отбелязан като автоматично инсталиран.\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 "" -"Забележка: това е само симулация!\n" -" apt-get има нужда от административни права за да работи.\n" -" Заключването е деактивирано, така че не разчитайте\n" -" на повтаряемост в реална ситуация." +"Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " +"manual“." -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ПРЕДУПРЕЖДЕНИЕ: Следните пакети не могат да бъдат удостоверени!" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Предупреждението за удостоверяването е пренебрегнато.\n" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +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:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Инсталиране на тези пакети без проверка?" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Неуспех при намирането на изходен код на пакет %s" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:786 #, 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" - -#: 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" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" +"Пакетирането на „%s“ се разработва в система за контрол на версиите „%s“ на " +"адрес:\n" +"%s\n" -#: 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/сек)\n" - -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [В процес на работа]" - -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Смяна на носител: сложете диска с етикет\n" -" „%s“\n" -"в устройството „%s“ и натиснете „Enter“\n" +"Използвайте:\n" +"bzr branch %s\n" +"за да изтеглите последните промени в пакета (евентуално в процес на " +"разработка).\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:839 #, c-format -msgid "Unable to read %s" -msgstr "Неуспех при четенето на %s" +msgid "Skipping already downloaded file '%s'\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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to change to %s" -msgstr "Неуспех при преминаването в %s" +msgid "Couldn't determine free space in %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:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Файлът „%s“ на огледалния сървър не е намерен " +msgid "You don't have enough free space in %s" +msgstr "Нямате достатъчно свободно пространство в %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#. 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:893 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Грешка при четене файла „%s“ от огледалния сървър" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror 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 +#: cmdline/apt-get.cc:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:904 #, c-format -msgid "[Mirror: %s]" -msgstr "[Огледален сървър: %s]" +msgid "Fetch source %s\n" +msgstr "Изтегляне на изходен код %s\n" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Неуспех при създаването на IPC pipe към подпроцеса" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Неуспех при изтеглянето на някои архиви." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Връзката прекъсна преждевременно" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Изтеглянето завърши в режим само на изтегляне" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Лоша стандартна настройка!" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\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 "Натиснете „Enter“, за да продължите." +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Желаете ли да изтриете изтеглените пакетни файлове?" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Възникнаха някои грешки при разпакетирането. инсталираните пакети" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Командата за компилиране „%s“ пропадна.\n" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "ще бъдат конфигурирани. Това може да доведе до дублирани грешки" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Процесът-потомък пропадна" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"или грешки, причинени от липсващи зависимости. Това е нормално, само грешките" +"Трябва да укажете поне един пакет за проверка на зависимости за компилиране" -#: dselect/install:105 +#: cmdline/apt-get.cc:1056 +#, c-format 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 "" -"над това съобщение за важни. Коригирайте ги и изпълнете [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 "Неуспех при установяване на отклонението" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Вътрешна грешка в AddDiversion" +"Липсва информация за архитектурата %s. Прегледайте информацията за APT::" +"Architectures в apt.conf(5)." -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Опит за изменение на отклонение, %s -> %s и %s/%s" +msgid "Unable to get build-dependency information for %s" +msgstr "" +"Неуспех при получаването на информация за зависимостите за компилиране на %s" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Двойно добавяне на отклонение %s -> %s" +msgid "%s has no build depends.\n" +msgstr "%s няма зависимости за компилиране.\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Дублиран конфигурационен файл %s/%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/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "The path %s is too long" -msgstr "Пътят %s е твърде дълъг" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " +"не може да бъде намерен" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unpacking %s more than once" -msgstr "Разпакетиране на %s повече от веднъж" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " +"пакет %s е твърде нов" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "The directory %s is diverted" -msgstr "Директорията %s е отклонена" +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/extract.cc:152 +#: cmdline/apt-get.cc:1382 #, 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 "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " +"няма подходящи версии" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Failed to stat %s" -msgstr "Грешка при получаването на атрибути за %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Неуспех при преименуването на %s на %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." -#: apt-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Директорията %s се заменя с не-директория" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Неуспех при обработката на зависимостите за компилиране" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Неуспех при намирането на възел в неговия хеш" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Журнал на промените в %s (%s)" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Пътят е твърде дълъг" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +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" - -#: 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 "Това не е валиден DEB архив, липсва елемент „%s“" - -#: apt-inst/deb/debfile.cc:132 -#, 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 "Грешка при четене на заглавната част на елемента на архива" - -#: apt-inst/contrib/arfile.cc:96 -#, 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, развален архив" - -#: 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." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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" -#: 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“ не е поддържана" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Неуспех при определянето на подходяща пакетна система" +#: 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 "Записани са %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:238 apt-pkg/indexcopy.cc:775 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "Записани са %i записа с %i липсващи файла.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "Пакетът „%s“ не може да бъде маркиран, защото не е инсталиран.\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 "Записани са %i записа с %i несъответстващи файла\n" +msgid "%s was already set to manually installed.\n" +msgstr "Пакетът „%s“ вече е отбелязан като ръчно инсталиран.\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 "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" +msgid "%s was already set to automatically installed.\n" +msgstr "Пакетът „%s“ вече е отбелязан като автоматично инсталиран.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Не е намерен oторизационен запис за: %s" +msgid "%s was already set on hold.\n" +msgstr "Пакетът „%s“ вече е задуржан.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Несъответствие на контролната сума за: %s" +msgid "%s was already not hold.\n" +msgstr "Пакетът „%s“ вече е задържан.\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 "Неуспех при намирането на драйвер за метод %s." - -#: apt-pkg/acquire-worker.cc:118 -#, 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 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Method %s did not start correctly" -msgstr "Методът %s не стартира правилно" +msgid "Canceled hold on %s.\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“ и натиснете „Enter“." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Неуспех при изпълняване на dpkg. Имате ли административни права?" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: 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/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 "Списъкът с източници не можа да бъде прочетен." - -#: 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 "Файлът за кеш на пакети е несъвместима версия" - -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -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 "Зависи от" - -#: 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 "В конфликт с" +msgid "Unable to read the cdrom database %s" +msgstr "Неуспех при четенето на базата %s със CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -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 "Obsoletes" -msgstr "Изважда от употреба" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Грешен CD-ROM" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -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: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." +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:52 apt-pkg/edsp.cc:78 -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:241 -msgid "Send request to solver" -msgstr "Изпращане на заявка към програмата за удовлетворяване на зависимости" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Неуспех при свързването на гнездо за данни, допустимото време за свързване " +"изтече" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Подготовка за приемане на решение" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Неуспех" -#: apt-pkg/edsp.cc:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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 +#: 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 "Запитване" + +#: 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. Това може да означава, че трябва " -"ръчно да оправите този пакет (поради пропусната архитектура)." +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 не съдържа отпечатък" +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 от тип „source“ в 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" +"Вътрешна грешка: Валиден подпис, но не може да се провери отпечатъка на " +"ключа?!" -#: 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“. За повече информация вижте " -"информацията за 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: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." +"Следните подписи не можаха да бъдат проверени, защото публичния ключ не е " +"наличен:\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 "" -"Не са намерени файлове с пакети. Мое би дискът не е с Дебиан или е за " -"погрешна компютърна архитектура." +#: 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 сървърът изпрати невалидна заглавна част като отговор" -#: 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 сървърът няма поддръжка за прехвърляне на фрагменти на файлове" -#: 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:496 +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." -msgstr "" -"Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " -"него." +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Неуспех при свързването" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format 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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Изграждане на дървото със зависимости" +#: methods/server.cc:692 +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 "Неуспех при отварянето на StateFile %s" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:156 #, 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-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 (2)" +#: 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 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Неуспех при намиране на задача „%s“" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Готово" -#: apt-pkg/cacheset.cc:609 -#, 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 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-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Инсталиран]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Инсталиран]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -"Не е възможно избиране на инсталирана версия на пакета „%s“, защото не е " -"инсталиран" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "Следните пакети ще бъдат ПРЕМАХНАТИ:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Следните пакети няма да бъдат променени:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Следните пакети ще бъдат актуализирани:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Следните пакети ще бъдат ВЪРНАТИ КЪМ ПО-СТАРА ВЕРСИЯ:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Следните задържани пакети ще бъдат променени:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (поради %s) " + +#: apt-private/private-output.cc:675 +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 ([%s] ключът %s няма " -"стойност)" +"ПРЕДУПРЕЖДЕНИЕ: Следните необходими пакети ще бъдат премахнати.\n" +"Това НЕ би трябвало да става освен ако знаете точно какво правите!" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (адрес-URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu актуализирани, %lu нови инсталирани, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (дистрибуция)" +msgid "%lu reinstalled, " +msgstr "%lu преинсталирани, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Лошо форматиран ред %lu в списъка с източници %s (анализ на адрес-URI)" +msgid "%lu downgraded, " +msgstr "%lu върнати към по-стара версия, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %s (неограничена дистрибуция)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu за премахване и %lu без промяна.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Лошо форматиран ред %lu в списъка с източници %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:740 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %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:746 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "Y" -#: 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: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "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 е неизвестен." +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Командата „update“ не възприема аргументи" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-update.cc:90 #, c-format -msgid "Installing %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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Конфигуриране на %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-show.cc:156 #, c-format -msgid "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] "" +msgstr[1] "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Окончателно премахване на %s" +#: 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 "Отбелязване на изчезването на %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Изпълнение на тригер след инсталиране %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: 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:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Странно... Размерите не съвпадат, изпратете е-поща на 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:157 #, c-format -msgid "Preparing %s" -msgstr "Подготвяне на %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\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:162 #, c-format -msgid "Unpacking %s" -msgstr "Разпакетиране на %s" +msgid "Need to get %sB of archives.\n" +msgstr "Необходимо е да се изтеглят %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:169 #, c-format -msgid "Preparing to configure %s" -msgstr "Подготвяне на %s за конфигуриране" +msgid "After this operation, %sB of additional disk space will be used.\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:174 #, c-format -msgid "Installed %s" -msgstr "%s е инсталиран" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing for removal of %s" -msgstr "Подготвяне за премахване на %s" +msgid "You don't have enough free space in %s." +msgstr "Нямате достатъчно свободно пространство в %s." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s е премахнат" +#: apt-private/private-install.cc:212 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:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Подготовка за пълно премахване на %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Указано е „Trivial Only“, но това не е тривиална операция." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %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:222 +msgid "Yes, do as I say!" +msgstr "Да, прави каквото казвам!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:224 +#, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Прекъсване." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Искате ли да продължите?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Някои файлове не можаха да бъдат изтеглени" + +#: apt-private/private-install.cc:322 +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:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Операцията е прекъсната" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" -"Поради достигане на максималния брой доклади (MaxReports) не е записан нов " -"доклад за зависимостите." +#: apt-private/private-install.cc:331 +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:332 +msgid "Aborting install." +msgstr "Прекъсване на инсталирането." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:368 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -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:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчно дисково пространство" +#: apt-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Това се прави автоматично от dpkg." + +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:501 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 "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчна оперативна памет" +"Хм, изглежда AutoRemover скапа нещо, а това не би трябвало\n" +"да се случва. Съобщете за грешка в пакета apt." -#: 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" +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" msgstr "" -"Доклад за зависимостите не е записан защото грешката е причинена от " -"недостатъчно дисково пространство" +"Следната информация може да помогне за намиране на изход от ситуацията:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" + +#: apt-private/private-install.cc:515 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] "Следният пакет е бил инсталиран автоматично и вече не е необходим:" +msgstr[1] "" +"Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:519 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -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" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "" -"Неуспех при заключване на административната директория (%s). Може би липсват " -"административни права?" +#: apt-private/private-install.cc:521 +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“ за да ги премахнете." -#. 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 "You might want to run 'apt-get -f install' to correct these:" +msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" + +#: apt-private/private-install.cc:616 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 е беше прекъснат. Проблемът трябва да се коригира чрез ръчно " -"изпълнение на „%s“." +"Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " +"укажете разрешение)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Без заключване" +#: apt-private/private-install.cc:640 +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" +"са били преместени от 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:661 +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:738 +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:828 +msgid "Suggested packages:" +msgstr "Предложени пакети:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liс" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Препоръчвани пакети:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Грш " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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]" + +#: 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 "Връзката прекъсна преждевременно" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Неуспех при прехвърлянето в паметта на %llu байта" +#: 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-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:184 #, 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 =." -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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3294,12 +3307,7 @@ msgstr "" " -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Неуспех при получаването на атрибути за %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Не може да се извлече версията на debconf. Debconf инсталиран ли е?" @@ -3421,17 +3429,17 @@ msgstr "Няма съвпадения на избора" msgid "Some files are missing in the package file group `%s'" msgstr "Липсват някои файлове от групата с файлови пакети „%s“" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "БД е повредена, файлът е преименуван на %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "БД е стара, опит за актуализиране на %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3439,105 +3447,105 @@ msgstr "" "Невалиден формат на БД. Ако сте обновили от по-стара версия на apt, " "премахнете базата от данни и я създайте наново." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Неуспех при отварянето на файл %s от БД: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Неуспех при прочитането на връзка %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "В архива няма поле „control“" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Неуспех при получаването на курсор" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Неуспех при четенето на директория %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Неуспех при четенето на %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Грешките се отнасят за файла " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Неуспех при превръщането на %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Неуспех при обхода на дървото" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Неуспех при отварянето на %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Неуспех при прочитането на връзка %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Неуспех при премахването на връзка %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Неуспех при създаването на връзка %s към %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "Превишен лимит на DeLink от %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Архивът няма поле „package“" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s няма запис „override“\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " поддържащия пакета %s е %s, а не %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s няма запис „source override“\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s няма също и запис „binary override“\n" diff --git a/po/bs.po b/po/bs.po index ea773d56e..ca35b318a 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" @@ -17,3009 +17,3022 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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 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:" - -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Ukupno različitih verzija:" +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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 #, 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:460 +#, 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:150 +msgid "Empty package cache" msgstr "" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" msgstr "" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " +#: apt-pkg/pkgcache.cc:161 +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:164 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:171 #, 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:181 +#, c-format +msgid "The package cache was built for different architectures: %s vs %s" 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:324 +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:324 +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:324 +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:325 +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:325 +#, 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:325 +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" +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Zastarijeva" -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" msgstr "" -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" msgstr "" -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "" +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "važno" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "" +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "zahtijevano" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standardno" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcionalno" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" -#: cmdline/apt-get.cc:423 +#: 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:785 #, c-format -msgid "Couldn't find package %s" +msgid "Regex compilation error - %s" 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" - -#: 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." +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" msgstr "" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/pkgcachegen.cc:283 +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" +#: apt-pkg/pkgcachegen.cc:286 +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:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/pkgcachegen.cc:598 #, 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:1233 #, c-format -msgid "Skipping already downloaded file '%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:187 apt-private/private-install.cc:190 -#, c-format -msgid "Couldn't determine free space in %s" -msgstr "" +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Čitam spiskove paketa" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" +#: apt-pkg/pkgcachegen.cc:1338 +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:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "" +msgid "Unable to write to %s" +msgstr "Ne mogu zapisati na %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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" msgstr "" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %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." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" +#: 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" +#: 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" +#: 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:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "rename failed, %s (%s -> %s)." msgstr "" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" msgstr "" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" msgstr "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/acquire-item.cc:185 +msgid "Invalid file format" msgstr "" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/acquire-item.cc:1679 #, 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" +#: apt-pkg/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ne mogu otvoriti DB datoteku %s" + +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s has no build depends.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/acquire-item.cc:1827 #, 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 "" -#: cmdline/apt-get.cc:1312 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "GPG error: %s: %s" msgstr "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/acquire-item.cc:1972 #, 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 "" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "Vendor block %s contains no fingerprint" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Changelog for %s (%s)" +msgid "Archives directory %spartial is missing." msgstr "" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podržani moduli:" +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ne mogu kreirati %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" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "" +#: apt-pkg/acquire.cc:927 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Čitam spisak datoteke" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 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" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." msgstr "" -#: 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" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/policy.cc:83 #, c-format -msgid "%s was already not hold.\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" 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/policy.cc:422 #, 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" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" 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/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -#: cmdline/apt.cc:47 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -#: methods/cdrom.cc:203 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/packagemanager.cc:584 #, c-format -msgid "Unable to read the cdrom database %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 "" -#: 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:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." msgstr "" -#: methods/cdrom.cc:222 +#: apt-pkg/cdrom.cc:571 #, fuzzy -msgid "Wrong CD-ROM" +msgid "Unmounting CD-ROM...\n" msgstr "Pogrešan CD" -#: methods/cdrom.cc:249 +#: apt-pkg/cdrom.cc:586 #, 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." +msgid "Using CD-ROM mount point %s\n" +msgstr "" -#: methods/cdrom.cc:254 +#: apt-pkg/cdrom.cc:599 #, fuzzy -msgid "Disk not found." -msgstr "Datoteka nije pronađena" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datoteka nije pronađena" +msgid "Waiting for disc...\n" +msgstr "Čekam na zaglavlja" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" msgstr "" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prijavljujem se" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" +#: 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/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "The server refused the connection and said: %s" +msgid "Found label '%s'\n" msgstr "" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "PASS failed, server said: %s" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/cdrom.cc:819 +#, fuzzy +msgid "Copying package lists..." +msgstr "Čitam spiskove paketa" + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" msgstr "" -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "TYPE failed, server said: %s" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server je zatvorio vezu" +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +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/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Gradim stablo zavisnosti" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Verzije kandidata" -#: methods/ftp.cc:377 methods/ftp.cc:389 +#: 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 "Protocol corruption" -msgstr "Oštećenje protokola" +msgid "Reading state information" +msgstr "Sastavljam dostupne informacije" -#: 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/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Ne mogu otvoriti %s" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Ne mogu ukloniti %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Neuspješno" +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ne mogu pronaći paket %s" + +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Ne mogu otvoriti %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "EPRT failed, server said: %s" +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "" +#: apt-pkg/indexrecords.cc:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Ne mogu otvoriti DB datoteku %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" +#: apt-pkg/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Unable to fetch file, server said '%s'" +msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "" +#: apt-pkg/indexrecords.cc:168 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ne mogu otvoriti DB datoteku %s" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "Connecting to %s (%s)" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "[IP: %s %s]" +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/connect.cc:94 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Could not connect to %s:%s (%s)." +msgid "Malformed line %lu in source list %s (URI parse)" 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:217 #, c-format -msgid "Connecting to %s" -msgstr "Povezujem se sa %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Could not resolve '%s'" +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Temporary failure resolving '%s'" +msgid "Opening %s" +msgstr "Otvaram %s" + +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "System error resolving '%s:%s'" +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:95 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ne mogu se povezati sa %s %s:" +msgid "Installing %s" +msgstr " Instalirano:" -#: 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 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Povezujem se sa %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 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Otvaram %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Ne mogu ukloniti %s" + +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Running post-installation trigger %s" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -#, fuzzy -msgid "The following signatures were invalid:\n" -msgstr "Slijedeći dodatni paketi će biti instalirani:" +#: 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" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Otvaram %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Otvaram %s" -#: methods/http.cc:509 -msgid "Error writing to the file" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Instalirano:" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Preporučuje" -#: methods/http.cc:621 -msgid "Select failed" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" msgstr "" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Ne mogu ukloniti %s" -#: methods/http.cc:649 -msgid "Error writing to output file" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čekam na zaglavlja" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ne mogu zapisati na %s" -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Nepoznat oblik datuma" - -#: methods/server.cc:489 -msgid "Bad header data" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Povezivanje neuspješno" - -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Unutrašnja greška" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Računam nadogradnju..." +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Urađeno" +#: apt-pkg/deb/dpkgpm.cc:1645 +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:1652 apt-pkg/deb/dpkgpm.cc:1658 +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:1679 +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 "Ispravljam zavisnosti..." +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." +#. 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 "Ne mogu ispraviti zavisnosti" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" +#. 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 " Urađeno" +#. 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." +#. 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 "Nezadovoljene zavisnosti. Pokušajte koristeći -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 "[Instalirano]" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "[Instalirano]" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "[Instalirano]" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "[Instalirano]" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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:395 #, 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:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "but %s is installed" -msgstr "ali je %s instaliran" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:841 #, c-format -msgid "but %s is to be installed" -msgstr "ali se %s treba instalirati" +msgid "Sub-process %s received a segmentation fault." +msgstr "" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ali se ne može instalirati" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ali je virtuelni paket" +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ali nije instaliran" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ali se neće instalirati" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Greška pri pisanju" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ili" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Slijedeći NOVI paketi će biti instalirani:" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Ne mogu otvoriti %s" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Slijedeći paketi će biti UKLONJENI:" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "" -#: apt-private/private-output.cc:550 -#, fuzzy -msgid "The following packages have been kept back:" -msgstr "Slijedeći paketi su zadržani:" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Slijedeći paketi će biti nadograđeni:" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Greška pri čitanju" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" +#: apt-pkg/contrib/fileutl.cc:1552 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" msgstr "" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Ne mogu ukloniti %s" + +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "%s (due to %s) " +msgid "Problem renaming the file %s to %s" msgstr "" -#: apt-private/private-output.cc:675 -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:1975 +#, c-format +msgid "Problem unlinking the file %s" msgstr "" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" msgstr "" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ne mogu kreirati %s" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu reinstalled, " +msgid "%c%s... Error!" msgstr "" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu downgraded, " +msgid "%c%s... Done" msgstr "" -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-output.cc:718 +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, c-format -msgid "%lu not fully installed or removed.\n" +msgid "%c%s... %u%%" 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:740 -msgid "[Y/n]" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" 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:746 -msgid "[y/N]" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ne mogu kreirati %s" + +#: 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-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "Regex compilation error - %s" +msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Ne mogu ukloniti %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] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +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:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: 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:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" msgstr "" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" 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:155 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "Need to get %sB/%sB of archives.\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:160 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "Need to get %sB of archives.\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:167 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Syntax error %s:%u: Malformed tag" 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:172 +#: apt-pkg/contrib/configuration.cc:839 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/configuration.cc:879 #, c-format -msgid "You don't have enough free space in %s." +msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" 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, uradi kako kažem!" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/configuration.cc:902 #, 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: clear directive requires an option tree as argument" msgstr "" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Odustani." +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Da li želite nastaviti?" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, fuzzy, c-format +msgid "No keyring installed in %s." +msgstr "Odustajem od instalacije." -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --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 "" -#: apt-private/private-install.cc:324 -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 "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." +#: 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:330 -msgid "Aborting install." -msgstr "Odustajem od instalacije." - -#: 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-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" msgstr "" -#: 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." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" 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:" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" msgstr "" -#: apt-private/private-install.cc:513 +#: cmdline/apt-cache.cc:149 +#, 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:317 +msgid "Total package names: " +msgstr "Ukupno naziva paketa:" + +#: cmdline/apt-cache.cc:319 #, 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:" +msgid "Total package structures: " +msgstr "Ukupno naziva paketa:" -#: 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:" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normalni paketi:" -#: 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] "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Čisto virtuelni paketi:" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Pojedinačni virutuelni paketi:" -#: 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:362 +msgid " Mixed virtual packages: " +msgstr " Miješani virtuelni paketi:" -#: 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 "" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Nedostajući:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Oštećeni paketi" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Ukupno različitih verzija:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Slijedeći dodatni paketi će biti instalirani:" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Ukupno različitih verzija:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Predloženi paketi:" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Ukupno zavisnosti:" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Preporučeni paketi:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Ukupno Verzija/Datoteka odnosa:" -#: apt-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +#: cmdline/apt-cache.cc:374 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Ukupno Verzija/Datoteka odnosa:" + +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " msgstr "" -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "" + +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "" + +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " msgstr "" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " msgstr "" -#: apt-private/private-install.cc:846 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "%s is already the newest version.\n" +msgid "Package file %s is out of sync." msgstr "" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:1306 +msgid "You must give at least one search pattern" msgstr "" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#. 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" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Datoteke paketa:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: apt-private/private-install.cc:947 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" 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:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" msgstr "" -#: apt-private/private-download.cc:36 -#, fuzzy -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "Slijedeći paketi će biti nadograđeni:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalirano:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " msgstr "" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" msgstr "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " msgstr "" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" msgstr "" -#: 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 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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'." +msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1801 +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:66 -msgid "Hit " +#: 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:90 -msgid "Get:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " +#: 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-private/acqprogress.cc:125 -msgid "Err " +#: 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 "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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:245 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" +msgid "Can not find a package for architecture '%s'" msgstr "" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:327 #, c-format -msgid " [Working]" +msgid "Can not find a package '%s' with version '%s'" msgstr "" -#: 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" +msgid "Can not find a package '%s' with release '%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-get.cc:367 #, c-format -msgid "Unable to read %s" -msgstr "Ne mogu čitati %s" +msgid "Picking '%s' as source package instead of '%s'\n" +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:423 #, c-format -msgid "Unable to change to %s" +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 " +msgid "Couldn't find package %s" msgstr "" -#. 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:891 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Ne mogu otvoriti %s" +msgid "%s set to manually installed.\n" +msgstr "ali se %s treba instalirati" -#: 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 "Ne mogu otvoriti %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 "" +msgid "%s set to automatically installed.\n" +msgstr "ali se %s treba instalirati" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" +#: 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:33 -msgid "Bad default setting!" -msgstr "Loša podrazumjevana postavka!" - -#: 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?" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" msgstr "" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" msgstr "" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" 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:1091 +#, 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" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\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-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/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" msgstr "" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" msgstr "" -#: apt-inst/filelist.cc:477 +#. 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:893 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: apt-inst/filelist.cc:506 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "Double add of diversion %s -> %s" +msgid "Need to get %sB of source archives.\n" msgstr "" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Duplicate conf file %s/%s" +msgid "Fetch source %s\n" msgstr "" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "" + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" +msgid "Unpack command '%s' failed.\n" msgstr "" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" +msgid "Build command '%s' failed.\n" msgstr "" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" 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" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "The directory %s is being replaced by a non-directory" +msgid "Unable to get build-dependency information for %s" msgstr "" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" msgstr "" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Putanja je preduga" - -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Overwrite package match with no version for %s" +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" msgstr "" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "File %s/%s overwrites the one in the package %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unable to stat %s" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" 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" +#: cmdline/apt-get.cc:1376 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Failed to close file %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Internal error, could not locate member %s" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" msgstr "" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, c-format +msgid "Changelog for %s (%s)" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Podržani moduli:" + +#: cmdline/apt-get.cc:1657 +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/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" msgstr "" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiva je prekratka" +#: 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" +#: 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-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" +#: cmdline/apt-mark.cc:243 +#, c-format +msgid "%s was already not hold.\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Ne mogu izvršiti gzip" +#: 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" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Oštećena arhiva" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Ne mogu otvoriti %s" -#: 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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %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." +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/clean.cc:61 +#: methods/cdrom.cc:203 #, c-format -msgid "Unable to stat %s." +msgid "Unable to read the cdrom database %s" msgstr "" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%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 "" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "" +#: methods/cdrom.cc:222 +#, fuzzy +msgid "Wrong CD-ROM" +msgstr "Pogrešan CD" -#: apt-pkg/init.cc:146 +#: methods/cdrom.cc:249 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "" +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/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Datoteka nije pronađena" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datoteka nije pronađena" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\n" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" 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" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" msgstr "" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prijavljujem se" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" msgstr "" -#: apt-pkg/acquire-worker.cc:118 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Is the package %s installed?" +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/acquire-worker.cc:169 +#: methods/ftp.cc:225 #, c-format -msgid "Method %s did not start correctly" +msgid "USER failed, server said: %s" msgstr "" -#: 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 "" - -#: 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-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" +msgid "PASS failed, server said: %s" msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: apt-pkg/pkgcache.cc:174 +#: methods/ftp.cc:306 #, c-format -msgid "This APT does not support the versioning system '%s'" +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" msgstr "" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Zavisi" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Unaprijed zavisi" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Predlaže" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Server je zatvorio vezu" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Preporučuje" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "" -#: apt-pkg/pkgcache.cc:322 +#: methods/ftp.cc:377 methods/ftp.cc:389 #, fuzzy -msgid "Conflicts" -msgstr "Sukobljava se sa" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zamjenjuje" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastarijeva" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +msgid "Protocol corruption" +msgstr "Oštećenje protokola" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "važno" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "zahtijevano" - -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardno" - -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcionalno" - -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" - -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Neuspješno" -#. 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)" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:802 #, c-format -msgid "Couldn't stat source package list %s" -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" - -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:811 #, 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 "" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" - -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +msgid "EPRT failed, server said: %s" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:890 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "" - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" +msgid "Unable to fetch file, server said '%s'" msgstr "" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" msgstr "" -#: 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)" +msgid "Data transfer 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 "Ne mogu otvoriti DB datoteku %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: 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 "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" +msgid "Connecting to %s" +msgstr "Povezujem se sa %s" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Could not resolve '%s'" msgstr "" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:205 #, c-format -msgid "List directory %spartial is missing." +msgid "Temporary failure resolving '%s'" msgstr "" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:209 #, c-format -msgid "Archives directory %spartial is missing." +msgid "System error resolving '%s:%s'" msgstr "" -#: 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:899 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Čitam spisak datoteke" +msgid "Unable to connect to %s:%s:" +msgstr "Ne mogu se povezati sa %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 "" -#: 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 "" -#: 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-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 "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %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 "" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: 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 "Ne mogu otvoriti %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." +#: 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." +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" msgstr "" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "Pogrešan CD" +#: 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" +#: methods/http.cc:561 +msgid "Error writing to file" msgstr "" -#: apt-pkg/cdrom.cc:599 -#, fuzzy -msgid "Waiting for disc...\n" -msgstr "Čekam na zaglavlja" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" +#: methods/http.cc:626 +msgid "Connection timed out" msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: methods/http.cc:649 +msgid "Error writing to output file" msgstr "" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čekam na zaglavlja" + +#: 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" +#: 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 "Nepoznat oblik datuma" + +#: methods/server.cc:496 +msgid "Bad header data" msgstr "" -#: apt-pkg/cdrom.cc:817 +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Povezivanje neuspješno" + +#: methods/server.cc:572 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -#: apt-pkg/cdrom.cc:819 -#, fuzzy -msgid "Copying package lists..." -msgstr "Čitam spiskove paketa" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Unutrašnja greška" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Računam nadogradnju..." + +#: 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:123 +msgid "Listing" msgstr "" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-list.cc:156 #, 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:233 +#, 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:237 #, 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:240 +msgid "[installed,auto-removable]" +msgstr "" -#: 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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr "[Instalirano]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr "[Instalirano]" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +#, 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:571 +msgid "The following packages will be upgraded:" +msgstr "Slijedeći paketi će biti nadograđeni:" + +#: apt-private/private-output.cc:592 +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:612 +msgid "The following held packages will be changed:" msgstr "" -#: apt-pkg/indexrecords.cc:130 +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, 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:714 #, 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:718 #, 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:740 +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:746 +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:757 +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:763 +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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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" +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:174 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:995 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing to configure %s" +msgid "You don't have enough free space in %s." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Instalirano:" +#: apt-private/private-install.cc:212 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Preporučuje" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Da, uradi kako kažem!" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing to completely remove %s" +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Ne mogu ukloniti %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Odustani." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Da li želite nastaviti?" -#: 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-install.cc:315 +msgid "Some files failed to download" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:322 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Odustajem od instalacije." + +#: apt-private/private-install.cc:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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:504 apt-private/private-install.cc:655 +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" +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:515 +#, fuzzy 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] "Slijedeći NOVI paketi će biti instalirani:" +msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" + +#: apt-private/private-install.cc:519 +#, 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:521 +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Oštećeni paketi" + +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Slijedeći dodatni paketi će biti instalirani:" + +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Predloženi paketi:" + +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Preporučeni paketi:" + +#: apt-private/private-install.cc:851 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: apt-private/private-install.cc:855 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:867 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:872 #, c-format -msgid "%lid %lih %limin %lis" +msgid "%s is already the newest version.\n" msgstr "" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:920 #, c-format -msgid "%lih %limin %lis" +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:925 #, c-format -msgid "%limin %lis" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" msgstr "" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 #, c-format -msgid "%lis" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:973 #, c-format -msgid "Selection %s not found" +msgid "Package '%s' is not installed, so not removed\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:190 -#, c-format -msgid "Not using locking for read only 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 "" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" +#: 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %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:223 -#, c-format -msgid "Could not get lock %s" +#: apt-private/private-download.cc:50 +msgid "Install these packages without verification?" msgstr "" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: 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 "List of files can't be created as '%s' is not a directory" +msgid "Your '%s' file changed, please run 'apt-get update'." 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-search.cc:51 +msgid "Full Text Search" msgstr "" -#: apt-pkg/contrib/fileutl.cc:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +#: apt-private/acqprogress.cc:66 +msgid "Hit " 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/acqprogress.cc:88 +msgid "Get:" msgstr "" -#: apt-pkg/contrib/fileutl.cc:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." +#: apt-private/acqprogress.cc:119 +msgid "Ign " msgstr "" -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." +#: apt-private/acqprogress.cc:123 +msgid "Err " msgstr "" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Sub-process %s returned an error code (%u)" +msgid "Fetched %sB in %s (%sB/s)\n" msgstr "" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Sub-process %s exited unexpectedly" +msgid " [Working]" msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:298 #, c-format -msgid "Problem closing the gzip file %s" +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:1101 +#. 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 %s" +msgid "No mirror file '%s' found " msgstr "" -#: 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:287 #, fuzzy, c-format -msgid "Could not open file descriptor %d" +msgid "Can not read mirror file '%s'" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -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:1373 -msgid "Failed to exec compressor " +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1514 -#, c-format -msgid "read, still have %llu to read but none left" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" 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" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Ne mogu ukloniti %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Loša podrazumjevana postavka!" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -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 "Pritisnite enter za nastavak." -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" msgstr "" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -#: 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 "" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, c-format -msgid "%c%s... %u%%" -msgstr "" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sastavljam dostupne informacije" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" msgstr "" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Ne mogu kreirati %s" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Ne mogu kreirati %s" - -#: 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 "Ne mogu ukloniti %s" - -#: 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." -msgstr "" - -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +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:184 #, 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 =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3033,12 +3046,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Ne mogu kreirati %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?" @@ -3118,121 +3126,121 @@ msgstr "" msgid "Some files are missing in the package file group `%s'" msgstr "" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB je bila oštećena, datoteka preimenovana u %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB je stara, pokušavam nadogradnju %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, fuzzy, c-format msgid "Unable to open DB file %s: %s" msgstr "Ne mogu otvoriti DB datoteku %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Ne mogu ukloniti %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arhiva nema kontrolnog zapisa" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "" -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "" -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Ne mogu otvoriti %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index 1fa809561..1c03e8cf0 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -18,3247 +18,3260 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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" + +#: 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:150 +msgid "Empty package cache" +msgstr "Memòria cau de paquets és buida" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "El fitxer de memòria cau de paquets està corromput" + +#: apt-pkg/pkgcache.cc:161 +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:164 +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:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "El fitxer %s del paquet està desincronitzat." +msgid "This APT does not support the versioning system '%s'" +msgstr "Aquest APT no suporta el sistema de versions «%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 "No s'han trobat paquets" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent" -#: 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:324 +msgid "Depends" +msgstr "Depèn" -#: 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:324 +msgid "PreDepends" +msgstr "Predepèn" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Suggereix" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomana" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Entra en conflicte" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Reemplaça" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Fa obsolet" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Trenca" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Millora" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "important" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "requerit" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "estàndard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "No s'ha trobat el paquet %s" +msgid "Index file type '%s' is not supported" +msgstr "El tipus de fitxer índex «%s» no està suportat" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fitxers de paquets:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "S'ha produït un error de compilació de l'expressió regular - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "La memòria cau té un sistema de versions incompatible" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "S'ha produït un error en processar %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" +"Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquets etiquetats:" +#: apt-pkg/pkgcachegen.cc:283 +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." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(no trobat)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instaŀlat: " +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Uau, heu excedit el nombre de dependències que aquest APT és capaç de " +"gestionar." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidat: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(cap)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Etiqueta del paquet: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "S'està llegint la llista de paquets" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Taula de versió:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "S'estan recollint els fitxers que proveeixen" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s per a %s compilat el %s %s\n" +msgid "Unable to write to %s" +msgstr "No es pot escriure en %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 "" -"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-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Error d'E/S en desar la memòria cau de la font" -#: 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-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Envia l'escenari al resoledor" -#: 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-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Envia la petició al resoledor" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "No s'ha pogut muntar «%s» a «%s»" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Prepara per a rebre una solució" -#: 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/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-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-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-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Els arguments no són en parells" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "no s'ha pogut canviar el nom, %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 "" -"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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "La suma resum no concorda" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "La mida no concorda" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operació no vàlida %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»" +#: apt-pkg/acquire-item.cc:1679 +#, 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)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, 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" +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:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Descarta la versió «%s» no disponible del paquet «%s»" +#: apt-pkg/acquire-item.cc:1737 +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:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "No s'ha pogut trobar el paquet %s" +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." -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "S'ha marcat %s com instaŀlat manualment.\n" +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:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "S'ha marcat %s com instaŀlat automàticament.\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 "" -"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " -"en el seu lloc." - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +"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 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" +"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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "No es pot trobar un paquet de fonts per a %s" +msgid "GPG error: %s: %s" +msgstr "S'ha produït un error amb el GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"Avís: L'empaquetat de «%s» és mantingut amb el sistema de control de\n" -"versions «%s» a:\n" -"%s\n" +"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:791 +#: apt-pkg/acquire-item.cc:2038 +#, 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:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Empreu:\n" -"bzr branch %s\n" -"per obtenir les últimes actualitzacions (possiblement no publicades) del " -"paquet.\n" +"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " +"per al paquet %s." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "S'està ometent el fitxer ja baixat «%s»\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "El camp del proveïdor %s no té una empremta digital" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "No s'ha pogut determinar l'espai lliure en %s" +msgid "List directory %spartial is missing." +msgstr "Falta el directori de llistes %spartial." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "No teniu prou espai lliure en %s" +msgid "Archives directory %spartial is missing." +msgstr "Falta el directori d'arxius %spartial." -#. 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.cc:100 #, 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 lock directory %s" +msgstr "No es pot blocar el directori %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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Es necessita baixar %sB d'arxius font.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "S'està obtenint el fitxer %li de %li (falten %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "Obtén el font %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "No s'ha pogut baixar alguns arxius." - -#: 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" +msgid "Retrieving file %li of %li" +msgstr "S'està obtenint el fitxer %li de %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "No s'ha pogut obtenir %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 "" -"S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n" +"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " +"emprat els antics." + +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"El valor «%s» és invàlid per a APT:Default-Release donat que aquest " +"llançament no és disponible a les fonts" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comproveu si el paquet «dpkgdev» 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-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "L'ordre de construir «%s» ha fallat.\n" +msgid "Did not understand pin type %s" +msgstr "No s'ha entès el pin de tipus %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Ha fallat el procés fill" +#: 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)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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'ha d'especificar un paquet per a verificar les dependències de construcció " -"per a" +"No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." +"conf, sota APT::Immediate-Configure per a més detalls. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "No s'ha pogut configurar «%s»." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" -"No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " -"APT::Architectures per a configurar-ho" +"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-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "La línia %u és massa llarga en la llista de fonts %s." -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "S'està desmuntant el CD-ROM…\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s no té dependències de construcció.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n" + +#: 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 "Stored label: %s\n" +msgstr "S'ha emmagatzemat l'etiqueta: %s\n" + +#: 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-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"La dependència %s en %s no es pot satisfer perquè %s no és permès als " -"paquets «%s»" +"S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de " +"traduccions i %zu signatures\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " -"%s" +"No s'ha trobat cap fitxer de paquets, potser no és un disc de Debian o la " +"arquitectura és incorrecta?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, 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 "Found label '%s'\n" +msgstr "S'ha trobat l'etiqueta «%s»\n" -#: cmdline/apt-get.cc:1351 +#: 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 "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" 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" +"El disc es diu:\n" +"«%s»\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "S'estan copiant les llistes de paquets…" + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "S'està escrivint una nova llista de fonts\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " -"candidata" +"El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." + +#: 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." -#: cmdline/apt-get.cc:1380 +#: 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." + +#: 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 #, 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 "Failed to open StateFile %s" +msgstr "No s'ha pogut obrir el fitxer d'estat %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, 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 "Failed to write temporary StateFile %s" +msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "No es poden processar les dependències de construcció" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "No es pot analitzar el fitxer del paquet %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Registre de canvis per a %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "No es pot analitzar el fitxer del paquet %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Mòduls suportats:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "No s'ha trobat la versió puntual «%s» per a «%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/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "No s'ha trobat la versió «%s» per a «%s»" -#: 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/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "No s'ha trobat el paquet %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "No s'ha pogut trobar la tasca «%s»" + +#: apt-pkg/cacheset.cc:610 +#, 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-pkg/cacheset.cc:616 +#, 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»" + +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"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" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cacheset.cc:648 #, 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 "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" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s ja estava marcat com instaŀlat manualment.\n" +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" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s ja estava marcat com instaŀlat automàticament.\n" +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" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ja estava retingut.\n" +msgid "Unable to parse Release file %s" +msgstr "No es pot analitzar el fitxer Release %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s ja estava no retingut.\n" +msgid "No sections in Release file %s" +msgstr "No hi ha seccions al fitxer Release %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/indexrecords.cc:136 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperava %s però no hi era" +msgid "No Hash entry in Release file %s" +msgstr "No hi ha una entrada Hash al fitxer Release %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s set on hold.\n" -msgstr "S'ha marcat %s com retingut.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "El camp «Valid-Until» al fitxer Release %s és invàlid" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "S'ha cancel·lat la marca de retenció en %s.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "El camp «Date» al fitxer Release %s és invàlid" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "L'execució del dpkg ha fallat. Sou root?" +#: 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)" -#: 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/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)" -#: 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/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-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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "No es pot llegir la base de dades del cdrom %s" +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/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/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" 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" +"Línia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD erroni" +#: 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)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:208 #, 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." +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Línia %lu malformada en la llista de fonts %s (dist)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "No s'ha trobat el disc" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fitxer no trobat" - -#: 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" - -#: 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ó" - -#: 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 //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "S'està accedint a" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "No es pot determinar el nom de la màquina distant" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "No es pot determinar el nom local" - -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %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/ftp.cc:225 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ha fallat, el servidor ha dit: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:224 #, 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 "Malformed line %lu in source list %s (dist parse)" +msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:335 #, 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 "Opening %s" +msgstr "S'està obrint %s" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:371 #, 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." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocol corromput" - -#: 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" - -#: 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" - -#: 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" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Ha fallat" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "No s'ha pogut connectar amb el sòcol passiu." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte" - -# abastar? huh? jm -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "No s'ha pogut vincular a un connector" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "No s'ha pogut escoltar sobre el sòcol" +msgid "Malformed line %u in source list %s (type)" +msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" -#: 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/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "No es pot enviar l'ordre PORT" +#: 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" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "La família d'adreces %u és desconeguda (AF_*)" +msgid "Installing %s" +msgstr "S'està instaŀlant %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 ha fallat, el servidor ha dit: %s" - -#: 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ó" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema escollint el fitxer" +msgid "Configuring %s" +msgstr "S'està configurant el paquet %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 "No és possible obtenir el fitxer, el servidor ha dit '%s'" +msgid "Removing %s" +msgstr "S'està suprimint el paquet %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/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "S'ha suprimit completament %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'" +msgid "Noting disappearance of %s" +msgstr "S'està anotant la desaparició de %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: 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/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "No es pot invocar" +#. 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/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Connecting to %s (%s)" -msgstr "S'està connectant amb %s (%s)" +msgid "Could not open file '%s'" +msgstr "No s'ha pogut obrir el fitxer «%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'està preparant el paquet %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 "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)" +msgid "Unpacking %s" +msgstr "S'està desempaquetant %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "No es pot iniciar la connexió amb %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "S'està preparant per a configurar el paquet %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 "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit" +msgid "Installed %s" +msgstr "S'ha instaŀlat el paquet %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "No s'ha pogut connectar amb %s:%s (%s)." +msgid "Preparing for removal of %s" +msgstr "S'està preparant per a la supressió del paquet %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'està connectant amb %s" +msgid "Removed %s" +msgstr "S'ha suprimit el paquet %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "No s'ha pogut resoldre «%s»" +msgid "Preparing to completely remove %s" +msgstr "S'està preparant per a suprimir completament el paquet %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "S'ha produït un error temporal en resoldre «%s»" +msgid "Completely removed %s" +msgstr "S'ha suprimit completament el paquet %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, 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 "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" - -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "No es pot connectar amb %s:%s:" +msgid "Can not write log (%s)" +msgstr "No es pot escriure en %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" 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." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" msgstr "" -"No s'ha pogut executar el «gpgv» per a verificar la signatura (està " -"instaŀlat el gpgv?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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?)" -msgstr "" +msgid "Waited for %s but it wasn't there" +msgstr "Esperava %s però no hi era" -#: 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:1563 +msgid "Operation was interrupted before it could finish" +msgstr "S'ha interromput l'operació abans que pogués finalitzar" -#: 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:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "No s'ha escrit cap informe perquè ja s'ha superat MaxReports" -#: methods/gpgv.cc:231 +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "S'han produït problemes de depències, es deixa sense configurar" + +#: apt-pkg/deb/dpkgpm.cc:1632 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 següents no s'han pogut verificar perquè la clau pública no " -"està disponible:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Els fitxers buits no poden ser arxius vàlids" +"No s'ha escrit cap informe perquè el missatge d'error indica que és un error " +"consequent de una fallida anterior." -#: 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:1638 +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" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"S'ha produït un error en llegir, el servidor remot ha tancat la connexió" +"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " +"falta de memòria" -#: 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:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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" -#: 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:1679 +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" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Ha fallat la selecció" +#: 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?" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Connexió finalitzada" +#: apt-pkg/deb/debsystem.cc:94 +#, 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?" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "S'ha produït un error en escriure al fitxer de sortida" +#. 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." -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "S'estan esperant les capçaleres" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "No blocat" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Línia de capçalera incorrecta" +#. 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: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" +#. 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: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" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: 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" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Aquest servidor HTTP té el suport d'abast trencat" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "No s'ha trobat la selecció %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format de la data desconegut" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Capçalera de dades no vàlida" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "No es pot resoldre el fitxer de blocat %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Ha fallat la connexió" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Error intern" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "No s'ha pogut blocar %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "S'està calculant l'actualització… " +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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-upgrade.cc:28 -msgid "Done" -msgstr "Fet" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +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-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:422 +#, 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-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:841 #, 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 "El sub-procés %s ha rebut una violació de segment." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "S'estan corregint les dependències…" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "El sub-procés %s ha rebut un senyal %u." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ha fallat." +#: apt-pkg/contrib/fileutl.cc:847 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "No es poden corregir les dependències" +#: apt-pkg/contrib/fileutl.cc:849 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "No es pot minimitzar el joc de versions revisades" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Error d'escriptura" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fet" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Ha hagut un problema en tancar el fitxer gzip %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-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependències sense satisfer. Proveu-ho emprant -f." - -#: 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:1139 +#, c-format +msgid "Could not open file %s" +msgstr "No s'ha pogut obrir el fitxer %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "No s'ha pogut crear el subprocés IPC" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "No s'ha pogut executar el compressor " -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Error de lectura" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instaŀlat]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, c-format +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:248 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +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:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Ha hagut un problema en tancar el fitxer %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "però està instaŀlat %s" +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:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "però s'instaŀlarà %s" +msgid "Problem unlinking the file %s" +msgstr "Ha hagut un problema en desenllaçar el fitxer %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "però no és instaŀlable" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Ha hagut un problema en sincronitzar el fitxer" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "però és un paquet virtual" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "No es pot veure l'estat de %s" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "però no està instaŀlat" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s… Error!" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "però no serà instaŀlat" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s… Fet" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Els següents paquets tenen dependències sense satisfer:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "S'instaŀlaran els paquets NOUS següents:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "No es pot transferir un fitxer buit a memòria" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Es SUPRIMIRAN els paquets següents:" +#: 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:550 -msgid "The following packages have been kept back:" -msgstr "S'han mantingut els paquets següents:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +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-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "S'actualitzaran els paquets següents:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "No es pot tancar el mmap" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Es DESACTUALITZARAN els paquets següents:" +#: 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-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Es canviaran els paquets retinguts següents:" +#: 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" -#: apt-private/private-output.cc:667 +#: 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 "%s (due to %s) " -msgstr "%s (per %s) " +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-" +"Start. Valor actual: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:675 +#: 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 "" -"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!" +"No s'ha pogut incrementar la mida del MMap ja que el limit de %lu bytes ja " +"s'ha superat." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"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 "%lu upgraded, %lu newly installed, " -msgstr "%lu actualitzats, %lu nous a instaŀlar, " +msgid "Unable to stat the mount point %s" +msgstr "No es pot obtenir informació del punt de muntatge %s" -#: apt-private/private-output.cc:710 +#: 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:521 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstaŀlats, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreujament de tipus no reconegut: «%c»" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualitzats, " +msgid "Opening configuration file %s" +msgstr "S'està obrint el fitxer de configuració %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a suprimir i %lu no actualitzats.\n" +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-output.cc:718 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu no instaŀlats o suprimits completament.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Error sintàctic %s:%u: Etiqueta malformada" -#. 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:740 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Error sintàctic %s:%u Text extra després del 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:746 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Error sintàctic %s:%u: Inclusió des d'aquí" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "Regex compilation error - %s" -msgstr "S'ha produït un error de compilació de l'expressió regular - %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "L'ordre update no pren arguments" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-update.cc:90 +#: apt-pkg/contrib/configuration.cc:952 #, 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-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Error sintàctic %s:%u: Text extra al final del fitxer" -#: 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] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +msgid "No keyring installed in %s." +msgstr "No s'ha instaŀlat cap clauer a %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/contrib/cmndline.cc:121 +#, 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." -#: 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/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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "S'ha produït un error intern, l'ordenació no ha acabat" +#: 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: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/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." -#. 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "S'ha d'obtenir %sB/%sB d'arxius.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "S'ha d'obtenir %sB d'arxius.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'opció %s precisa un paràmetre numèric, no '%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "L'opció '%s' és massa llarga" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, 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 "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:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "No teniu prou espai lliure en %s." +msgid "Invalid operation %s" +msgstr "Operació no vàlida %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 "Hi ha problemes i s'ha emprat -y sense --force-yes" +#: 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: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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Nombre total de paquets: " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Nombre total d'estructures de paquets: " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Paquets normals: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avortat." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Paquets virtuals purs: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Voleu continuar?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Paquets virtuals únics: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Alguns fitxers no s'han pogut baixar" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Paquets virtuals mixtes: " -#: apt-private/private-install.cc:320 -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." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Falten: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Nombre total de versions diferents: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "No es poden corregir els paquets que falten." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Nombre total de descripcions diferents: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "S'està avortant la instaŀlació." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Nombre total de dependències: " -#: 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 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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Nombre total de relacions versió/fitxer: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Nombre total de relacions descripció/fitxer: " -#: apt-private/private-install.cc:391 -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:376 +msgid "Total Provides mappings: " +msgstr "Nombre total dels mapes aportats: " -#: 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 "" -"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:388 +msgid "Total globbed strings: " +msgstr "Nombre total de cadenes globals: " -#. -#. 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ó:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Nombre total de l'espai per a dependències de versió: " -#: 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" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Nombre total de l'espai desaprofitat: " -#: 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] "" -"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:422 +msgid "Total space accounted for: " +msgstr "Nombre total de l'espai atribuït a: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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] "" -"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" +msgid "Package file %s is out of sync." +msgstr "El fitxer %s del paquet està desincronitzat." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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: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:1306 +msgid "You must give at least one search pattern" +msgstr "Heu de donar com a mínim un patró de cerca" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " -"especifiqueu una solució)." +"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." -#: 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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Fitxers de paquets:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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»." +"Memòria cau no sincronitzada, no es pot fer x-ref a un fitxer del paquet" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquets trencats" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Paquets etiquetats:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "S'instaŀlaran els següents paquets extres:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(no trobat)" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquets suggerits:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instaŀlat: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquets recomanats:" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidat: " -#: apt-private/private-install.cc:825 -#, 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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(cap)" -#: apt-private/private-install.cc:829 -#, 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:1672 +msgid " Package pin: " +msgstr " Etiqueta del paquet: " -#: apt-private/private-install.cc:841 -#, 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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Taula de versió:" -#: apt-private/private-install.cc:846 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 ja es troba en la versió més recent.\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s per a %s compilat el %s %s\n" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versió seleccionada «%s» (%s) per a «%s»\n" +#: cmdline/apt-cache.cc:1801 +#, 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/private-install.cc:899 -#, 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-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»" -#. 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 "" -"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir " -"«%s»?\n" +#: 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/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, 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" +msgid "Failed to mount '%s' to '%s'" +msgstr "No s'ha pogut muntar «%s» a «%s»" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVÍS: No es poden autenticar els següents paquets!" +#: 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/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "S'ha descartat l'avís d'autenticació.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Els arguments no són en parells" -#: 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-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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Voleu instaŀlar aquests paquets sense verificar-los?" +#: 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-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-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-private/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "No s'ha pogut canviar el nom de %s a %s" +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-private/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, 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 " -msgstr "Obj " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Bai:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: 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»" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "S'ha baixat %sB en %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "No s'ha pogut trobar el paquet %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Treballant]" +msgid "%s set to manually installed.\n" +msgstr "S'ha marcat %s com instaŀlat manualment.\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'ha marcat %s com instaŀlat automàticament.\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 "" -"Canvi de medi: inseriu el disc amb l'etiqueta\n" -" «%s»\n" -"en la unitat «%s» i premeu Intro\n" +"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " +"en el seu lloc." -#. 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: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" -#: 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:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "No és possible blocar el directori de descàrrega" -#. 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:726 +msgid "Must specify at least one package to fetch source for" +msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#. 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:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "No es pot llegir el fitxer rèplica «%s»" - -#: 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»" +msgid "Unable to find a source package for %s" +msgstr "No es pot trobar un paquet de fonts per a %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:786 #, c-format -msgid "[Mirror: %s]" -msgstr "[Rèplica: %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" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "La connexió s'ha tancat prematurament" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Paràmetre per defecte incorrecte!" - -#: 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." - -#: 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 "" -"S'han produït alguns errors en desempaquetar. Els paquets que s'han instaŀlat" - -#: 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" +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:839 #, 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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, 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:884 #, 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:893 #, 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:898 #, 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:904 #, 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:922 +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:927 apt-private/private-install.cc:316 +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:952 #, 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:964 #, 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:965 #, 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:993 +#, 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:1012 +msgid "Child process failed" +msgstr "Ha fallat el procés fill" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"S'ha d'especificar un paquet per a verificar les dependències de construcció " +"per a" + +#: cmdline/apt-get.cc:1056 #, 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:1103 cmdline/apt-get.cc:1106 #, 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:1126 #, 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:1296 #, 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:1314 #, 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:1337 #, 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:1376 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error intern, no s'ha pogut localitzar al membre %s" +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/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 +#: cmdline/apt-get.cc:1382 #, 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:1405 +#, 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:1420 +#, 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:1425 +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:1518 cmdline/apt-get.cc:1530 #, 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:1616 +msgid "Supported modules:" +msgstr "Mòduls suportats:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +#, 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" +msgid "Unable to read the cdrom database %s" +msgstr "No es pot llegir la base de dades del cdrom %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Reemplaça" +#: 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 "Obsoletes" -msgstr "Fa obsolet" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD erroni" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Trenca" +#: 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:323 -msgid "Enhances" -msgstr "Millora" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "No s'ha trobat el disc" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: 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 "required" -msgstr "requerit" +#: 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:334 -msgid "standard" -msgstr "estàndard" +#: 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 "optional" -msgstr "opcional" +#: 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/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 "S'està accedint a" -#: 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" +#: 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/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La memòria cau té un sistema de versions incompatible" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "No es pot determinar el nom 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 "S'ha produït un error en 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, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." +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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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" -#: 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 "" -"El fitxer Release per a %s ha caducat (invàlid des de %s). Les " -"actualitzacions per a aquest dipòsit no s'aplicaran." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "No es pot acceptar la connexió" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema escollint el fitxer" -#: 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 "" -"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 "Unable to fetch file, server said '%s'" +msgstr "No és possible obtenir el fitxer, el servidor ha dit '%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 "S'ha esgotat el temps d'espera per al sòcol de dades" + +#: methods/ftp.cc:935 #, c-format -msgid "GPG error: %s: %s" -msgstr "S'ha produït un error amb el GPG: %s: %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: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 "" -"No ha estat possible localitzar un fitxer pel paquet %s. Això podria " -"significar que haureu d'arreglar aquest paquet manualment (segons " -"arquitectura)." +msgid "Connecting to %s (%s)" +msgstr "S'està connectant amb %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 "No es troba una font per baixar la versió «%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 "" -"L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " -"per al paquet %s." +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/vendorlist.cc:85 +#: methods/connect.cc:100 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "El camp del proveïdor %s no té una empremta digital" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "No es pot iniciar la connexió amb %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 el directori de llistes %spartial." +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/acquire.cc:91 +#: methods/connect.cc:126 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta el directori d'arxius %spartial." +msgid "Could not connect to %s:%s (%s)." +msgstr "No s'ha pogut connectar amb %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 "No es pot blocar el directori %s" +msgid "Connecting to %s" +msgstr "S'està connectant amb %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 "S'està obtenint el fitxer %li de %li (falten %s)" +msgid "Could not resolve '%s'" +msgstr "No s'ha pogut resoldre «%s»" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li" -msgstr "S'està obtenint el fitxer %li de %li" +msgid "Temporary failure resolving '%s'" +msgstr "S'ha produït un error temporal en resoldre «%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 "" -"Alguns índex no s'han pogut baixar. S'han descartat, o en el seu lloc s'han " -"emprat els antics." +#: 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)" -#: 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/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" -#: apt-pkg/policy.cc:83 +#: methods/connect.cc:258 #, c-format +msgid "Unable to connect to %s:%s:" +msgstr "No es pot connectar amb %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 "" -"El valor «%s» és invàlid per a APT:Default-Release donat que aquest " -"llançament no és disponible a les fonts" - -#: apt-pkg/policy.cc:422 -#, 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" +"Error intern: La signatura és correcta, però no s'ha pogut determinar " +"l'emprempta digital de la clau!" -#: 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:172 +msgid "At least one invalid signature was encountered." +msgstr "S'ha trobat almenys una signatura invàlida." -#: 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: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/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 s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." -"conf, sota APT::Immediate-Configure per a més detalls. (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "No s'ha pogut configurar «%s»." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "S'ha produït un error desconegut en executar el 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 següents són invàlides:\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 "" -"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." +"Les signatures següents no s'han pogut verificar perquè la clau pública no " +"està disponible:\n" -#: 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/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Els fitxers buits no poden ser arxius vàlids" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "S'està desmuntant el CD-ROM…\n" +#: methods/http.cc:509 +msgid "Error writing to the 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: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/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "S'està esperant al disc…\n" +#: 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:609 -msgid "Mounting CD-ROM...\n" -msgstr "S'està muntant 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:620 -msgid "Identifying... " -msgstr "S'està identificant…" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Ha fallat la selecció" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "S'ha emmagatzemat l'etiqueta: %s\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Connexió finalitzada" -#: 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/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: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:51 +msgid "Waiting for headers" +msgstr "S'estan esperant les capçaleres" -#: 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:109 +msgid "Bad header line" +msgstr "Línia de capçalera incorrecta" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "S'ha trobat l'etiqueta «%s»\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: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: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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"El disc es diu:\n" -"«%s»\n" +#: 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:819 -msgid "Copying package lists..." -msgstr "S'estan copiant les llistes de paquets…" +#: 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:863 -msgid "Writing new source list\n" -msgstr "S'està escrivint una nova llista de fonts\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format de la data desconegut" -#: 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/server.cc:496 +msgid "Bad header data" +msgstr "Capçalera de dades no vàlida" -#: 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/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Ha fallat la connexió" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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." -msgstr "" -"No es poden corregir els problemes, teniu paquets retinguts que estan " -"trencats." +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Error intern" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "S'està construint l'arbre de dependències" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "S'està calculant l'actualització… " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versions candidates" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fet" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Dependències que genera" +#: 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 "S'està llegint la informació de l'estat" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:96 +msgid " failed." +msgstr " ha fallat." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "No es poden corregir les dependències" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "No es pot minimitzar el joc de versions revisades" -#: 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:104 +msgid " Done" +msgstr " Fet" -#: 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: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: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-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependències sense satisfer. Proveu-ho emprant -f." + +#: 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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instaŀlat]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instaŀlat]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "Es SUPRIMIRAN els paquets següents:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "S'han mantingut els paquets següents:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "S'actualitzaran els paquets següents:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Es DESACTUALITZARAN els paquets següents:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Es canviaran els paquets retinguts següents:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (per %s) " + +#: apt-private/private-output.cc:675 +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ínia %lu malformada en la llista de fonts %s ([%s] la clau %s no té valor)" +"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/sourcelist.cc:206 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Línia %lu malformada en la llista de fonts %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu actualitzats, %lu nous a instaŀlar, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Línia %lu malformada en la llista de fonts %s (dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinstaŀlats, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:712 #, 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 "%lu downgraded, " +msgstr "%lu desactualitzats, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:714 #, 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 to remove and %lu not upgraded.\n" +msgstr "%lu a suprimir i %lu no actualitzats.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:718 #, 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 not fully installed or removed.\n" +msgstr "%lu no instaŀlats o suprimits completament.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "S'està obrint %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:740 +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:746 +msgid "[y/N]" +msgstr "[s/N]" -#: apt-pkg/sourcelist.cc:371 -#, 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "S" -#: apt-pkg/sourcelist.cc:375 -#, 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" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "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" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "L'ordre update no pren arguments" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-update.cc:90 #, c-format -msgid "Installing %s" -msgstr "S'està instaŀlant %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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "S'està configurant el paquet %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-show.cc:156 #, c-format -msgid "Removing %s" -msgstr "S'està suprimint el paquet %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:98 -#, c-format -msgid "Completely removing %s" -msgstr "S'ha suprimit completament %s" +#: 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 "S'està anotant la desaparició de %s" +#: apt-private/private-install.cc:84 +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:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "S'està executant l'activador de postinstaŀlació %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Els paquets necessiten ser suprimits però s'ha inhabilitat la supressió." -#. 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-install.cc:112 +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: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:150 +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: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:157 #, c-format -msgid "Preparing %s" -msgstr "S'està preparant 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: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:162 #, c-format -msgid "Unpacking %s" -msgstr "S'està desempaquetant %s" +msgid "Need to get %sB of archives.\n" +msgstr "S'ha d'obtenir %sB d'arxius.\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:169 #, c-format -msgid "Preparing to configure %s" -msgstr "S'està preparant per a configurar 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: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:174 #, c-format -msgid "Installed %s" -msgstr "S'ha instaŀlat 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:1002 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing for removal of %s" -msgstr "S'està preparant per a la supressió del 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:1004 -#, c-format -msgid "Removed %s" -msgstr "S'ha suprimit el paquet %s" +#: apt-private/private-install.cc:212 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:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "S'està preparant per a suprimir completament el paquet %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1010 -#, c-format -msgid "Completely removed %s" -msgstr "S'ha suprimit completament el paquet %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:222 +msgid "Yes, do as I say!" +msgstr "Sí, fes el que et dic!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:224 +#, 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: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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Avortat." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Voleu continuar?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Alguns fitxers no s'han pogut baixar" + +#: apt-private/private-install.cc:322 +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/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:326 +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: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:331 +msgid "Unable to correct missing packages." +msgstr "No es poden corregir els paquets que falten." -#. 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:332 +msgid "Aborting install." +msgstr "S'està avortant la instaŀlació." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:368 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." +"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/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" +#: apt-private/private-install.cc:372 +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:393 +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:1651 +#: apt-private/private-install.cc:501 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 "" -"No s'ha escrit cap informe perquè el missatge d'error indica una fallida per " -"falta de memòria" +"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/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +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:515 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" +"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-private/private-install.cc:519 +#, 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" -#: 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-install.cc:521 +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-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:614 +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:616 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 "" -"No s'ha pogut bloquejar el directori d'administració (%s), hi ha cap altre " -"procés utilitzant-lo?" - -#: apt-pkg/deb/debsystem.cc:94 -#, 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?" +"Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " +"especifiqueu una solució)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:640 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 "" -"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" - -#. 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" +"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:661 +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:738 +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:828 +msgid "Suggested packages:" +msgstr "Paquets suggerits:" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "No s'ha trobat la selecció %s" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Paquets recomanats:" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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%%" +msgid "Can not read mirror file '%s'" +msgstr "No es pot llegir el fitxer rèplica «%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" +#: 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:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "No s'ha pogut duplicar el descriptor del fitxer %i" +msgid "[Mirror: %s]" +msgstr "[Rèplica: %s]" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "No s'ha pogut crear un mapa de memòria de %llu octets" +#: 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:146 -msgid "Unable to close mmap" -msgstr "No es pot tancar el mmap" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "La connexió s'ha tancat prematurament" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "No es pot sincronitzar el mmap" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Paràmetre per defecte incorrecte!" -#: 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: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:322 -msgid "Failed to truncate file" -msgstr "No s'ha pogut truncar el fitxer %s" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Voleu suprimir els paquets .deb baixats prèviament?" -#: 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 "" -"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-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "S'ha produït un error intern en 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 "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-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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "Opció %s: Paràmetre de configuració ha de ser en la forma =" +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3282,12 +3295,7 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "No es pot veure l'estat de %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "No es pot determinar la versió de debconf. Està instaŀlat debconf?" @@ -3405,17 +3413,17 @@ msgstr "No s'ha trobat cap selecció" msgid "Some files are missing in the package file group `%s'" msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "La base de dades està corrompuda, fitxer renomenat a %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "La BD és vella, s'està intentant actualitzar %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3423,105 +3431,105 @@ msgstr "" "El format de la base de dades és invàlid. Si heu actualitzat des d'una " "versió més antiga de l'apt, suprimiu i torneu a crear la base de dades." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "No es pot obrir el fitxer de DB %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "No s'ha pogut llegir l'enllaç %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arxiu sense registre de control" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "No es pot aconseguir un cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: No es pot llegir el directori %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: No es pot veure l'estat %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Els errors s'apliquen al fitxer " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "No s'ha pogut resoldre %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "L'arbre està fallant" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "No s'ha pogut obrir %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "No s'ha pogut llegir l'enllaç %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "No s'ha pogut alliberar %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** No s'ha pogut enllaçar %s a %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink s'ha arribat al límit de %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arxiu sense el camp paquet" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s no té una entrada dominant\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el mantenidor de %s és %s, no %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s no té una entrada dominant de font\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s no té una entrada dominant de binari\n" diff --git a/po/cs.po b/po/cs.po index 002ea6f39..59dde5ec3 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -17,3197 +17,3210 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Cache soubor balíků je poškozen" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Cache soubor balíků má nekompatibilní verzi" + +#: apt-pkg/pkgcache.cc:164 +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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +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:324 +msgid "Suggests" +msgstr "Navrhuje" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Instalovaná verze: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Doporučuje" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidát: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Koliduje s" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(žádná)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Nahrazuje" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Vypíchnutý balík: " +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Zastarává" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabulka verzí:" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 -#, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pro %s zkompilován na %s %s\n" +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Rozšiřuje" -#: 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-pkg/pkgcache.cc:337 +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 "Zadejte prosím název tohoto média, např. „Debian 5.0.3 Disk 1“" +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "vyžadovaný" -#: 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-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standardní" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Selhalo připojení „%s“ na „%s“" +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "volitelný" -#: 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:338 +msgid "extra" +msgstr "extra" -#: 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-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Indexový typ souboru „%s“ není podporován" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nejsou v párech" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Chyba při kompilaci regulárního výrazu - %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 "" -"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" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Cache má nekompatibilní systém správy verzí" -#: 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“" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Chyba při zpracování %s (%s%d)" -#: 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“" +#: apt-pkg/pkgcachegen.cc:280 +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: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“" +#: apt-pkg/pkgcachegen.cc:283 +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: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" +#: apt-pkg/pkgcachegen.cc:286 +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:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“" +#: apt-pkg/pkgcachegen.cc:289 +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:454 +#: apt-pkg/pkgcachegen.cc:598 #, c-format -msgid "Couldn't find package %s" -msgstr "Nelze najít balík %s" +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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/pkgcachegen.cc:1233 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s nastaven jako instalovaný ručně.\n" +msgid "Couldn't stat source package list %s" +msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Čtu seznamy balíků" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Collecting File poskytuje" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s nastaven jako instalovaný automaticky.\n" +msgid "Unable to write to %s" +msgstr "Nelze zapsat do %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 "" -"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " -"manual“." +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Chyba IO při ukládání zdrojové cache" -#: 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-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:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Nelze zamknout adresář pro stahování" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Požadavek odeslán řešiteli" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Příprava na obdržení řešení" + +#: 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" + +#: 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:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nelze najít zdrojový balík pro %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "přejmenování selhalo, %s (%s -> %s)." -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Neshoda kontrolních součtů" + +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Velikosti nesouhlasí" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Neplatná operace %s" + +#: apt-pkg/acquire-item.cc:1679 #, 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 "" -"INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" -"%s\n" +"V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list " +"nebo porušený soubor)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1697 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "V souboru Release nelze najít kontrolní součet „%s“" + +#: apt-pkg/acquire-item.cc:1737 +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" + +#: apt-pkg/acquire-item.cc:1775 #, 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 "" -"Pro stažení nejnovějších (možná dosud nevydaných) aktualizací balíku prosím " -"použijte:\n" -"bzr branch %s\n" +"Soubor Release pro %s již expiroval (neplatný od %s). Aktualizace z tohoto " +"repositáře se nepoužijí." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Přeskakuji dříve stažený soubor „%s“\n" +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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nelze určit volné místo v %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:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Na %s nemáte dostatek volného místa" +msgid "GPG error: %s: %s" +msgstr "Chyba 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:1972 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\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 "" +"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)" -#. TRANSLATOR: The required 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:2038 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Fetch source %s\n" -msgstr "Stažení zdroje %s\n" +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." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Stažení některých archivů selhalo." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok výrobce %s neobsahuje otisk klíče" -#: 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-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Adresář seznamů %spartial chybí." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n" +msgid "Archives directory %spartial is missing." +msgstr "Archivní adresář %spartial chybí." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Příkaz pro rozbalení „%s“ selhal.\n" +msgid "Unable to lock directory %s" +msgstr "Nelze uzamknout adresář %s" -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Stahuji soubor %li z %li (%s zbývá)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Příkaz pro sestavení „%s“ selhal.\n" +msgid "Retrieving file %li of %li" +msgstr "Stahuji soubor %li z %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Synovský proces selhal" +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "Selhalo stažení %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 "" -"Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti " -"pro sestavení" +"Některé indexové soubory se nepodařilo stáhnout. Jsou ignorovány, nebo jsou " +"použity starší verze." + +#: 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" -#: cmdline/apt-get.cc:1054 +#: 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 "" -"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)" +"Hodnota „%s“ není v APT::Default-Release platná, protože toto vydání není " +"dostupné v sources.list" -#: 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 "Nelze získat závislosti pro sestavení %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Neplatný záznam v souboru preferencí %s, chybí hlavička Package" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nemá žádné závislosti pro sestavení.\n" +msgid "Did not understand pin type %s" +msgstr "Nerozumím vypíchnutí typu %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 "" -"závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " -"dovolena" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen" - -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový" +"Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " +"5 apt.conf v části APT::Immediate-Configure. (%d)" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 #, 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" +msgid "Could not configure '%s'. " +msgstr "Nelze nastavit „%s“." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:584 #, 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 "" -"závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " -"verzi" +"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." -#: 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 "Selhalo splnění závislosti %s pro %s: %s" +msgid "Line %u too long in source list %s." +msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odpojuji 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 "Závislosti pro sestavení %s nemohly být splněny." +msgid "Using CD-ROM mount point %s\n" +msgstr "Používám přípojný bod %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Chyba při zpracování závislostí pro sestavení" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čekám na disk…\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Seznam změn %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Připojuji CD-ROM…\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podporované moduly:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Rozpoznávám… " -#: 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/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Uložený název: %s \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" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Hledám na disku indexové soubory…\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 "" +"Nalezeny indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " +"podpisy (%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 "" +"Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou " +"architekturu?" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cdrom.cc:771 #, 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" +msgid "Found label '%s'\n" +msgstr "Nalezený název: „%s“\n" -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s již byl nastaven jako instalovaný ručně.\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" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s již byl nastaven jako instalovaný automaticky.\n" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Tento disk se nazývá: \n" +"„%s“\n" -#: cmdline/apt-mark.cc:241 -#, c-format -msgid "%s was already set on hold.\n" -msgstr "%s již byl podržen v aktuální verzi.\n" - -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s již nebyl držen v aktuální verzi.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopíruji seznamy balíků…" -#: 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 "Čekal jsem na %s, ale nebyl tam" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisuji nový seznam balíků\n" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, c-format -msgid "%s set on hold.\n" -msgstr "%s bude podržen v aktuální verzi.\n" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Seznamy zdrojů na tomto disku jsou:\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 "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." -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)." +"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." -#: 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 "" +"Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " +"podrženými balíky." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nelze číst databázi na cdrom %s" +#: 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/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 "" -"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/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Vytváří se strom závislostí" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Chybné CD" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidátské verze" -#: methods/cdrom.cc:249 -#, 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á." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generování závislostí" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk nebyl nalezen." +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Čtu stavové informace" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Soubor nebyl nalezen" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Nelze otevřít stavový soubor %s" -#: 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/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Nelze zapsat dočasný stavový soubor %s" -#: 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/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nelze zpracovat soubor %s (1)" -#: 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/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nelze zpracovat soubor %s (2)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Přihlašuji se" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nelze určit jméno druhé strany" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Verze „%s“ pro „%s“ nebyla nalezena" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nelze určit lokální jméno" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nelze najít balík %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:604 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Server zamítl naše spojení a řekl: %s" +msgid "Couldn't find task '%s'" +msgstr "Nelze najít úlohu „%s“" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:610 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER selhal, server řekl: %s" +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:232 +#: apt-pkg/cacheset.cc:616 +#, 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-pkg/cacheset.cc:627 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS selhal, server řekl: %s" +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:252 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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 "" -"Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin " -"je prázdný." +"Nelze vybrat nainstalovanou ani kandidátskou verzi balíku „%s“, protože " +"žádné takové verze nemá" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s" +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:306 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE selhal, server řekl: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Čas spojení vypršel" +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:350 -msgid "Server closed the connection" -msgstr "Server uzavřel spojení" +#: apt-pkg/cacheset.cc:664 +#, 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: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/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nelze zpracovat Release soubor %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpověď přeplnila buffer." +#: apt-pkg/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release soubor %s neobsahuje žádné sekce" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Porušení protokolu" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release soubor %s neobsahuje Hash záznam" -#: 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/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Neplatná položka „Valid-Until“ v Release souboru %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/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Neplatná položka „Date“ v Release souboru %s" -#: 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/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:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Selhalo" +#: 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/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nelze připojit pasivní socket." +#: apt-pkg/sourcelist.cc:173 +#, 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])" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nezískal naslouchající socket" +#: apt-pkg/sourcelist.cc:184 +#, 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í)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nelze navázat socket" +#: apt-pkg/sourcelist.cc:190 +#, 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íč)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nelze naslouchat na socketu" +#: apt-pkg/sourcelist.cc:193 +#, 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)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nelze určit jméno socketu" +#: 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)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nelze odeslat příkaz PORT" +#: 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)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznámá rodina adres %u (AF_*)" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování URI)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT selhal, server řekl: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Spojení datového socketu vypršelo" +#: 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)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nelze přijmout spojení" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otevírám %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/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nelze stáhnout soubor, server řekl „%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/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datový socket vypršel" +#: 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/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Přenos dat selhal, server řekl „%s“" +msgid "Installing %s" +msgstr "Instaluji %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Dotaz" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Nastavuji %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nelze vyvolat " +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Odstraňuji %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Připojuji se k %s (%s)" +msgid "Completely removing %s" +msgstr "Kompletně odstraňuji %s" -#: 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 "Značím si zmizení %s" -#: 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 "Nelze vytvořit socket pro %s (f=%u t=%u p=%u)" +msgid "Running post-installation trigger %s" +msgstr "Spouštím poinstalační spouštěč %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 "Nelze navázat spojení na %s:%s (%s)." +msgid "Directory '%s' missing" +msgstr "Adresář „%s“ chybí" -#: 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 "Nelze se připojit k %s:%s (%s), čas spojení vypršel" +msgid "Could not open file '%s'" +msgstr "Nelze otevřít soubor „%s“" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nelze se připojit k %s:%s (%s)." +msgid "Preparing %s" +msgstr "Připravuji %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 "Connecting to %s" -msgstr "Připojuji se k %s" +msgid "Unpacking %s" +msgstr "Rozbaluji %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nelze přeložit „%s“" +msgid "Preparing to configure %s" +msgstr "Připravuji nastavení %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Dočasné selhání při zjišťování „%s“" +msgid "Installed %s" +msgstr "Nainstalován %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)" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Připravuji odstranění %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1004 #, 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 "Removed %s" +msgstr "Odstraněn %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nelze se připojit k %s:%s:" +msgid "Preparing to completely remove %s" +msgstr "Připravuji úplné odstranění %s" -#: 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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Kompletně odstraněn %s" -#: 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:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: 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:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nelze zapsat do %s" -#. 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:1067 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznámá chyba při spouštění gpgv" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: 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:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Operace byla přerušena dříve, než mohla skončit" + +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" msgstr "" -"Následující podpisy nemohly být ověřeny, protože není dostupný veřejný " -"klíč:\n" +"Žádné apport hlášení nebylo vytvořeno, protože již byl dosažen MaxReports" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prázdné soubory nejsou platnými archivy" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Chyba zápisu do souboru" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problémy se závislostmi - ponechávám nezkonfigurované" -#: 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:1632 +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." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Chyba čtení ze serveru" +#: apt-pkg/deb/dpkgpm.cc:1638 +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." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Chyba zápisu do souboru" +#: apt-pkg/deb/dpkgpm.cc:1645 +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í." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Výběr selhal" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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." -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Čas spojení vypršel" +#: apt-pkg/deb/dpkgpm.cc:1679 +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." -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Chyba zápisu do výstupního souboru" +#: 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?" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čekám na hlavič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?" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Chybná hlavička" +#. 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“." -#: 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/debsystem.cc:128 +msgid "Not locked" +msgstr "Není uzamčen" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http server poslal neplatnou hlavičku 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 "%lid %lih %limin %lis" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http server poslal neplatnou hlavičku Content-Range" +#. 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 "Tento HTTP server má porouchanou podporu rozsahů" +#. 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 "Neznámý formát data" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Špatné datové záhlaví" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Výběr %s nenalezen" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Spojení selhalo" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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í" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vnitřní chyba" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Nešlo otevřít zámkový soubor %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Propočítávám aktualizaci… " +#: apt-pkg/contrib/fileutl.cc:219 +#, 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-upgrade.cc:28 -msgid "Done" -msgstr "Hotovo" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Nelze získat zámek %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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-list.cc:164 +#: apt-pkg/contrib/fileutl.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] "" -msgstr[2] "" +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-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Opravuji závislosti…" +#: apt-pkg/contrib/fileutl.cc:422 +#, 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-cachefile.cc:96 -msgid " failed." -msgstr " selhalo." +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s obdržel chybu segmentace." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nelze opravit závislosti" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s obdržel signál %u." -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nelze minimalizovat sadu pro aktualizaci" +#: apt-pkg/contrib/fileutl.cc:847 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-cachefile.cc:104 -msgid " Done" -msgstr " Hotovo" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s neočekávaně skončil" -#: 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/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Chyba zápisu" -#: 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:951 +#, 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:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nelze otevřít soubor %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nelze otevřít popisovač souboru %d" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Nelze vytvořit podproces IPC" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Nezdařilo se spustit kompresor " -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Chyba čtení" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "[Instalovaný]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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:248 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +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:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problém při zavírání souboru %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "ale %s je nainstalován" +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:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "ale %s se bude instalovat" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ale nedá se nainstalovat" +msgid "Problem unlinking the file %s" +msgstr "Problém při odstraňování souboru %s" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ale je to virtuální balík" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problém při synchronizování souboru" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ale není nainstalovaný" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nelze vyhodnotit %s" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ale nebude se instalovat" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s… Chyba!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " nebo" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s… Hotovo" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Následující balíky mají nesplněné závislosti:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Následující NOVÉ balíky budou nainstalovány:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Následující balíky budou ODSTRANĚNY:" +#: 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:550 -msgid "The following packages have been kept back:" -msgstr "Následující balíky jsou podrženy v aktuální verzi:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nelze duplikovat popisovač souboru %i" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Následující balíky budou aktualizovány:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nešlo mmapovat %llu bajtů" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Následující balíky budou DEGRADOVÁNY:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nelze zavřít mmap" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Následující podržené balíky budou změněny:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Nelze synchronizovat mmap" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (kvůli %s) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nešlo mmapovat %lu bajtů" -#: apt-private/private-output.cc:675 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nelze zmenšit soubor" + +#: 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 "" -"VAROVÁNÍ: Následující nezbytné balíky budou odstraněny.\n" -"Pokud přesně nevíte, co děláte, NEDĚLEJTE to!" +"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-output.cc:706 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizováno, %lu nově instalováno, " +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-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu přeinstalováno, " +#: 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-private/private-output.cc:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "%lu degradováno, " +msgid "Unable to stat the mount point %s" +msgstr "Nelze vyhodnotit přípojný bod %s" -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu k odstranění a %lu neaktualizováno.\n" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nezdařilo se vyhodnotit cdrom" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu instalováno nebo odstraněno pouze částečně.\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:740 -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:746 -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:757 -msgid "Y" -msgstr "Y" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nerozpoznaná zkratka typu: „%c“" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "Regex compilation error - %s" -msgstr "Chyba při kompilaci regulárního výrazu - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Příkaz update neakceptuje žádné argumenty" +msgid "Opening configuration file %s" +msgstr "Otevírám konfigurační soubor %s" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:803 #, 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: Block starts with no name." +msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem." -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaktická chyba %s:%u: Zkomolená značka" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:839 #, 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 "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: 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/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)" -#: 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/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" -#: 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/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Jak podivné… velikosti nesouhlasí, ohlaste to na apt@packages.debian.org" +"Syntaktická chyba %s:%u: Direktiva clear vyžaduje jako argument strom " +"možností" -#. 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 +#: apt-pkg/contrib/configuration.cc:952 #, 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: Extra junk at end of file" +msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí" -#. TRANSLATOR: The required space between number and unit 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 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Potřebuji stáhnout %sB archivů.\n" +msgid "No keyring installed in %s." +msgstr "V %s není nainstalována žádná klíčenka." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:121 #, 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 "Command line option '%c' [from %s] is not known." +msgstr "Parametr příkazové řádky „%c“ [z %s] je neznámý" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 +#: apt-pkg/contrib/cmndline.cc:163 #, 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 "Command line option %s is not understood" +msgstr "Nerozumím parametru %s příkazové řádky" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "You don't have enough free space in %s." -msgstr "V %s nemáte dostatek volného místa." +msgid "Command line option %s is not boolean" +msgstr "Parametr příkazové řádky %s není pravdivostní hodnota" -#: 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/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: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/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =." -#. 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/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:222 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "Volba „%s“ je příliš dlouhá" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Přerušeno." +#: 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:243 -msgid "Do you want to continue?" -msgstr "Chcete pokračovat?" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Neplatná operace %s" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Některé soubory nemohly být staženy" +#: 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: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?" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Celkem názvů balíků: " -#: 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" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Celkem struktur balíků: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nelze opravit chybějící balíky." +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normálních balíků: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Přerušuji instalaci." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Čistě virtuálních balíků: " -#: 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:" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Jednoduchých virtuálních balíků: " -#: 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." +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Smíšených virtuálních balíků: " -#: 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" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Chybějících: " -#: 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 "" -"Hmm, zdá se, že AutoRemover zničil něco, co neměl.\n" -"Nahlaste prosím chybu v apt." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Celkem různých verzí: " -#. -#. 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:" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Celkem různých popisů: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Vnitřní chyba, AutoRemover pokazil věci" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Celkem závislostí: " -#: 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] "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:372 +msgid "Total ver/file relations: " +msgstr "Celkem vztahů ver/soubor: " -#: 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" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Celkem vztahů popis/soubor: " -#: 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“." +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Celkem poskytnutých mapování: " -#: 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:388 +msgid "Total globbed strings: " +msgstr "Celkem globovaných řetězců: " -#: 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:402 +msgid "Total dependency version space: " +msgstr "Celkem místa závislých verzí: " -#: 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ě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:407 +msgid "Total slack space: " +msgstr "Celkem jalového místa: " -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Poškozené balíky" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Celkem přiřazeného místa: " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Následující extra balíky budou instalovány:" +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Navrhované balíky:" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:803 -msgid "Recommended packages:" -msgstr "Doporučované balíky:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Musíte zadat alespoň jeden vyhledávací vzor" -#: apt-private/private-install.cc:825 -#, 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:1472 +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:829 -#, 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:1597 +msgid "Package files:" +msgstr "Soubory balíku:" -#: apt-private/private-install.cc:841 -#, 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:1604 cmdline/apt-cache.cc:1695 +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-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s je již nejnovější verze.\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Vypíchnuté balíky:" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Vybraná verze „%s“ (%s) pro „%s“\n" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nenalezeno)" -#: apt-private/private-install.cc:899 -#, 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:1638 +msgid " Installed: " +msgstr " Instalovaná verze: " -#. 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 "" -"Balík „%s“ není nainstalován, nelze tedy odstranit. Mysleli jste „%s“?\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidát: " -#: apt-private/private-install.cc:947 -#, 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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(žádná)" -#: 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-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!" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Vypíchnutý balík: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentizační varování potlačeno.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabulka verzí:" -#: 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:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 pro %s zkompilován na %s %s\n" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalovat tyto balíky bez ověření?" +#: cmdline/apt-cache.cc:1801 +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/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-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/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Selhalo přejmenování %s na %s" +#: 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/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 "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 "" -#: 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 "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" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Cíl " +#: 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“" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Mám:" +#: 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“" -#: 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 "Nelze najít balík vyhovující regulárnímu výrazu „%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 "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“" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Staženo %sB za %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Nelze najít balík %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Pracuji]" +msgid "%s set to manually installed.\n" +msgstr "%s nastaven jako instalovaný ručně.\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 nastaven jako instalovaný automaticky.\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 "" -"Výměna média: Vložte disk nazvaný\n" -" „%s“\n" -"do mechaniky „%s“ a stiskněte enter\n" +"Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „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 +#: 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í" + +#: 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" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Unable to read %s" -msgstr "Nelze číst %s" +msgid "Unable to find a source package for %s" +msgstr "Nelze najít zdrojový balík pro %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:786 #, c-format -msgid "Unable to change to %s" -msgstr "Nelze přejít do %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" -#. 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:791 #, c-format -msgid "No mirror file '%s' found " -msgstr "Soubor se zrcadly „%s“ nebyl nalezen " +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" -#. 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:839 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nelze číst soubor se zrcadly „%s“" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Přeskakuji dříve stažený soubor „%s“\n" -#: 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 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, 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" - -#: 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" - -#: 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" - -#: 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-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!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nelze alokovat diverzi" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Vnitřní chyba při AddDiversion" +msgid "Couldn't determine free space in %s" +msgstr "Nelze určit volné místo v %s" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:884 #, 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" +msgid "You don't have enough free space in %s" +msgstr "Na %s nemáte dostatek volného místa" -#: 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:893 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojí přidání diverze %s -> %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\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:898 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicitní konfigurační soubor %s/%s" +msgid "Need to get %sB of source archives.\n" +msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The path %s is too long" -msgstr "Cesta %s je příliš dlouhá" +msgid "Fetch source %s\n" +msgstr "Stažení zdroje %s\n" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Rozbaluji %s vícekrát" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Stažení některých archivů selhalo." -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Adresář %s je odkloněn" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Stahování dokončeno v režimu pouze stáhnout" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:952 #, 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 "Skipping unpack of already unpacked source in %s\n" +msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %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:964 #, c-format -msgid "Failed to stat %s" -msgstr "Nelze vyhodnotit %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Selhalo přejmenování %s na %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:993 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Adresář %s bude nahrazen neadresářem" +msgid "Build command '%s' failed.\n" +msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: 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" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Synovský proces selhal" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Cesta je příliš dlouhá" +#: cmdline/apt-get.cc:1031 +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í" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Přepsat vyhovující balík bez udání verze pro %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/extract.cc:438 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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 "Unable to get build-dependency information for %s" +msgstr "Nelze získat závislosti pro sestavení %s" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Unable to stat %s" -msgstr "Nelze vyhodnotit %s" +msgid "%s has no build depends.\n" +msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Failed to write file %s" -msgstr "Selhal zápis souboru %s" +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/dirstream.cc:105 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Failed to close file %s" -msgstr "Selhalo zavření souboru %s" +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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Toto není platný DEB archiv, chybí část „%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/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vnitřní chyba, nemohu najít část %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nezpracovatelný kontrolní soubor" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neplatný podpis archivu" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Chyba při čtení záhlaví prvku archivu" +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:96 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatné záhlaví prvku archivu %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neplatné záhlaví prvku archivu" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiv je příliš krátký" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Chyba při čtení hlaviček archivu" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Selhalo vytvoření roury" +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/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Selhalo spuštění gzipu " +#: cmdline/apt-get.cc:1405 +#, 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:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Porušený archiv" +#: cmdline/apt-get.cc:1420 +#, 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:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Kontrolní součet taru selhal, archiv je poškozený" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Chyba při zpracování závislostí pro sestavení" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznámá hlavička TARu typ %u, člen %s" +msgid "Changelog for %s (%s)" +msgstr "Seznam změn %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nebylo možno vyhodnotit %s." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Podporované moduly:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Spouštím dpkg" - -#: 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-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/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-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 "Zapsáno %i záznamů.\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 "Zapsáno %i záznamů s chybějícími soubory (%i).\n" +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:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-mark.cc:74 #, 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 to manually installed.\n" +msgstr "%s již byl nastaven jako instalovaný ručně.\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 "Zapsáno %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s již byl nastaven jako instalovaný automaticky.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Nelze najít autentizační záznam pro: %s" +msgid "%s was already set on hold.\n" +msgstr "%s již byl podržen v aktuální verzi.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Neshoda kontrolních součtů pro: %s" +msgid "%s was already not hold.\n" +msgstr "%s již nebyl držen v aktuální verzi.\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 "Ovladač metody %s nemohl být nalezen." - -#: 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" +msgid "%s set on hold.\n" +msgstr "%s bude podržen v aktuální verzi.\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 "Metoda %s nebyla spuštěna správně" +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: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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Spuštění dpkg selhalo. Jste root?" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: 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 "" -"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" +"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/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.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 "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" +msgid "Unable to read the cdrom database %s" +msgstr "Nelze číst databázi na cdrom %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Předzávisí na" +#: 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 "" +"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:321 -msgid "Suggests" -msgstr "Navrhuje" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Chybné CD" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Doporučuje" +#: methods/cdrom.cc:249 +#, 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á." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Koliduje s" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk nebyl nalezen." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Nahrazuje" +#: 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 "Obsoletes" -msgstr "Zastarává" +#: 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 "Breaks" -msgstr "Poruš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:323 -msgid "Enhances" -msgstr "Rozšiřuje" +#: 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 "important" -msgstr "důležitý" +#. 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 "required" -msgstr "vyžadovaný" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nelze určit jméno druhé strany" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standardní" +#: 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 "optional" -msgstr "volitelný" +#: 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/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER selhal, server řekl: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexový typ souboru „%s“ není podporován" +msgid "PASS failed, server said: %s" +msgstr "PASS 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: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ý." -#. 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 "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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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 +#: 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:496 +msgid "Bad header data" +msgstr "Špatné datové záhlaví" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Spojení selhalo" + +#: methods/server.cc:572 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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?" -msgstr "" -"Nenalezeny žádné balíky. Možná to není disk s Debianem, nebo je pro jinou " -"architekturu?" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Vnitřní chyba" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Nalezený název: „%s“\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Propočítávám aktualizaci… " -#: 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-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Hotovo" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Tento disk se nazývá: \n" -"„%s“\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopíruji seznamy balíků…" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisuji nový seznam balíků\n" +#: apt-private/private-list.cc:156 +#, 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 "Opravuji 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:96 +msgid " failed." +msgstr " selhalo." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Nelze opravit závislosti" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nelze minimalizovat sadu pro aktualizaci" -#: 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:104 +msgid " Done" +msgstr " Hotovo" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Vytváří se strom závislostí" +#: 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/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidátské verze" +#: 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:168 -msgid "Dependency generation" -msgstr "Generování 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:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Čtu stavové informace" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr "[Instalovaný]" -#: 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:237 +#, fuzzy +msgid "[installed,local]" +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:240 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nelze zpracovat soubor %s (1)" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr "[Instalovaný]" -#: 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:244 +#, fuzzy +msgid "[installed]" +msgstr "[Instalovaný]" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:248 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Verze „%s“ pro „%s“ nebyla nalezena" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:603 +#: apt-private/private-output.cc:434 #, c-format -msgid "Couldn't find task '%s'" -msgstr "Nelze najít úlohu „%s“" +msgid "but %s is installed" +msgstr "ale %s je nainstalován" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:436 #, 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“" +msgid "but %s is to be installed" +msgstr "ale %s se bude instalovat" -#: 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:443 +msgid "but it is not installable" +msgstr "ale nedá se nainstalovat" -#: 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:445 +msgid "but it is a virtual package" +msgstr "ale je to virtuální balík" -#: 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:448 +msgid "but it is not installed" +msgstr "ale není nainstalovaný" -#: 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:448 +msgid "but it is not going to be installed" +msgstr "ale nebude se instalovat" -#: 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:453 +msgid " or" +msgstr " nebo" -#: 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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Následující balíky mají nesplněné závislosti:" -#: 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:502 +msgid "The following NEW packages will be installed:" +msgstr "Následující NOVÉ balíky budou nainstalovány:" -#: 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:528 +msgid "The following packages will be REMOVED:" +msgstr "Následující balíky budou ODSTRANĚ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:550 +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: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:571 +msgid "The following packages will be upgraded:" +msgstr "Následující balíky budou aktualizovány:" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Neplatná položka „Date“ v Release souboru %s" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Následující balíky budou DEGRADOVÁNY:" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "Následující podržené balíky budou změněny:" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (nezpracovatelná [volba])" +msgid "%s (due to %s) " +msgstr "%s (kvůli %s) " -#: apt-pkg/sourcelist.cc:173 -#, 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])" +#: apt-private/private-output.cc:675 +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:184 +#: apt-private/private-output.cc:706 #, 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 upgraded, %lu newly installed, " +msgstr "%lu aktualizováno, %lu nově instalováno, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:710 #, 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 reinstalled, " +msgstr "%lu přeinstalováno, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:712 #, 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 downgraded, " +msgstr "%lu degradováno, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (URI)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu k odstranění a %lu neaktualizováno.\n" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (dist)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu instalováno nebo odstraněno pouze částečně.\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/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:740 +msgid "[Y/n]" +msgstr "[Y/n]" -#: 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: 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:746 +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:757 +msgid "Y" +msgstr "Y" -#: 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)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "N" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Otevírám %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Příkaz update neakceptuje žádné argumenty" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" +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: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 "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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +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:224 #, 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:230 apt-private/private-install.cc:248 +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:245 +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:315 +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:322 +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:326 +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:331 +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:332 +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:368 +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:372 +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:393 +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:501 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." + +#. +#. 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:504 apt-private/private-install.cc:655 +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-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Vnitřní chyba, AutoRemover pokazil věci" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:515 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." +"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-private/private-install.cc:519 +#, 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:521 +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-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-install.cc:614 +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-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:616 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:640 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:661 +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:738 +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:828 +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:829 +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:851 #, 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:855 #, 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:867 #, 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:872 #, 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:1243 +#: apt-private/private-install.cc:920 #, 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:925 #, 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:967 #, 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:973 #, 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-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Selhalo přejmenování %s na %s" -#: apt-pkg/contrib/fileutl.cc:824 +#: 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-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Cíl " -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Mám:" + +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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“" + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in 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: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" + +#: 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/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problém při synchronizování souboru" +#: 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" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s… Chyba!" +#: 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:184 #, 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 =." -msgstr "Parametr %s: Zadání konfigurační položky musí obsahovat =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3230,12 +3243,7 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nelze vyhodnotit %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nelze určit verzi programu debconf. Je debconf nainstalován?" @@ -3352,17 +3360,17 @@ msgstr "Žádný výběr nevyhověl" msgid "Some files are missing in the package file group `%s'" msgstr "Některé soubory chybí v balíkovém souboru skupiny %s" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB je porušená, soubor přejmenován na %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB je stará, zkouším aktualizovat %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3370,105 +3378,105 @@ msgstr "" "Formát databáze je neplatný. Pokud jste přešli ze starší verze apt, databázi " "prosím odstraňte a poté ji znovu vytvořte." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nelze otevřít DB soubor %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Nelze přečíst link %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Archiv nemá kontrolní záznam" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Nelze získat kurzor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Nelze číst adresář %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Nelze vyhodnotit %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Chyby se týkají souboru " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Chyba při zjišťování %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Průchod stromem selhal" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Nelze otevřít %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "Odlinkování %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Nelze přečíst link %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Nelze odlinkovat %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nezdařilo se slinkovat %s s %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Odlinkovací limit %sB dosažen.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archiv nemá pole Package" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žádnou položku pro override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správce %s je %s, ne %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žádnou zdrojovou položku pro override\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá ani žádnou binární položku pro override\n" diff --git a/po/cy.po b/po/cy.po index 2eef86934..3502517b3 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@ -15,3230 +15,3243 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +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:161 +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:164 #, 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:171 +#, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +msgid "Depends" +msgstr "Dibynnu" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Wedi Sefydlu: " +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "CynDdibynnu" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Ymgeisydd: " +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Awgrymu" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(dim)" +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Argymell" -#: cmdline/apt-cache.cc:1620 -#, fuzzy -msgid " Package pin: " -msgstr " Pin Pecyn: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Gwrthdaro" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -#, fuzzy -msgid " Version table:" -msgstr " Tabl Fersiynnau:" +#: apt-pkg/pkgcache.cc:325 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Darfodi" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "pwysig" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "angenrheidiol" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "safonnol" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opsiynnol" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "ychwanegol" + +#: 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:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Gwall crynhoi patrwm - %s" + +#: apt-pkg/pkgcachegen.cc:116 +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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, 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" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +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." + +#: apt-pkg/pkgcachegen.cc:283 +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." -#: cmdline/apt-cache.cc:1749 +#: apt-pkg/pkgcachegen.cc:286 #, 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" +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." -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcachegen.cc:289 +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-cdrom.cc:91 +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" + +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" + +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 #, 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" +msgid "Reading package lists" +msgstr "Yn Darllen Rhestrau Pecynnau" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Methwyd ailenwi %s at %s" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Yn Casglu Darpariaethau Ffeil" -#: 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:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Ni ellir ysgrifennu i %s" + +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Nid yw ymresymiadau mewn parau" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: 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" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" 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" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Methwyd canfod pecyn %s" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "methwyd ailenwi, %s (%s -> %s)." -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Methwyd canfod pecyn %s" +#: apt-pkg/acquire-item.cc:175 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Camgyfatebiaeth swm MD5" -#: 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" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Camgyfatebiaeth maint" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Gweithred annilys %s" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Couldn't find package %s" -msgstr "Methwyd canfod pecyn %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +# FIXME: number? +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: 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-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1775 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." 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" +#: apt-pkg/acquire-item.cc:1797 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: 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-pkg/acquire-item.cc:1827 +#, 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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +# FIXME: case +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"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.)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"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." + +#: 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" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, fuzzy, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" +msgid "List directory %spartial is missing." +msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:92 #, fuzzy, c-format -msgid "Couldn't determine free space in %s" -msgstr "Does dim digon o le rhydd yn %s gennych" +msgid "Archives directory %spartial is missing." +msgstr "Mae'r cyfeiriadur archif %spartial ar goll." -#: 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-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Ni ellir cloi'r cyfeiriadur rhestr" -#. 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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" +msgid "Retrieving file %li of %li (%s remaining)" +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.cc:927 +#, 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 "Need to get %sB of source archives.\n" -msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Methwyd cyrchu %s %s\n" -#: cmdline/apt-get.cc:902 -#, fuzzy, c-format -msgid "Fetch source %s\n" -msgstr "Cyrchu Ffynhonell %s\n" +#: 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 "" +"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " +"rai eu defnyddio yn lle." -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Methwyd cyrchu rhai archifau." +# 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" -#: 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-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 "" + +# 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'" -#: cmdline/apt-get.cc:950 +# FIXME: tense +#: apt-pkg/policy.cc:444 #, 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" +msgid "Did not understand pin type %s" +msgstr "Methwyd daeall y math pin %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" -#: cmdline/apt-get.cc:962 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Methodd y gorchymyn dadbacio '%s'.\n" +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:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Methwyd agor ffeil %s" -#: cmdline/apt-get.cc:963 +# FIXME: %s may have an arbirrary length +#: apt-pkg/packagemanager.cc:584 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\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 "" +"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." -#: cmdline/apt-get.cc:991 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Methodd y gorchymyn adeiladu '%s'.\n" +msgid "Line %u too long in source list %s." +msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Methodd proses plentyn" +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "CD Anghywir" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" 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" +#: apt-pkg/cdrom.cc:599 +#, fuzzy +msgid "Waiting for disc...\n" +msgstr "Yn aros am benawdau" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" +msgid "Stored label: %s\n" +msgstr "" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:734 #, c-format -msgid "%s has no build depends.\n" -msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +msgid "Found label '%s'\n" msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "" + +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy " -"newydd" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +#, fuzzy +msgid "Copying package lists..." +msgstr "Yn Darllen Rhestrau Pecynnau" + +#: apt-pkg/cdrom.cc:863 +#, fuzzy +msgid "Writing new source list\n" +msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." 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" +"Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " +"ei gyfer." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " -"%s" +"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." +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-pkg/depcache.cc:139 +#, fuzzy +msgid "Candidate versions" +msgstr "Fersiynau Posib" + +#: apt-pkg/depcache.cc:168 +#, fuzzy +msgid "Dependency generation" +msgstr "Cynhyrchaid Dibyniaeth" + +#: 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" + +#: apt-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Methwyd agor %s" + +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Methwyd ysgrifennu ffeil %s" -#: cmdline/apt-get.cc:1380 +# FIXME: number? +#: apt-pkg/tagfile.cc:169 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." +msgid "Unable to parse package file %s (2)" +msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Methwyd prosesu dibyniaethau adeiladu" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ni ellir lleoli'r pecyn %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:604 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Yn cysylltu i %s (%s)" +msgid "Couldn't find task '%s'" +msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:1591 -#, fuzzy -msgid "Supported modules:" -msgstr "Modylau a Gynhelir:" +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Methwyd canfod pecyn %s" -# FIXME: split -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Methwyd canfod pecyn %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" 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/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: cmdline/apt-mark.cc:68 +# FIXME: number? +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ond nid yw wedi ei sefydlu" +msgid "Unable to parse Release file %s" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +msgid "No sections in Release file %s" +msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: 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/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Llinell annilys yn y ffeil dargyfeirio: %s" -#: cmdline/apt-mark.cc:243 +# FIXME: number? +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" -#: 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/sourcelist.cc:127 #, fuzzy, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Arhoswyd am %s ond nid oedd e yna" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Methwyd agor %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: 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)" -#: 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/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)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" - -#: methods/cdrom.cc:212 -#, fuzzy -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." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" -#: methods/cdrom.cc:222 -#, fuzzy -msgid "Wrong CD-ROM" -msgstr "CD Anghywir" +#: 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/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:211 #, 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." +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)" -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Ffeil heb ei ganfod" +#: 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ffeil heb ei ganfod" +#: 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/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Methwyd stat()" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Yn agor %s" -#: 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/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/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/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" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Yn mewngofnodi" +#: 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" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ni ellir darganfod enw'r cymar" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Wedi Sefydlu: " -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ni ellir darganfod yr enw lleol" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Yn cysylltu i %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, fuzzy, c-format -msgid "The server refused the connection and said: %s" -msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" +msgid "Removing %s" +msgstr "Yn agor %s" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Methwyd dileu %s" -#: methods/ftp.cc:232 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +msgid "Noting disappearance of %s" msgstr "" -"Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::" -"ProxyLogin yn wag.)" -# FIXME -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s" +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" +#. 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." -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Goramser cysylltu" +#: 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" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Caeodd y gweinydd y cysylltiad" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Yn agor %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/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Yn agor %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Gorlifodd ateb y byffer." +#: apt-pkg/deb/dpkgpm.cc:995 +#, fuzzy, c-format +msgid "Preparing to configure %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Llygr protocol" +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Wedi Sefydlu: " -#: 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" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Methwyd creu soced" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Argymell" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, fuzzy, c-format +msgid "Preparing to completely remove %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Methwyd" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Methwyd dileu %s" -#: methods/ftp.cc:718 -#, fuzzy -msgid "Could not connect passive socket." -msgstr "Methwyd cysylltu soced goddefol" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -# FIXME -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Methodd getaddrinfo gael soced gwrando" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Ni ellir ysgrifennu i %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Methwyd rhwymo soced" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Methwyd gwrando ar y soced" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Methwyd canfod enw'r soced" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Methwyd danfod gorchymyn PORT" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Goramserodd cysylltiad y soced data" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Methwyd derbyn cysylltiad" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problem wrth stwnshio ffeil" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Goramserodd soced data" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Ymholiad" - -# FIXME -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Methwyd gweithredu " +#: 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" -#: methods/connect.cc:76 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Yn cysylltu i %s (%s)" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/connect.cc:94 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, 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)" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:100 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)." +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:108 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" +msgid "%limin %lis" +msgstr "" -#: methods/connect.cc:126 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Methwyd cysylltu i %s:%s (%s)." +msgid "%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 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Connecting to %s" -msgstr "Yn cysylltu i %s" +msgid "Selection %s not found" +msgstr "Ni chanfuwyd y dewis %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Could not resolve '%s'" -msgstr "Methwyd datrys '%s'" +msgid "Not using locking for read only lock file %s" +msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:196 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Methiant dros dro yn datrys '%s'" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" +msgid "Could not open lock file %s" +msgstr "Methwyd agor y ffeil clo %s" -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Ddim yn cloi'r ffeil clo ar NFS %s" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Methwyd cysylltu i %s %s:" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Methwyd cael y clo %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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." +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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:422 #, 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 "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Derbyniodd is-broses %s wall segmentu." -#: 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/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Derbyniodd is-broses %s wall segmentu." -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:847 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)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Gorffenodd is-broses %s yn annisgwyl" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Gwall wrth ysgrifennu at y ffeil" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Gwall ysgrifennu" -#: 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" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gwall wrth gau'r ffeil" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Gwall wrth ddarllen o'r gweinydd" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Methwyd agor ffeil %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Gwall wrth ysgrifennu at ffeil" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Methwyd agor pibell ar gyfer %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Methwyd dewis" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Methwyd creu isbroses IPC" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Goramserodd y cysylltiad" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Methwyd gweithredu cywasgydd " -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Gwall wrth ysgrifennu i ffeil allbwn" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Gwall darllen" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Yn aros am benawdau" +# FIXME +#: apt-pkg/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "o hyd %lu i ddarllen ond dim ar ôl" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Llinell pennawd gwael" +# FIXME +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "o hyd %lu i ysgrifennu ond methwyd" -#: 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/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Gwall wrth gau'r ffeil" -#: 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/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Gwall wrth gyfamseru'r ffeil" -#: 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/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Gwall wrth dadgysylltu'r ffeil" -#: methods/server.cc:196 -#, fuzzy -msgid "This HTTP server has broken range support" -msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Gwall wrth gyfamseru'r ffeil" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Fformat dyddiad anhysbys" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ni ellir gwneud stat() o %s" -#: methods/server.cc:489 -#, fuzzy -msgid "Bad header data" -msgstr "Data pennawd gwael" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Gwall!" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Methodd y cysylltiad" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Wedi Gorffen" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Gwall mewnol" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-upgrade.cc:25 -#, fuzzy -msgid "Calculating upgrade... " -msgstr "Yn Cyfrifo'r Uwchraddiad... " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Wedi Gorffen" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Wedi Gorffen" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Methwyd agor pibell ar gyfer %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: 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-private/private-list.cc:164 +#: apt-pkg/contrib/mmap.cc:290 #, 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 make mmap of %lu bytes" +msgstr "Methwyd gwneud mmap() efo %lu beit" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Yn cywiro dibyniaethau..." +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Methwyd ysgrifennu ffeil %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " wedi methu." +#: 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ni ellir cywiro dibyniaethau" +#: 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ni ellir bychanu y set uwchraddio" +#: 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-cachefile.cc:104 -msgid " Done" -msgstr " Wedi Gorffen" +#: 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-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/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Methwyd gwneud stat() o'r CD-ROM" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Talgryniad math anhysbys: '%c'" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." + +# FIXME +#: apt-pkg/contrib/configuration.cc:822 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Sefydliwyd]" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Sefydliwyd]" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Sefydliwyd]" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Sefydliwyd]" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/configuration.cc:902 +#, 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" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:952 #, c-format -msgid "but %s is installed" -msgstr "ond mae %s wedi ei sefydlu" +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-output.cc:436 +#. 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-pkg/contrib/cmndline.cc:121 #, c-format -msgid "but %s is to be installed" -msgstr "ond mae %s yn mynd i gael ei sefydlu" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ond ni ellir ei sefydlu" +#: 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-output.cc:445 -msgid "but it is a virtual package" -msgstr "ond mae'n becyn rhithwir" +#: 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-output.cc:448 -msgid "but it is not installed" -msgstr "ond nid yw wedi ei 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-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ond nid yw'n mynd i gael ei sefydlu" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =." -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " neu" +#: 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-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opsiwn '%s' yn rhy hir" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" +# 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-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Caiff y pecynnau canlynol eu TYNNU:" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Gweithred annilys %s" -#: apt-private/private-output.cc:550 -#, fuzzy -msgid "The following packages have been kept back:" -msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" +#: cmdline/apt-cache.cc:149 +#, 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" -#: apt-private/private-output.cc:571 +#: cmdline/apt-cache.cc:317 #, fuzzy -msgid "The following packages will be upgraded:" -msgstr "Caiff y pecynnau canlynol eu uwchraddio" +msgid "Total package names: " +msgstr "Cyfanswm Enwau Pecynnau : " -#: apt-private/private-output.cc:592 +#: cmdline/apt-cache.cc:319 #, fuzzy -msgid "The following packages will be DOWNGRADED:" -msgstr "Caiff y pecynnau canlynol eu ISRADDIO" +msgid "Total package structures: " +msgstr "Cyfanswm Enwau Pecynnau : " -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" +#: cmdline/apt-cache.cc:359 +#, fuzzy +msgid " Normal packages: " +msgstr " Pecynnau Normal: " -#: apt-private/private-output.cc:667 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (oherwydd %s) " +#: cmdline/apt-cache.cc:360 +#, fuzzy +msgid " Pure virtual packages: " +msgstr " Pecynnau Cwbl Rhithwir: " -#: apt-private/private-output.cc:675 +#: cmdline/apt-cache.cc:361 #, 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!" +msgid " Single virtual packages: " +msgstr " Pecynnau Rhithwir Sengl: " -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " - -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu wedi ailsefydlu, " - -#: apt-private/private-output.cc:712 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu wedi eu israddio, " - -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" - -#: apt-private/private-output.cc:718 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\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:740 -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:746 -msgid "[y/N]" -msgstr "" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "I" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" - -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Gwall crynhoi patrwm - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" - -#: 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:362 +#, fuzzy +msgid " Mixed virtual packages: " +msgstr " Pecynnau Rhithwir Cymysg: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Ar Goll: " -#: 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:365 +#, fuzzy +msgid "Total distinct versions: " +msgstr "Cyfanswm Fersiynau Gwahanol: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Cyfanswm Fersiynau Gwahanol: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" +#: cmdline/apt-cache.cc:369 +#, fuzzy +msgid "Total dependencies: " +msgstr "Cyfanswm Dibyniaethau: " -#: apt-private/private-install.cc:91 +#: cmdline/apt-cache.cc:372 #, fuzzy -msgid "Packages need to be removed but remove is disabled." -msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." +msgid "Total ver/file relations: " +msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: apt-private/private-install.cc:110 +#: cmdline/apt-cache.cc:374 #, fuzzy -msgid "Internal error, Ordering didn't finish" -msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" +msgid "Total Desc/File relations: " +msgstr "Cyfanswm perthyniadau fersiwn/ffeil: " -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" +#: cmdline/apt-cache.cc:376 +#, fuzzy +msgid "Total Provides mappings: " +msgstr "Cyfanswm Mapiau Darpariath: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" +#: cmdline/apt-cache.cc:388 +#, fuzzy +msgid "Total globbed strings: " +msgstr "Cyfanswm Llinynau Glob: " -#. TRANSLATOR: The required space between number and unit 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 "Mae angen cyrchu %sB o archifau.\n" +#: cmdline/apt-cache.cc:402 +#, fuzzy +msgid "Total dependency version space: " +msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: " -#. TRANSLATOR: The required space between number and unit 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 "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" +#: cmdline/apt-cache.cc:407 +#, fuzzy +msgid "Total slack space: " +msgstr "Cyfanswm gofod Slac: " -#. TRANSLATOR: The required space between number and unit 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 "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" +#: cmdline/apt-cache.cc:422 +#, fuzzy +msgid "Total space accounted for: " +msgstr "Cyfanswm Gofod Cyfrifwyd: " -#: apt-private/private-install.cc:200 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Does dim digon o le rhydd gennych yn %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-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." - -#. 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-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-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Erthylu." +msgid "Package file %s is out of sync." +msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig." -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Ydych chi eisiau mynd ymlaen?" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-install.cc:313 -msgid "Some files failed to download" -msgstr "Methodd rhai ffeiliau lawrlwytho" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Rhaid i chi ddarparu un patrwm yn union" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " -"geidio defnyddio --fix-missing?" -#: 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" +#: cmdline/apt-cache.cc:1597 +#, fuzzy +msgid "Package files:" +msgstr "Ffeiliau Pecynnau:" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Ni ellir cywiro pecynnau ar goll." +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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/private-install.cc:330 +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 #, fuzzy -msgid "Aborting install." -msgstr "Yn Erthylu'r Sefydliad." - -#: 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] "" +msgid "Pinned packages:" +msgstr "Pecynnau wedi eu Pinio:" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(heb ganfod)" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Wedi Sefydlu: " -#: 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 "" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Ymgeisydd: " -#. -#. 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:" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(dim)" -#: apt-private/private-install.cc:506 +#: cmdline/apt-cache.cc:1672 #, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" +msgid " Package pin: " +msgstr " Pin Pecyn: " -#: apt-private/private-install.cc:513 +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 #, 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-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 "" -"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)" - -# FIXME: needs commas -#: 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 "" -"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-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pecynnau wedi torri" - -#: 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-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pecynnau a argymhellir:" - -#: apt-private/private-install.cc:825 -#, 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" - -#: 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" - -#: apt-private/private-install.cc:841 -#, 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" - -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" - -#: 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-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" - -#. 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" +msgid " Version table:" +msgstr " Tabl Fersiynnau:" -#: apt-private/private-install.cc:947 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n" +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-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1801 +#, 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 "" +"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" -#: 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" +#: 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 +#: cmdline/apt-cdrom.cc:91 #, 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?" +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" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Methwyd cyrchu %s %s\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 "Methwyd ailenwi %s at %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 "Presennol " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Cyrchu:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Anwybyddu " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Gwall " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Cyrchwyd %sB yn %s (%sB/s)\n" - -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Gweithio]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Nid yw ymresymiadau mewn parau" -#: apt-private/acqprogress.cc:297 -#, fuzzy, c-format +#: cmdline/apt-config.cc:89 +#, fuzzy 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 "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch 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 "Ni ellir darllen %s" +"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" -#: 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-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Methwyd canfod pecyn %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 "Methwyd canfod pecyn %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 "Methwyd agor ffeil %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Methwyd canfod pecyn %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:367 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Methwyd agor ffeil %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %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 "Methwyd creu pibell cyfathrebu at isbroses" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Caewyd y cysylltiad yn gynnar" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Methwyd canfod pecyn %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Rhagosodiad gwael!" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: 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-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" -#: 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 "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r" - -#: 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 "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu" +msgid "Internal error, problem resolver broke stuff" +msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: 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" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: 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." +#: 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" -#: dselect/update:30 -#, fuzzy -msgid "Merging available information" -msgstr "Yn cyfuno manylion Ar Gael" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Galwyd DropNode ar nôd sydd o hyd wedi ei gysylltu" +#: 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:412 -msgid "Failed to locate the hash element!" -msgstr "Methyd lleoli yr elfen !" +#: 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/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Methwyd neilltuo dargyfeiriad" +#: cmdline/apt-get.cc:839 +#, fuzzy, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: apt-inst/filelist.cc:464 -#, fuzzy -msgid "Internal error in AddDiversion" -msgstr "Gwall Mewnol yn AddDiversion" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, fuzzy, c-format +msgid "Couldn't determine free space in %s" +msgstr "Does dim digon o le rhydd yn %s gennych" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Yn ceisio trosysgrifo dargyfeiriad, %s -> %s a %s/%s" +msgid "You don't have enough free space in %s" +msgstr "Does dim digon o le rhydd yn %s gennych" -# FIXME: "the" -#: 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:893 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\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:898 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ffeil cyfluniad dyblyg %s/%s" +msgid "Need to get %sB of source archives.\n" +msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:904 +#, fuzzy, c-format +msgid "Fetch source %s\n" +msgstr "Cyrchu Ffynhonell %s\n" + +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Methwyd cyrchu rhai archifau." + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" -msgstr "Mae'r llwybr %s yn rhy hir" +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/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" -msgstr "Yn dadbacio %s mwy nag unwaith" +msgid "Unpack command '%s' failed.\n" +msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" -msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, 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" +msgid "Build command '%s' failed.\n" +msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: 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:1012 +msgid "Child process failed" +msgstr "Methodd proses plentyn" -#: 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:1031 +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" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Methwyd ailenwi %s at %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" -"Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" +msgid "Unable to get build-dependency information for %s" +msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Methwyd lleoli nôd yn ei fwced stwnsh" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Mae'r llwybr yn rhy hir" +#: cmdline/apt-get.cc:1296 +#, 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" -# FIXME: wtf? -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" +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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1337 #, 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" +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-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Ni ellir gwneud stat() o %s" +#: cmdline/apt-get.cc:1376 +#, 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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1382 #, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Methwyd ysgrifennu ffeil %s" +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-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Failed to close file %s" -msgstr "Methwyd cau ffeil %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1420 #, 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 "Build-dependencies for %s could not be satisfied." +msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Methwyd prosesu dibyniaethau adeiladu" + +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, fuzzy, c-format -msgid "Internal error, could not locate member %s" -msgstr "Gwall Mewnol, methwyd lleoli aelod %s" +msgid "Changelog for %s (%s)" +msgstr "Yn cysylltu i %s (%s)" + +#: cmdline/apt-get.cc:1616 +#, fuzzy +msgid "Supported modules:" +msgstr "Modylau a Gynhelir:" + +# FIXME: split +#: cmdline/apt-get.cc:1657 +#, 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-inst/deb/debfile.cc:227 +#: cmdline/apt-helper.cc:35 #, fuzzy -msgid "Unparsable control file" -msgstr "Ffeil rheoli ni ellir ei ramadegu" +msgid "Must specify at least one pair url/filename" +msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Llofnod archif annilys" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Gwall wrth ddarllen pennawd aelod archif" +#: 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:96 +#: cmdline/apt-mark.cc:68 #, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Pennawd aelod archif annilys" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Pennawd aelod archif annilys" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Mae'r archif yn rhy fyr" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Methwyd darllen pennawdau'r archif" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Methwyd creu pibau" - -#: 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" +msgid "%s can not be marked as it is not installed.\n" +msgstr "ond nid yw wedi ei sefydlu" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Math pennawd TAR anhysbys %u, aelod %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/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Ni ellir gwneud stat() o %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/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 "Mae %s y fersiwn mwyaf newydd eisioes.\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 "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Ni chynhelir y system pecynnu '%s'" +#: 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/init.cc:162 -#, fuzzy -msgid "Unable to determine a suitable packaging system type" -msgstr "Ni ellir canfod math system addas" +#: 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\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/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 -#, c-format -msgid "Wrote %i records with %i mismatched files\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:244 apt-pkg/indexcopy.cc:781 +#: methods/cdrom.cc:203 #, c-format -msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "" +msgid "Unable to read the cdrom database %s" +msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" +#: methods/cdrom.cc:212 +#, fuzzy +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/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Camgyfatebiaeth swm MD5" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Methwyd canfod y gyrrydd dull %s." - -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "" +#: methods/cdrom.cc:222 +#, fuzzy +msgid "Wrong CD-ROM" +msgstr "CD Anghywir" -#: apt-pkg/acquire-worker.cc:169 +#: methods/cdrom.cc:249 #, c-format -msgid "Method %s did not start correctly" -msgstr "Ni gychwynodd y dull %s yn gywir" - -#: apt-pkg/acquire-worker.cc:455 -#, fuzzy, c-format -msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n" -" '%s'\n" -"yn y gyrriant '%s' a gwasgwch Enter\n" +"Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio." -#: 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." +#: methods/cdrom.cc:254 +#, fuzzy +msgid "Disk not found." +msgstr "Ffeil heb ei ganfod" -#: 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." +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Ffeil heb ei ganfod" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Methwyd darllen y rhestr ffynhonellau." +#: 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:155 -msgid "Empty package cache" -msgstr "Storfa pecyn gwag" +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "Mae'r ffeil storfa pecyn yn llygredig" +#: 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:166 -msgid "The package cache file is an incompatible version" -msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Yn mewngofnodi" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Mae'r ffeil storfa pecyn yn llygredig" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ni ellir darganfod enw'r cymar" -# FIXME: capitalisation? -#: apt-pkg/pkgcache.cc:174 +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ni ellir darganfod yr enw lleol" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, 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'" +msgid "The server refused the connection and said: %s" +msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %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" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dibynnu" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "CynDdibynnu" +#: 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/pkgcache.cc:321 -msgid "Suggests" -msgstr "Awgrymu" +# 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" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Argymell" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Gwrthdaro" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Goramser cysylltu" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Amnewid" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Caeodd y gweinydd y cysylltiad" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Darfodi" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Gorlifodd ateb y byffer." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Llygr protocol" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Methwyd creu soced" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "pwysig" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "angenrheidiol" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Methwyd" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "safonnol" +#: methods/ftp.cc:718 +#, fuzzy +msgid "Could not connect passive socket." +msgstr "Methwyd cysylltu soced goddefol" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opsiynnol" +# FIXME +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Methodd getaddrinfo gael soced gwrando" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ychwanegol" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Methwyd rhwymo soced" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Ni chynhelir y math ffeil mynegai '%s'" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Methwyd gwrando ar y soced" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mae can y storfa system fersiwn anghyfaddas" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Methwyd canfod enw'r soced" -#. 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:792 +msgid "Unable to send PORT command" +msgstr "Methwyd danfod gorchymyn PORT" -#: 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:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" -#: 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:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" -#: 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:831 +msgid "Data socket connect timed out" +msgstr "Goramserodd cysylltiad y soced data" -#: 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:838 +msgid "Unable to accept connection" +msgstr "Methwyd derbyn cysylltiad" -#: 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:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem wrth stwnshio ffeil" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:890 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" - -#: 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" +msgid "Unable to fetch file, server said '%s'" +msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Yn Casglu Darpariaethau Ffeil" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Goramserodd soced data" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to write to %s" -msgstr "Ni ellir ysgrifennu i %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" -#: 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" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Ymholiad" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +# FIXME +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Methwyd gweithredu " -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Yn cysylltu i %s (%s)" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/connect.cc:87 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: 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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: 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/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/connect.cc:108 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "methwyd ailenwi, %s (%s -> %s)." +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:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Camgyfatebiaeth swm MD5" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Methwyd cysylltu i %s:%s (%s)." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Camgyfatebiaeth maint" +#. 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 "Yn cysylltu i %s" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Gweithred annilys %s" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Methwyd datrys '%s'" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:205 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Methiant dros dro yn datrys '%s'" -# FIXME: number? -#: apt-pkg/acquire-item.cc:1597 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +msgid "System error resolving '%s:%s'" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" + +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" + +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Methwyd cysylltu i %s %s:" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." msgstr "" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: methods/gpgv.cc:174 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -#: apt-pkg/acquire-item.cc:1729 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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/gpgv.cc:184 +msgid "Unknown error executing gpgv" msgstr "" -# FIXME: case -#: apt-pkg/acquire-item.cc:1867 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +#, fuzzy +msgid "The following signatures were invalid:\n" +msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" + +#: methods/gpgv.cc:231 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)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" 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.)" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/acquire-item.cc:1991 -#, 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/http.cc:509 +msgid "Error writing to the file" +msgstr "Gwall wrth ysgrifennu at y ffeil" -#: 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/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" -#: 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/http.cc:525 +msgid "Error reading from server" +msgstr "Gwall wrth ddarllen o'r gweinydd" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Mae'r cyfeiriadur archif %spartial ar goll." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Gwall wrth ysgrifennu at ffeil" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Ni ellir cloi'r cyfeiriadur rhestr" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Methwyd dewis" -#. 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 "" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Goramserodd y cysylltiad" -#: apt-pkg/acquire.cc:901 -#, fuzzy, c-format -msgid "Retrieving file %li of %li" -msgstr "Yn Darllen Rhestr Ffeiliau" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: 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 "" -"Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen " -"rai eu defnyddio yn lle." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Yn aros am benawdau" -# 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/server.cc:109 +msgid "Bad header line" +msgstr "Llinell pennawd gwael" -#: 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/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" -# 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/server.cc:171 +#, fuzzy +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" -# FIXME: tense -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Methwyd daeall y math pin %s" +#: 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/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" +#: methods/server.cc:196 +#, fuzzy +msgid "This HTTP server has broken range support" +msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" -#: 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/server.cc:220 +msgid "Unknown date format" +msgstr "Fformat dyddiad anhysbys" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Methwyd agor ffeil %s" +#: methods/server.cc:496 +#, fuzzy +msgid "Bad header data" +msgstr "Data pennawd gwael" -# FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:583 +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Methodd y cysylltiad" + +#: methods/server.cc:572 #, 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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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/server.cc:692 +msgid "Internal error" +msgstr "Gwall mewnol" -#: apt-pkg/cdrom.cc:571 +#: apt-private/private-upgrade.cc:25 #, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "CD Anghywir" - -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "" +msgid "Calculating upgrade... " +msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: apt-pkg/cdrom.cc:599 -#, fuzzy -msgid "Waiting for disc...\n" -msgstr "Yn aros am benawdau" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Wedi Gorffen" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: apt-private/private-list.cc:123 +msgid "Listing" msgstr "" -#: apt-pkg/cdrom.cc:662 +#: apt-private/private-list.cc:156 #, c-format -msgid "Stored label: %s\n" -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/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Yn cywiro dibyniaethau..." -#: apt-pkg/cdrom.cc:734 -#, c-format -msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" -msgstr "" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " wedi methu." -#: 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-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ni ellir cywiro dibyniaethau" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" +#: 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 "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Sefydliwyd]" + +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Sefydliwyd]" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cdrom.cc:819 +#: apt-private/private-output.cc:242 #, fuzzy -msgid "Copying package lists..." -msgstr "Yn Darllen Rhestrau Pecynnau" +msgid "[installed,automatic]" +msgstr " [Sefydliwyd]" -#: apt-pkg/cdrom.cc:863 +#: apt-private/private-output.cc:244 #, fuzzy -msgid "Writing new source list\n" -msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." - -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "" +msgid "[installed]" +msgstr " [Sefydliwyd]" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-output.cc:248 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "[upgradable from: %s]" 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-output.cc:252 +msgid "[residual-config]" 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." -msgstr "" -"Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." +#: apt-private/private-output.cc:434 +#, c-format +msgid "but %s is installed" +msgstr "ond mae %s wedi ei sefydlu" -#: 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:436 +#, c-format +msgid "but %s is to be installed" +msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: apt-pkg/depcache.cc:139 -#, fuzzy -msgid "Candidate versions" -msgstr "Fersiynau Posib" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "ond ni ellir ei sefydlu" -#: apt-pkg/depcache.cc:168 -#, fuzzy -msgid "Dependency generation" -msgstr "Cynhyrchaid Dibyniaeth" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "ond mae'n becyn rhithwir" -#: 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" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "ond nid yw wedi ei sefydlu" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Methwyd agor %s" +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +msgstr "ond nid yw'n mynd i gael ei sefydlu" -#: 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:453 +msgid " or" +msgstr " neu" -# FIXME: number? -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ni ellir gramadegu ffeil becynnau %s (2)" +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Caiff y pecynnau NEWYDD canlynol eu 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:528 +msgid "The following packages will be REMOVED:" +msgstr "Caiff y pecynnau canlynol eu TYNNU:" -#: 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:550 +#, fuzzy +msgid "The following packages have been kept back:" +msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Methwyd canfod pecyn %s" +#: apt-private/private-output.cc:571 +#, fuzzy +msgid "The following packages will be upgraded:" +msgstr "Caiff y pecynnau canlynol eu uwchraddio" -#: 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:592 +#, fuzzy +msgid "The following packages will be DOWNGRADED:" +msgstr "Caiff y pecynnau canlynol eu ISRADDIO" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:667 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (oherwydd %s) " -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: apt-private/private-output.cc:675 +#, fuzzy msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"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/cacheset.cc:647 +#: apt-private/private-output.cc:706 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, " -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:710 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu wedi ailsefydlu, " -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:712 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" - -# 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-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" +msgid "%lu downgraded, " +msgstr "%lu wedi eu israddio, " -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:714 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" - -#: 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" - -# 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-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-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-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-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)" - -#: 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)" - -#: 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)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" -#: 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)" +#. 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:740 +msgid "[Y/n]" +msgstr "" -#: 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)" +#. 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:746 +msgid "[y/N]" +msgstr "" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "I" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" 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-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:371 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" +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 -#, 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" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: 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: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:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr " Wedi Sefydlu: " +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +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:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: 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:93 +#, 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:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Methwyd dileu %s" +#: apt-private/private-install.cc:112 +#, fuzzy +msgid "Internal error, Ordering didn't finish" +msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: apt-private/private-install.cc:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#. 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:157 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" -#. 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." +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:162 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Mae angen cyrchu %sB o archifau.\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:169 #, fuzzy, c-format -msgid "Could not open file '%s'" -msgstr "Methwyd agor ffeil %s" +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: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:174 #, fuzzy, c-format -msgid "Preparing %s" -msgstr "Yn agor %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:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Yn agor %s" +#: apt-private/private-install.cc:202 +#, 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:995 -#, fuzzy, c-format -msgid "Preparing to configure %s" -msgstr "Yn agor y ffeil cyfluniad %s" +#: apt-private/private-install.cc:212 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:997 -#, fuzzy, c-format -msgid "Installed %s" -msgstr " Wedi Sefydlu: " +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1002 -#, c-format -msgid "Preparing for removal of %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:222 +msgid "Yes, do as I say!" +msgstr "Ie, gwna fel rydw i'n dweud!" -#: apt-pkg/deb/dpkgpm.cc:1004 +#: apt-private/private-install.cc:224 #, fuzzy, c-format -msgid "Removed %s" -msgstr "Argymell" +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:1009 -#, fuzzy, c-format -msgid "Preparing to completely remove %s" -msgstr "Yn agor y ffeil cyfluniad %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Erthylu." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Methwyd dileu %s" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Ydych chi eisiau mynd ymlaen?" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Methodd rhai ffeiliau lawrlwytho" + +#: apt-private/private-install.cc:322 +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:326 +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:331 +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:332 +#, 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:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" + +#: apt-private/private-install.cc:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -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-private/private-install.cc:519 +#, 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:521 +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:614 +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:1658 apt-pkg/deb/dpkgpm.cc:1664 +# FIXME +#: apt-private/private-install.cc:616 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 "" +"Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim " +"pecyn (neu penodwch ddatrys)" -#: apt-pkg/deb/dpkgpm.cc:1685 +# FIXME: needs commas +#: apt-private/private-install.cc:640 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 "" +"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:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Pecynnau wedi torri" -#: 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:738 +msgid "The following extra packages will be installed:" +msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#. 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:828 +msgid "Suggested packages:" +msgstr "Pecynnau a awgrymmir:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:829 +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:851 #, 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:855 +#, 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:867 #, 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:872 #, 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:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Ni chanfuwyd y dewis %s" +#: apt-private/private-install.cc:920 +#, 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:925 +#, 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:967 +#, 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:973 +#, 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:88 +msgid "Get:" +msgstr "Cyrchu:" + +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Anwybyddu " + +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Gwall " -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Dychwelodd is-broses %s gôd gwall (%u)" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Cyrchwyd %sB yn %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Gorffenodd is-broses %s yn annisgwyl" +msgid " [Working]" +msgstr " [Gweithio]" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:298 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Gwall wrth gau'r ffeil" +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" -#: 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:280 #, c-format -msgid "Could not open file %s" -msgstr "Methwyd agor ffeil %s" +msgid "No mirror file '%s' found " +msgstr "" -#: 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:287 #, fuzzy, c-format -msgid "Could not open file descriptor %d" -msgstr "Methwyd agor pibell ar gyfer %s" +msgid "Can not read mirror file '%s'" +msgstr "Methwyd agor ffeil %s" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Methwyd creu isbroses IPC" +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Methwyd agor ffeil %s" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Methwyd gweithredu cywasgydd " +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "" -# 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" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Methwyd creu pibell cyfathrebu at isbroses" -# FIXME -#: 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 "o hyd %lu i ysgrifennu ond methwyd" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Caewyd y cysylltiad yn gynnar" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Gwall wrth gau'r ffeil" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Rhagosodiad gwael!" -#: apt-pkg/contrib/fileutl.cc:1927 -#, fuzzy, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Gwall wrth gyfamseru'r ffeil" +#: 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/fileutl.cc:1938 -#, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Gwall wrth dadgysylltu'r ffeil" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Gwall wrth gyfamseru'r ffeil" +#: 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/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Gwall!" +#: 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/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Wedi Gorffen" +#: 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/progress.cc:181 -msgid "..." +#: 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." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Wedi Gorffen" +#: dselect/update:30 +#, fuzzy +msgid "Merging available information" +msgstr "Yn cyfuno manylion Ar Gael" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" +#: 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:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Methwyd agor pibell ar gyfer %s" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Methyd lleoli yr elfen !" -#: 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-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Methwyd neilltuo dargyfeiriad" -#: apt-pkg/contrib/mmap.cc:146 +#: apt-inst/filelist.cc:464 #, fuzzy -msgid "Unable to close mmap" -msgstr "Ni ellir agor %s" +msgid "Internal error in AddDiversion" +msgstr "Gwall Mewnol yn AddDiversion" -# 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:477 +#, c-format +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:290 +# FIXME: "the" +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Methwyd gwneud mmap() efo %lu beit" +msgid "Double add of diversion %s -> %s" +msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s" -#: apt-pkg/contrib/mmap.cc:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Methwyd ysgrifennu ffeil %s" +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Ffeil cyfluniad dyblyg %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 "" +msgid "The path %s is too long" +msgstr "Mae'r llwybr %s yn rhy hir" -#: 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 "" +msgid "Unpacking %s more than once" +msgstr "Yn dadbacio %s mwy nag unwaith" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Mae'r pecyn yn ceisio ysgrifennu i'r targed dargyfeiriad %s/%s" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Methwyd gwneud stat() o'r CD-ROM" +#: 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:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Talgryniad math anhysbys: '%c'" +msgid "Failed to stat %s" +msgstr "Methodd stat() o %s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "Yn agor y ffeil cyfluniad %s" +msgid "Failed to rename %s to %s" +msgstr "Methwyd ailenwi %s at %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 "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." +msgid "The directory %s is being replaced by a non-directory" +msgstr "" +"Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" -# 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: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" -#: apt-pkg/contrib/configuration.cc:837 +# FIXME: wtf? +#: apt-inst/extract.cc:421 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" +msgid "Overwrite package match with no version for %s" +msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %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 "" -"Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" +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:884 +#: apt-inst/extract.cc:498 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" +msgid "Unable to stat %s" +msgstr "Ni ellir gwneud stat() o %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 +#, fuzzy, c-format +msgid "Failed to write file %s" +msgstr "Methwyd ysgrifennu ffeil %s" + +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" +msgid "Failed to close file %s" +msgstr "Methwyd cau ffeil %s" -#: apt-pkg/contrib/configuration.cc:897 +#: 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: Unsupported directive '%s'" -msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/deb/debfile.cc:132 #, 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 "Internal error, could not locate member %s" +msgstr "Gwall Mewnol, methwyd lleoli aelod %s" -#: 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-inst/deb/debfile.cc:227 +#, fuzzy +msgid "Unparsable control file" +msgstr "Ffeil rheoli ni ellir ei ramadegu" -#. 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." +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Llofnod archif annilys" -# 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/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Gwall wrth ddarllen pennawd aelod archif" -#: 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:96 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Pennawd aelod 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:108 +msgid "Invalid archive member header" +msgstr "Pennawd aelod archif annilys" -#: 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:137 +msgid "Archive is too short" +msgstr "Mae'r archif yn rhy fyr" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =." -msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Methwyd darllen pennawdau'r archif" -#: 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/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Methwyd creu pibau" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Opsiwn '%s' yn rhy hir" +#: apt-inst/contrib/extracttar.cc:151 +msgid "Failed to exec gzip " +msgstr "Methwyd gweithredu gzip" -# 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:188 apt-inst/contrib/extracttar.cc:218 +msgid "Corrupted archive" +msgstr "Archif llygredig" -#: apt-pkg/contrib/cmndline.cc:391 +#: 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 +#: cmdline/apt-extracttemplates.cc:227 #, fuzzy msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" @@ -3263,12 +3276,7 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Ni ellir gwneud stat() o %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?" @@ -3388,122 +3396,122 @@ msgstr "Dim dewisiadau'n cyfateb" msgid "Some files are missing in the package file group `%s'" msgstr "Mae rhai ffeiliau ar goll yn y grŵp ffeiliau pecyn `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Llygrwyd y cronfa data, ailenwyd y ffeil i %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Hen gronfa data, yn ceisio uwchraddio %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ni ellir agor y ffeil DB2 %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Methwyd darllen y cyswllt %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Does dim cofnod rheoli gan yr archif" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Ni ellir cael cyrchydd" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Rh: Ni ellir darllen y cyfeiriadur %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "Rh: Ni ellir gwneud stat() o %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "G: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "Rh: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "G: Mae gwallau yn cymhwyso i'r ffeil " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Methwyd datrys %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Methwyd cerdded y goeden" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Methwyd agor %s" # FIXME -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DatGysylltu %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Methwyd darllen y cyswllt %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Methwyd datgysylltu %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Methwyd cysylltu %s at %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Tarwyd y terfyn cyswllt %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Doedd dim maes pecyn gan yr archif" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Cynaliwr %s yw %s nid %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" diff --git a/po/de.po b/po/de.po index 903e2c833..8a21454b9 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -20,3315 +20,3328 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." + +#: apt-pkg/pkgcache.cc:161 +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." -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Die Paketzwischenspeicher-Datei ist beschädigt, sie ist zu klein." + +#: apt-pkg/pkgcache.cc:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +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:324 +msgid "Suggests" +msgstr "Schlägt vor" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installiert: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Empfiehlt" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Installationskandidat: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Kollidiert mit" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(keine)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Ersetzt" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paket-Pinning: " +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Löst ab" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabelle:" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Wertet auf" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "wichtig" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "erforderlich" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "optional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s für %s, kompiliert am %s %s\n" +msgid "Index file type '%s' is not supported" +msgstr "Indexdateityp »%s« wird nicht unterstützt." -#: 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/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." 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" +"Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen diese " +"APT-Version umgehen kann." -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"Bitte geben Sie einen Namen für dieses Medium an, wie zum Beispiel »Debian " -"5.0.3 Disk 1«" +"Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen diese " +"APT-Version umgehen kann." -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." 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." +"Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " +"diese APT-Version umgehen kann." -#: 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:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" +"Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " +"diese APT-Version umgehen kann." -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"Wiederholen Sie dieses Prozedere für die restlichen Disks Ihres Satzes." +"Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumente nicht paarweise" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" -#: 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-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Paketlisten werden gelesen" -#: 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-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" -#: 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-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Schreiben nach %s nicht möglich" -#: 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-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" -#: 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" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Szenario an Problemlöser senden" -#: 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-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Anfrage an Problemlöser senden" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Paket %s konnte nicht gefunden werden" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Vorbereiten, eine Lösung zu erhalten" -#: 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 wurde als manuell installiert festgelegt.\n" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" +"Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: 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:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s wurde als automatisch installiert festgelegt.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "Umbenennen fehlgeschlagen, %s (%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 "" -"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " -"und »apt-mark manual«." +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash-Summe stimmt nicht überein" -#: 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-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Größe stimmt nicht überein" -#: 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-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Ungültige Operation %s" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " -"sollen." +"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " +"(falscher Eintrag in sources.list oder missgebildete Datei)." -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Quellpaket für %s kann nicht gefunden werden." +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hash-Summe für »%s« kann in Release-Datei 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" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" msgstr "" -"HINWEIS: »%s«-Paketierung wird betreut im »%s«-Versionsverwaltungssystem " -"auf:\n" -"%s\n" +"Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1775 #, 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 "" -"Bitte verwenden Sie:\n" -"bzr branch %s\n" -"um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" -"für das Paket abzurufen.\n" +"Release-Datei für %s ist abgelaufen (ungültig seit %s). Aktualisierungen für " +"dieses Depot werden nicht angewendet." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Freier Platz in %s konnte nicht bestimmt werden." +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-get.cc:882 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Sie haben nicht genügend freien Speicherplatz in %s." +msgid "GPG error: %s: %s" +msgstr "GPG-Fehler: %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:1972 #, 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" +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)." -#. TRANSLATOR: The required 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:2038 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" +"Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " +"herunterzuladen." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Fetch source %s\n" -msgstr "Quelle %s wird heruntergeladen.\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-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Einige Archive konnten nicht heruntergeladen werden." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Herstellerblock %s enthält keinen Fingerabdruck." -#: 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-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Listenverzeichnis %spartial fehlt." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" +msgid "Archives directory %spartial is missing." +msgstr "Archivverzeichnis %spartial fehlt." -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" +msgid "Unable to lock directory %s" +msgstr "Das Verzeichnis %s kann nicht gesperrt werden." -#: cmdline/apt-get.cc:963 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Holen der Datei %li von %li (noch %s)" -#: cmdline/apt-get.cc:991 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Build-Befehl »%s« fehlgeschlagen.\n" +msgid "Retrieving file %li of %li" +msgstr "Holen der Datei %li von %li" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Kindprozess fehlgeschlagen" +#: 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-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 "" -"Es muss mindestens ein Paket angegeben werden, dessen Bauabhängigkeiten " -"überprüft werden sollen." +"Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden " +"ignoriert oder alte an ihrer Stelle benutzt." + +#: 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." -#: cmdline/apt-get.cc:1054 +#: 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 "" -"Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " -"finden Sie unter apt.conf(5) APT::Architectures." +"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " +"Veröffentlichung in den Paketquellen nicht verfügbar ist." -#: 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" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." +"Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeile(n)" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s hat keine Bauabhängigkeiten.\n" +msgid "Did not understand pin type %s" +msgstr "Pinning-Typ %s kann nicht interpretiert werden." + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Keine Priorität (oder Null) für Pin angegeben" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, 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 "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " -"nicht erlaubt ist." +"»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." +"conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "»%s« konnte nicht konfiguriert werden. " -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:584 #, 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 "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " -"gefunden werden kann." +"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." -#: 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" +msgid "Line %u too long in source list %s." +msgstr "Zeile %u in Quellliste %s zu lang." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Einbindung der CD-ROM wird gelöst ...\n" + +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "Verwendeter CD-ROM-Einbindungspunkt: %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Warten auf Medium ...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM wird eingebunden ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifizieren ... " + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Gespeicherte Kennzeichnung: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Durchsuchen des Mediums nach Index-Dateien ...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " -"ist zu neu." +"%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " +"Signaturen gefunden\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 "" +"Es konnten keine Paketdateien gefunden werden; möglicherweise ist dies keine " +"Debian-Disk oder eine für die falsche Architektur?" + +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Kennzeichnung »%s« gefunden\n" + +#: 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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" 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." +"Dieses Medium heißt: \n" +"»%s«\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopieren der Paketlisten ..." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Schreiben der neuen Quellliste\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Quelllisteneinträge für dieses Medium sind:\n" + +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " -"Installationskandidat existiert." +"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " +"gefunden werden." -#: cmdline/apt-get.cc:1380 +#: 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." + +#: 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." + +#: 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 #, 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 "Failed to open StateFile %s" +msgstr "StateFile %s konnte nicht geöffnet werden." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." +msgid "Failed to write temporary StateFile %s" +msgstr "Temporäres StateFile %s konnte nicht geschrieben werden." -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Änderungsprotokoll (Changelog) für %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)." -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Unterstützte Module:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Veröffentlichung »%s« für »%s« konnte nicht gefunden werden." -#: 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 "" -"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" - -#: 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 "" -"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\n" - -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cacheset.cc:493 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s wurde bereits auf manuell installiert gesetzt.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Version »%s« für »%s« konnte nicht gefunden werden." -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s wurde bereits auf automatisch installiert gesetzt.\n" +msgid "Unable to locate package %s" +msgstr "Paket %s kann nicht gefunden werden." -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cacheset.cc:604 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s wurde bereits auf Halten gesetzt.\n" +msgid "Couldn't find task '%s'" +msgstr "Task »%s« konnte nicht gefunden werden." -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:610 #, c-format -msgid "%s was already not hold.\n" -msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\n" +msgid "Couldn't find any package by regex '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: 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 "Es wurde auf %s gewartet, war jedoch nicht vorhanden" +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Mittels regulärem Ausdruck »%s« konnte kein Paket gefunden werden." -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "%s set on hold.\n" -msgstr "%s auf Halten gesetzt.\n" +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." -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Halten-Markierung für %s entfernt.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie 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." +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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." +"Es kann weder eine installierte Version noch ein Installationskandidat von " +"Paket »%s« ausgewählt werden, da beide nicht existieren." -#: 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:648 +#, 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." -#: methods/cdrom.cc:203 +#: apt-pkg/cacheset.cc:656 #, 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" +msgid "Can't select candidate version from package %s as it has no candidate" 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" +"Es kann kein Installationskandidat von Paket »%s« ausgewählt werden, da kein " +"solcher existiert." -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:664 #, 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 "" -"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." +"Die installierte Version von Paket »%s« kann nicht ausgewählt werden, da es " +"nicht installiert ist." -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" +msgid "Unable to parse Release file %s" +msgstr "Release-Datei %s kann nicht verarbeitet werden." -#: methods/ftp.cc:225 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "USER failed, server said: %s" -msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" +msgid "No sections in Release file %s" +msgstr "Keine Bereiche (Sections) in Release-Datei %s" -#: methods/ftp.cc:232 +#: apt-pkg/indexrecords.cc:136 #, 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 "" -"Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" -"ProxyLogin ist leer." +msgid "No Hash entry in Release file %s" +msgstr "Kein Hash-Eintrag in Release-Datei %s" -#: methods/ftp.cc:280 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen, Server meldet: %s" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ungültiger »Valid-Until«-Eintrag in Release-Datei %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexrecords.cc:168 #, 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" - -#: 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" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Durch eine Antwort wurde der Puffer zum Überlaufen gebracht." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokoll beschädigt" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ungültiger »Date«-Eintrag in Release-Datei %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 "Schreibfehler" +#: 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/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/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/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden." +#: 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/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Fehlgeschlagen" +#: 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/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Passiver Socket konnte nicht verbunden werden." +#: 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/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 "" -"Von der Funktion getaddrinfo wurde kein auf Verbindungen wartender Socket " -"gefunden." +"Missgestaltete Zeile %lu in Quellliste %s ([%s] Schlüssel %s hat keinen Wert)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Verbindung des Sockets nicht möglich" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Name des Sockets konnte nicht bestimmt werden." +#: 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«)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT-Befehl konnte nicht gesendet werden." +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Unbekannte Adressfamilie %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Befehl EPRT fehlgeschlagen: %s" +msgid "Opening %s" +msgstr "%s wird geöffnet." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Verbindung konnte nicht angenommen 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." -#: 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/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." -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -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" +msgid "Installing %s" +msgstr "%s wird installiert." -#: 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 "Datenübertragung fehlgeschlagen; Server meldet: »%s«" +msgid "Configuring %s" +msgstr "%s wird konfiguriert." -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Abfrage" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s wird entfernt." -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Aufruf nicht möglich: " +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s wird vollständig entfernt." -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Verbindung mit %s (%s)" +msgid "Noting disappearance of %s" +msgstr "Verschwinden von %s festgestellt" -#: 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 "Aufruf des Nach-Installations-Triggers %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 "Socket für %s konnte nicht erzeugt werden (f=%u t=%u p=%u)." +msgid "Directory '%s' missing" +msgstr "Verzeichnis »%s« fehlt" -#: 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 "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." +msgid "Could not open file '%s'" +msgstr "Datei »%s« konnte nicht geöffnet werden." -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:989 #, 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 "Preparing %s" +msgstr "%s wird vorbereitet." -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Verbindung mit %s:%s nicht möglich (%s)" +msgid "Unpacking %s" +msgstr "%s wird entpackt." -#. 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 "Verbindung mit %s" +msgid "Preparing to configure %s" +msgstr "Konfiguration von %s wird vorbereitet." -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "»%s« konnte nicht aufgelöst werden." +msgid "Installed %s" +msgstr "%s installiert" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" +msgid "Preparing for removal of %s" +msgstr "Entfernen von %s wird vorbereitet." -#: 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/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s entfernt" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, 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 "Preparing to completely remove %s" +msgstr "Vollständiges Entfernen von %s wird vorbereitet." -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Verbindung mit %s:%s nicht möglich:" +msgid "Completely removed %s" +msgstr "%s vollständig entfernt" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -"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/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Schreiben nach %s nicht möglich" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -"»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " -"installiert?)" -#. 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:1088 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Unbekannter Fehler beim Ausführen von gpgv" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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" -#: 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/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Operation wurde unterbrochen, bevor sie beendet werden konnte." -#: 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:1625 +msgid "No apport report written because MaxReports is reached already" 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." +"Es wurde kein Apport-Bericht verfasst, da das Limit MaxReports bereits " +"erreicht ist." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fehler beim Schreiben der Datei" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "Abhängigkeitsprobleme - verbleibt unkonfiguriert" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " -"anderen Seite geschlossen." - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fehler beim Lesen vom Server" - -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fehler beim Schreiben in Datei" - -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Auswahl fehlgeschlagen" - -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Zeitüberschreitung bei Verbindung" - -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fehler beim Schreiben der Ausgabedatei" - -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Warten auf Kopfzeilen" - -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ungültige Kopfzeile" - -#: 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." +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " +"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" msgstr "" -"Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt." +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet." -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen erschöpftem Arbeitsspeicher hindeutet." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" 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:28 -msgid "Done" -msgstr "Fertig" +"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " +"wegen voller Festplatte hindeutet." -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/deb/dpkgpm.cc:1679 +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-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 "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " +"einem anderen Prozess verwendet?" -#: 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] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Abhängigkeiten werden korrigiert ..." +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-cachefile.cc:96 -msgid " failed." -msgstr " fehlgeschlagen." +#. 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 "" +"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " +"das Problem zu beheben." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Abhängigkeiten konnten nicht korrigiert werden." +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nicht gesperrt" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden." +#. 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-cachefile.cc:104 -msgid " Done" -msgstr " Fertig" +#. 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-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." +#. 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-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li 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/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Auswahl %s nicht gefunden" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installiert]" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +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-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installiert]" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Sperrdatei %s konnte nicht geöffnet werden." -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installiert]" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Konnte Sperre %s nicht bekommen" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installiert]" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:395 #, c-format -msgid "[upgradable from: %s]" +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-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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." -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "but %s is installed" -msgstr "aber %s ist installiert" +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." -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:841 #, c-format -msgid "but %s is to be installed" -msgstr "aber %s soll installiert werden" +msgid "Sub-process %s received a segmentation fault." +msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ist aber nicht installierbar" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Unterprozess %s hat das Signal %u empfangen." -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ist aber ein virtuelles Paket" +#: apt-pkg/contrib/fileutl.cc:847 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-output.cc:448 -msgid "but it is not installed" -msgstr "ist aber nicht installiert" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Unterprozess %s unerwartet beendet" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "soll aber nicht installiert werden" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Schreibfehler" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " oder" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem beim Schließen der gzip-Datei %s" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Die folgenden Pakete haben unerfüllte Abhängigkeiten:" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Datei %s konnte nicht geöffnet werden." -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Die folgenden NEUEN Pakete werden installiert:" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Datei-Deskriptor %d konnte nicht geöffnet werden." -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Die folgenden Pakete werden ENTFERNT:" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "" +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Die folgenden Pakete sind zurückgehalten worden:" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Fehler beim Ausführen von Komprimierer " -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lesefehler" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" +#: apt-pkg/contrib/fileutl.cc:1552 +#, c-format +msgid "read, still have %llu to read but none left" msgstr "" -"Die folgenden Pakete werden durch eine ÄLTERE VERSION ERSETZT (Downgrade):" - -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" +"Lesevorgang: es verbleiben noch %llu zu lesen, jedoch ist nichts mehr übrig." -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "%s (due to %s) " -msgstr "%s (wegen %s) " - -#: apt-private/private-output.cc:675 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" +msgid "write, still have %llu to write but couldn't" msgstr "" -"WARNUNG: Die folgenden essentiellen Pakete werden entfernt.\n" -"Dies sollte NICHT geschehen, außer Sie wissen genau, was Sie tun!" +"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " +"nicht möglich." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualisiert, %lu neu installiert, " +msgid "Problem closing the file %s" +msgstr "Problem beim Schließen der Datei %s" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu erneut installiert, " +msgid "Problem renaming the file %s to %s" +msgstr "Problem beim Umbenennen der Datei %s nach %s" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "%lu downgraded, " -msgstr "%lu durch eine ältere Version ersetzt, " +msgid "Problem unlinking the file %s" +msgstr "Problem beim Entfernen (unlink) der Datei %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problem beim Synchronisieren der Datei" + +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s mit »stat« abfragen nicht möglich" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Fehler!" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nicht vollständig installiert oder entfernt.\n" +msgid "%c%s... Done" +msgstr "%c%s... Fertig" -#. 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:740 -msgid "[Y/n]" -msgstr "[J/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:746 -msgid "[y/N]" -msgstr "[j/N]" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fertig" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden." -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Regex compilation error - %s" -msgstr "Fehler beim Kompilieren eines regulären Ausdrucks - %s" +msgid "Couldn't make mmap of %llu bytes" +msgstr "mmap mit %llu Byte Größe konnte nicht erzeugt werden." -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Der Befehl »update« akzeptiert keine Argumente." +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap konnte nicht geschlossen werden." -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap konnte nicht synchronisiert werden." + +#: apt-pkg/contrib/mmap.cc:290 #, 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 %lu bytes" +msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden." -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Datei konnte nicht eingekürzt werden." -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/mmap.cc:341 #, 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 "" +"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-show.cc:163 -msgid "not a real package (virtual)" +#: 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." -#: 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/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"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:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." +#: 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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Interner Fehler, Anordnung beendete nicht" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" -#: 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/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nicht erkannte Typabkürzung: »%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:155 +#: apt-pkg/contrib/configuration.cc:635 #, 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 "Opening configuration file %s" +msgstr "Konfigurationsdatei %s wird geöffnet" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/configuration.cc:822 #, 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 "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/configuration.cc:839 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/configuration.cc:879 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Sie haben nicht genug Platz in %s." +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" -#: 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/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" -#: 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/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfehler %s:%u: Eingefügt von hier" -#. 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/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/configuration.cc:902 #, 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: clear directive requires an option tree as argument" msgstr "" -"Sie sind im Begriff, etwas potentiell Schädliches zu tun.\n" -"Zum Fortfahren geben Sie bitte »%s« ein.\n" -" ?] " +"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abbruch." +#: apt-pkg/contrib/configuration.cc:952 +#, 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:243 -msgid "Do you want to continue?" -msgstr "Möchten Sie fortfahren?" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Kein Schlüsselring in %s installiert" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Einige Dateien konnten nicht heruntergeladen werden." +#: 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-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/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-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/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Befehlszeilenoption %s ist nicht Bool'sch." -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Fehlende Pakete konnten nicht korrigiert 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-install.cc:330 -msgid "Aborting install." -msgstr "Installation abgebrochen." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=«." -#: 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] "" -"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/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«." -#: 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/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Option »%s« ist zu lang." -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." +# 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-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 "" -"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/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Ungültige Operation %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:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "" -"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" +#: 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:317 +msgid "Total package names: " +msgstr "Gesamtzahl an Paketnamen: " + +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Gesamtzahl an Paketstrukturen: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " davon gewöhnliche Pakete: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " davon rein virtuelle Pakete: " -#: 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 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" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " davon einzelne virtuelle Pakete: " -#: 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." +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " davon gemischte virtuelle Pakete: " -#: 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:" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " davon fehlend: " -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." -msgstr "" -"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " -"eines Pakets (oder geben Sie eine Lösung an)." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Gesamtzahl an unterschiedlichen Versionen: " -#: 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." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Gesamtzahl an unterschiedlichen Beschreibungen: " -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Beschädigte Pakete" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Gesamtzahl an Abhängigkeiten: " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Die folgenden zusätzlichen Pakete werden installiert:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Gesamtzahl an Version/Datei-Beziehungen: " -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Vorgeschlagene Pakete:" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Gesamtzahl an Beschreibung/Datei-Beziehungen: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Empfohlene Pakete:" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Gesamtzahl an Bereitstellungen: " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Gesamtzahl an Mustern: " -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Gesamtmenge des Abhängigkeits-/Versionsspeichers: " -#: apt-private/private-install.cc:841 -#, c-format -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" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Gesamtmenge an Slack: " -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ist schon die neueste Version.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Gesamtmenge an Speicher: " -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Version »%s« (%s) für »%s« gewählt.\n" +msgid "Package file %s is out of sync." +msgstr "Paketdatei %s ist nicht synchronisiert." -#: apt-private/private-install.cc:899 -#, 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" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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" -#. 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" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Sie müssen mindestens ein Suchmuster angeben" + +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie " -"»%s«?\n" +"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark " +"showauto«." -#: apt-private/private-install.cc:947 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paket »%s« ist nicht installiert, wird also auch nicht entfernt.\n" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Paketdateien:" -#: 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:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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!" +"Zwischenspeicher ist nicht synchron, Querverweisen einer Paketdatei nicht " +"möglich" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Mit Pinning verwaltete Pakete:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Authentifizierungswarnung überstimmt.\n" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nicht gefunden)" -#: 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." +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Installiert: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Diese Pakete ohne Überprüfung installieren?" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Installationskandidat: " -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Fehlschlag beim Holen von %s %s\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(keine)" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s konnte nicht in %s umbenannt werden." +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Paket-Pinning: " -#: apt-private/private-sources.cc:70 +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versionstabelle:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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'." +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s für %s, kompiliert am %s %s\n" + +#: cmdline/apt-cache.cc:1801 +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" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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«" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "OK " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Holen: " +#: 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)." -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "»%s« konnte nicht in »%s« eingebunden werden." -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fehl " +#: 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 "Es wurden %sB in %s geholt (%sB/s).\n" +#: 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." -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Wird verarbeitet]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumente nicht paarweise" -#: 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 "" -"Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n" -" »%s«\n" -"in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n" +"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" -#. 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-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." -#: 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-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." -#. 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" +#: 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." -#. 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 "Datei »%s« von Spiegelserver kann nicht gelesen werden." +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." +msgid "Can not find version '%s' of package '%s'" +msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spiegelserver: %s]" - -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "" -"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Verbindung vorzeitig beendet" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Fehlerhafte Voreinstellung!" - -#: 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." - -#: 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?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" +msgid "Couldn't find package %s" +msgstr "Paket %s konnte nicht gefunden werden" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "" -"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " -"durch" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s wurde als manuell installiert festgelegt.\n" -#: 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-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" -#: 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 "" -"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und " -"[I]nstallieren Sie erneut." - -#: dselect/update:30 -msgid "Merging available information" -msgstr "Verfügbare Informationen werden zusammengeführt." - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hash-Element konnte nicht gefunden werden!" +"Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " +"und »apt-mark manual«." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Umleitung konnte nicht reserviert werden." +#: 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/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Interner Fehler in »AddDiversion«" +#: 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/filelist.cc:477 -#, 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" +#: 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/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" +msgid "Unable to find a source package for %s" +msgstr "Quellpaket für %s kann nicht gefunden werden." -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Doppelte Konfigurationsdatei %s/%s" +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:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The path %s is too long" -msgstr "Der Pfad %s ist zu lang." +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:132 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s mehr als einmal entpackt" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "The directory %s is diverted" -msgstr "Das Verzeichnis %s ist umgeleitet." +msgid "Couldn't determine free space in %s" +msgstr "Freier Platz in %s konnte nicht bestimmt werden." -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:884 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Der Umleitungspfad ist zu lang." +msgid "You don't have enough free space in %s" +msgstr "Sie haben nicht genügend freien Speicherplatz in %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:893 #, c-format -msgid "Failed to stat %s" -msgstr "%s mit »stat« abfragen fehlgeschlagen" +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/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:898 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s konnte nicht in %s umbenannt werden." +msgid "Need to get %sB of source archives.\n" +msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." +msgid "Fetch source %s\n" +msgstr "Quelle %s wird heruntergeladen.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Knoten konnte nicht in seinem Hash gefunden werden." +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Einige Archive konnten nicht heruntergeladen werden." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Der Pfad ist zu lang." +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pakettreffer ohne Version für %s wird überschrieben." +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:964 #, 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 "Unpack command '%s' failed.\n" +msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:965 #, 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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to write file %s" -msgstr "Datei %s konnte nicht geschrieben werden." +msgid "Build command '%s' failed.\n" +msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Datei %s konnte nicht geschlossen werden." +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Kindprozess fehlgeschlagen" -#: 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 "Dies ist kein gültiges DEB-Archiv, da es »%s« nicht enthält." +#: cmdline/apt-get.cc:1031 +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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1056 #, 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 "" +"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-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ungültige Archiv-Signatur" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "" +"Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s hat keine Bauabhängigkeiten.\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ungültige Archivbestandteil-Kopfzeile %s" +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-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ungültige Archivdatei-Kopfzeilen" +#: cmdline/apt-get.cc:1314 +#, c-format +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-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiv ist zu kurz." +#: cmdline/apt-get.cc:1337 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " +"ist zu neu." -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." +#: cmdline/apt-get.cc:1376 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +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." -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." +#: cmdline/apt-get.cc:1382 +#, c-format +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-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip konnte nicht ausgeführt werden." +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Beschädigtes Archiv" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" +msgid "Changelog for %s (%s)" +msgstr "Änderungsprotokoll (Changelog) für %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s mit stat abfragen nicht möglich" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Unterstützte Module:" + +#: cmdline/apt-get.cc:1657 +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 "" +"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/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 "" +"Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " +"sollen." -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Ausführen von dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketierungssystem »%s« wird nicht unterstützt." +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Bestimmung eines passenden Paketierungssystemtyps nicht möglich" +#: 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 "Es wurden %i Datensätze geschrieben.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "" +"Markierung für %s kann nicht gesetzt werden, da es nicht installiert ist.\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 "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s wurde bereits auf manuell installiert gesetzt.\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 "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s wurde bereits auf automatisch installiert gesetzt.\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 "" -"Es wurden %i Datensätze mit %i fehlenden und %i nicht passenden Dateien " -"geschrieben.\n" +msgid "%s was already set on hold.\n" +msgstr "%s wurde bereits auf Halten gesetzt.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Authentifizierungs-Datensatz konnte nicht gefunden werden für: %s" +msgid "%s was already not hold.\n" +msgstr "Die Halten-Markierung für %s wurde bereits entfernt.\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-Summe stimmt nicht überein für: %s" +msgid "%s set on hold.\n" +msgstr "%s auf Halten gesetzt.\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 "Der Treiber für Methode %s konnte nicht gefunden 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" +msgid "Canceled hold on %s.\n" +msgstr "Halten-Markierung für %s entfernt.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Methode %s ist nicht korrekt gestartet." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Ausführen von dpkg fehlgeschlagen. Sind Sie 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 "" -"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und " -"drücken Sie die Eingabetaste (Enter)." +"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/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 "" -"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." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Die Liste der Quellen konnte nicht gelesen werden." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Leerer Paketzwischenspeicher" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Die Paketzwischenspeicher-Datei ist beschädigt." +#: 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:166 -msgid "The package cache file is an incompatible version" +#: 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 "" -"Die Paketzwischenspeicher-Datei liegt in einer inkompatiblen Version vor." +"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:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Die Paketzwischenspeicher-Datei ist beschädigt, sie ist zu klein." +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Falsche CD-ROM" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Das Versionssystem »%s« wird durch dieses APT nicht unterstützt." - -#: 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." - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Hängt ab von" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Hängt ab von (vorher)" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Schlägt vor" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Empfiehlt" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Kollidiert mit" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ersetzt" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Löst ab" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Beschädigt" +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 "Enhances" -msgstr "Wertet auf" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Medium nicht gefunden" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "wichtig" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datei nicht gefunden" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "erforderlich" +# 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 "standard" -msgstr "standard" +#: 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:335 -msgid "optional" -msgstr "optional" +#: 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:335 -msgid "extra" -msgstr "extra" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Anmeldung läuft" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexdateityp »%s« wird nicht unterstützt." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Name des Kommunikationspartners kann nicht bestimmt werden." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Lokaler Name kann nicht bestimmt werden." -#. 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 "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." +msgid "The server refused the connection and said: %s" +msgstr "Verbindung durch Server abgelehnt; Server meldet: %s" -#: 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." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Befehl USER fehlgeschlagen, Server meldet: %s" -#: 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." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Befehl PASS 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: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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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" + +#: 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" -#: apt-pkg/acquire-item.cc:1677 +#: 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?!" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Mindestens eine ungültige Signatur wurde entdeckt." -#: 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 "" -"Der Wert »%s« ist für APT::Default-Release ungültig, da solch eine " -"Veröffentlichung in den Paketquellen nicht verfügbar ist." +"»gpgv« konnte zur Überprüfung der Signatur nicht ausgeführt werden (ist gpgv " +"installiert?)" -#: 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 "" -"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?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Kennzeichnung »%s« gefunden\n" - -#: 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" +"Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt." -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" msgstr "" -"Dieses Medium heißt: \n" -"»%s«\n" +"Teilweise Dateiübertragung wird vom HTTP-Server nur fehlerhaft unterstützt." -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopieren der Paketlisten ..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Unbekanntes Datumsformat" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Schreiben der neuen Quellliste\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Fehlerhafte Kopfzeilendaten" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Quelllisteneinträge für dieses Medium sind:\n" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Verbindung fehlgeschlagen" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, c-format msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " -"gefunden werden." -#: 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/server.cc:692 +msgid "Internal error" +msgstr "Interner Fehler" -#: 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." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Abhängigkeitsbaum wird aufgebaut." +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Fertig" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Installationskandidat-Versionen" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Abhängigkeitsgenerierung" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Statusinformationen werden eingelesen." +#: apt-private/private-list.cc:156 +#, 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 "StateFile %s konnte nicht geöffnet werden." +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Abhängigkeiten werden korrigiert ..." -#: 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:96 +msgid " failed." +msgstr " fehlgeschlagen." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Abhängigkeiten konnten nicht korrigiert werden." -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert 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:104 +msgid " Done" +msgstr " Fertig" -#: 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: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:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Task »%s« konnte nicht 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: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-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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installiert]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Installiert]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +msgid "The following packages have been kept back:" +msgstr "Die folgenden Pakete sind zurückgehalten worden:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Die folgenden Pakete werden aktualisiert (Upgrade):" + +#: apt-private/private-output.cc:592 +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 +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Die folgenden zurückgehaltenen Pakete werden verändert:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI«)" +msgid "%s (due to %s) " +msgstr "%s (wegen %s) " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:675 +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-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist«)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualisiert, %lu neu installiert, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»URI parse«)" +msgid "%lu reinstalled, " +msgstr "%lu erneut installiert, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" +msgid "%lu downgraded, " +msgstr "%lu durch eine ältere Version ersetzt, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:718 #, c-format -msgid "Opening %s" -msgstr "%s wird geöffnet." +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nicht vollständig installiert oder entfernt.\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:740 +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:746 +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:757 +msgid "Y" +msgstr "J" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +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-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Missgestaltete Zeile %u in Quellliste %s (»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] "" +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 "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." +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 "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." +#: 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 wird installiert." +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s wird konfiguriert." +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s wird entfernt." +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Interner Fehler, Anordnung beendete nicht" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s wird vollständig entfernt." +#: apt-private/private-install.cc:150 +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: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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "Verschwinden von %s festgestellt" +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: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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Aufruf des Nach-Installations-Triggers %s" +msgid "Need to get %sB of archives.\n" +msgstr "Es müssen %sB an Archiven heruntergeladen werden.\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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "Verzeichnis »%s« fehlt" +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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "Datei »%s« konnte nicht geöffnet werden." +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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "%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:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s wird entpackt." +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Konfiguration von %s wird vorbereitet." +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "%s installiert" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Ja, tue was ich sage!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "Entfernen von %s wird vorbereitet." +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:1004 -#, c-format -msgid "Removed %s" -msgstr "%s entfernt" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Abbruch." -#: 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:245 +msgid "Do you want to continue?" +msgstr "Möchten Sie fortfahren?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s vollständig entfernt" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Einige Dateien konnten nicht heruntergeladen werden." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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: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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Fehlende Pakete konnten nicht korrigiert werden." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Installation abgebrochen." -#: 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:368 +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/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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." -#. 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:393 +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/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung darauf " -"hindeutet, dass dies lediglich ein Folgefehler eines vorherigen Problems ist." +"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: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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" msgstr "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Fehler " -"wegen voller Festplatte hindeutet." +"Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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." +"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/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:519 +#, 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" + +#: apt-private/private-install.cc:521 +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:614 +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:616 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." +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " +"eines Pakets (oder geben Sie eine Lösung an)." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:640 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 "" -"Es wurde kein Apport-Bericht verfasst, da die Fehlermeldung auf einen Ein-/" -"Ausgabe-Fehler von Dpkg hindeutet." +"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." -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Beschädigte Pakete" + +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Die folgenden zusätzlichen Pakete werden installiert:" + +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Vorgeschlagene Pakete:" + +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Empfohlene Pakete:" + +#: apt-private/private-install.cc:851 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " -"einem anderen Prozess verwendet?" +"%s wird übersprungen; es ist schon installiert und ein Upgrade ist nicht " +"angefordert.\n" -#: apt-pkg/deb/debsystem.cc:94 +#: apt-private/private-install.cc:855 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" msgstr "" -"Sperren des Administrationsverzeichnisses (%s) nicht möglich, sind Sie root?" +"%s wird übersprungen; es ist nicht installiert und lediglich Upgrades sind " +"angefordert.\n" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: apt-private/private-install.cc:867 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"Der dpkg-Prozess wurde unterbrochen; Sie müssen manuell »%s« ausführen, um " -"das Problem zu beheben." - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nicht gesperrt" +"Erneute Installation von %s ist nicht möglich,\n" +"es kann nicht heruntergeladen werden.\n" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:872 #, c-format -msgid "%lid %lih %limin %lis" -msgstr "%li d %li h %li min %li s" +msgid "%s is already the newest version.\n" +msgstr "%s ist schon die neueste Version.\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:920 #, c-format -msgid "%lih %limin %lis" -msgstr "%li h %li min %li s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Version »%s« (%s) für »%s« gewählt.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:925 #, c-format -msgid "%limin %lis" -msgstr "%li min %li s" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Version »%s« (%s) für »%s« gewählt aufgrund von »%s«.\n" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 #, c-format -msgid "%lis" -msgstr "%li s" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"Paket »%s« ist nicht installiert, wird also auch nicht entfernt. Meinten Sie " +"»%s«?\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:973 #, c-format -msgid "Selection %s not found" -msgstr "Auswahl %s nicht gefunden" +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:190 -#, c-format -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-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/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Sperrdatei %s konnte nicht geöffnet werden." +#: 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: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-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Authentifizierungswarnung überstimmt.\n" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Konnte Sperre %s nicht bekommen" +#: 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: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-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Diese Pakete ohne Überprüfung installieren?" -#: 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-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:412 +#: 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 "" -"Datei »%s« in Verzeichnis »%s« wird ignoriert, da sie keine Dateinamen-" -"Erweiterung hat." -#: 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 "" -"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." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "OK " -#: 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/acqprogress.cc:88 +msgid "Get:" +msgstr "Holen: " -#: 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/acqprogress.cc:119 +msgid "Ign " +msgstr "Ign " -#: 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/acqprogress.cc:123 +msgid "Err " +msgstr "Fehl " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem beim Schließen der gzip-Datei %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Es wurden %sB in %s geholt (%sB/s).\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Could not open file %s" -msgstr "Datei %s konnte nicht geöffnet werden." +msgid " [Working]" +msgstr " [Wird verarbeitet]" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/acqprogress.cc:298 #, c-format -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" +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" msgstr "" -"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." +"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/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Fehler beim Ausführen von Komprimierer " +#. 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" -#: 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 #, 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." +msgid "Can not read mirror file '%s'" +msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." + +#: methods/mirror.cc:315 +#, fuzzy, c-format +msgid "No entry found in mirror file '%s'" +msgstr "Datei »%s« von Spiegelserver kann nicht gelesen werden." -#: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649 +#: methods/mirror.cc:445 #, c-format -msgid "write, still have %llu to write but couldn't" +msgid "[Mirror: %s]" +msgstr "[Spiegelserver: %s]" + +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" msgstr "" -"Schreibvorgang: es verbleiben noch %llu zu schreiben, Schreiben ist jedoch " -"nicht möglich." +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden." -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Problem beim Schließen der Datei %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Verbindung vorzeitig beendet" -#: 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" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Fehlerhafte Voreinstellung!" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem beim Entfernen (unlink) der Datei %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 "Zum Fortfahren die Eingabetaste (Enter) drücken." -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem beim Synchronisieren der Datei" +#: 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/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fehler!" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" + +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "" +"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " +"durch" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fertig" +#: 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/progress.cc:181 -msgid "..." +#: dselect/install:105 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" msgstr "" +"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und " +"[I]nstallieren Sie erneut." -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Fertig" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Verfügbare Informationen werden zusammengeführt." -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden." +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Datei-Deskriptor %i konnte nicht dupliziert werden." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hash-Element konnte nicht gefunden 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-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Umleitung konnte nicht reserviert werden." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "mmap konnte nicht geschlossen werden." +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Interner Fehler in »AddDiversion«" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "mmap konnte nicht synchronisiert werden." +#: apt-inst/filelist.cc:477 +#, 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" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "mmap mit %lu Byte Größe konnte nicht erzeugt werden." +msgid "Double add of diversion %s -> %s" +msgstr "Doppelte Hinzufügung der Umleitung %s -> %s" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Datei konnte nicht eingekürzt werden." +#: apt-inst/filelist.cc:549 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "Doppelte Konfigurationsdatei %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 "" -"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.)" +msgid "The path %s is too long" +msgstr "Der Pfad %s ist zu 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 "" -"Unmöglich, die Größe der MMap zu erhöhen, da das Limit von %lu Byte bereits " -"erreicht ist." +msgid "Unpacking %s more than once" +msgstr "%s mehr als einmal entpackt" -#: apt-pkg/contrib/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." -msgstr "" -"Unmöglich, die Größe der MMap zu erhöhen, da das automatische Anwachsen der " -"MMap vom Benutzer deaktiviert ist." +#: apt-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Das Verzeichnis %s ist umgeleitet." -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Einbindungspunkt %s mit »stat« abfragen nicht möglich." +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/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "CD-ROM mit »stat« abfragen fehlgeschlagen" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Der Umleitungspfad ist zu 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:184 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nicht erkannte Typabkürzung: »%c«" +msgid "Failed to stat %s" +msgstr "%s mit »stat« abfragen fehlgeschlagen" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "Konfigurationsdatei %s wird geöffnet" +msgid "Failed to rename %s to %s" +msgstr "%s konnte nicht in %s umbenannt werden." -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfehler %s:%u: Missgestaltete Markierung" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Knoten konnte nicht in seinem Hash gefunden werden." -#: apt-pkg/contrib/configuration.cc:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfehler %s:%u: Zusätzlicher Unsinn nach Wert" +#: apt-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Der Pfad ist zu 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 "" -"Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" +msgid "Overwrite package match with no version for %s" +msgstr "Pakettreffer ohne Version für %s wird überschrieben." -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" +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/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 "Syntaxfehler %s:%u: Eingefügt von hier" +msgid "Unable to stat %s" +msgstr "%s mit »stat« abfragen nicht möglich" -#: 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 "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" +msgid "Failed to write file %s" +msgstr "Datei %s konnte nicht geschrieben werden." -#: 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 "" -"Syntaxfehler %s:%u: Löschdirektiven benötigen einen Optionsbaum als Argument" +msgid "Failed to close file %s" +msgstr "Datei %s konnte nicht geschlossen werden." -#: 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 "Syntaxfehler %s:%u: Zusätzlicher Unsinn am Dateiende" +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." -#. 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 "Kein Schlüsselring in %s installiert" +msgid "Internal error, could not locate member %s" +msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" -#: 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-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Auswerten der »control«-Datei nicht möglich" -#: 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-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ungültige Archiv-Signatur" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Befehlszeilenoption %s ist nicht Bool'sch." +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" -#: 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 "Option %s erfordert ein Argument." +msgid "Invalid archive member header %s" +msgstr "Ungültige Archivbestandteil-Kopfzeile %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =." -msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=«." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Ungültige Archivdatei-Kopfzeilen" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Option %s erfordert ein Ganzzahl-Argument, nicht »%s«." +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archiv ist zu kurz." -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Option »%s« ist zu lang." +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden." -# 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-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden." -#: apt-pkg/contrib/cmndline.cc:391 +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3352,12 +3365,7 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s mit »stat« abfragen nicht möglich" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Debconf-Version konnte nicht ermittelt werden. Ist debconf installiert?" @@ -3482,17 +3490,17 @@ msgstr "Keine Auswahl traf zu" msgid "Some files are missing in the package file group `%s'" msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«." -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Datenbank wurde beschädigt, Datei umbenannt in %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Datenbank ist veraltet; es wird versucht, %s zu erneuern." -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3501,105 +3509,105 @@ msgstr "" "einer älteren apt-Version gemacht haben, entfernen Sie bitte die Datenbank " "und erstellen Sie sie neu." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Datenbankdatei %s kann nicht geöffnet werden: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "readlink von %s fehlgeschlagen" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Archiv hat keinen Steuerungsdatensatz." -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Unmöglich, einen Cursor zu bekommen" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Verzeichnis %s kann nicht gelesen werden.\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s mit »stat« abfragen nicht möglich.\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "F: Fehler gehören zu Datei " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s konnte nicht aufgelöst werden." -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Durchlaufen des Verzeichnisbaums fehlgeschlagen" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Öffnen von %s fehlgeschlagen" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "readlink von %s fehlgeschlagen" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Entfernen (unlink) von %s fehlgeschlagen" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Erzeugen einer Verknüpfung von %s zu %s fehlgeschlagen" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-Limit von %sB erreicht\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archiv hatte kein Feld »package«" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s hat keinen Eintrag in der Override-Liste.\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-Betreuer ist %s und nicht %s.\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n" diff --git a/po/dz.po b/po/dz.po index 0f21c3ab6..ade97c544 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@ -19,3155 +19,3168 @@ msgstr "" "X-Poedit-Country: Bhutan\n" "X-Poedit-SourceCharset: utf-8\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "ཐུམ་སྒྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མཐུན་པའི་འཐོན་རིམ་ཅིག་ཨིན་པས།" + +#: apt-pkg/pkgcache.cc:164 +#, 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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +msgid "Depends" +msgstr "རྟེནམ་ཨིན།" + +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "མི་མཐུནམ་ཨིན།" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "ཚབ་བཙུགསཔ་ཨིན།" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" msgstr "" -"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "ཁབ་གཟེར་བཏབ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(མ་ཐོབ།)" +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "གལ་ཅན།" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།" +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "དགོས་མཁོ་ཡོདཔ།" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr "མི་ངོ:" +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "ཚད་ལྡན།" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ཅི་མེད།)" +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "གདམ་ཁ་ཅན།" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "ཐུམ་སྒྲིལ་གྱི་ཁབ་གཟེར:" +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "ཐེབས།" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: 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 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s་གི་དོན་ལུ་%s %sགུར་ཕྱོགས་སྒྲིག་འབད་ཡོད་པའི་%s %s\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" + +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: cmdline/apt-cache.cc:1749 +#: apt-pkg/pkgcachegen.cc:286 #, 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" +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +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/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག" +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %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:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%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:454 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Couldn't find package %s" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +msgid "rename failed, %s (%s -> %s)." +msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: 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-pkg/acquire-item.cc:175 +#, fuzzy +msgid "Hash Sum mismatch" +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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "ཚད་མ་མཐུན།" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" 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 "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" +#: apt-pkg/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"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:843 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1972 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s་ནང་བར་སྟོང་" +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:882 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "You don't have enough free space in %s" -msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" +msgid "Can't find a source to download version '%s' of '%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:2074 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %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 -#: cmdline/apt-get.cc:896 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" -#: cmdline/apt-get.cc:950 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" - -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" +msgid "Retrieving file %li of %li" +msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" +msgid "Failed to fetch %s %s\n" +msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -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:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" +"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" -#: cmdline/apt-get.cc:1054 +#: 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 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" -#: 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 "%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:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" - -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +"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:1351 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" + +#: apt-pkg/packagemanager.cc:584 +#, 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 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:571 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." + +#: 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" + +#: 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 "ངོས་འཛིན་འབད་དོ..." -#: cmdline/apt-get.cc:1395 +#: 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 +#: apt-pkg/cdrom.cc:734 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s)་ལུ་མཐུད་དོ།" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:744 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 locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" 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 "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" -#: cmdline/apt-helper.cc:66 +#: 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 "" +"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" +"'%s'\n" -#: 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:819 +msgid "Copying package lists..." +msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\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:874 +msgid "Source list entries for this disc are:\n" +msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" -#: cmdline/apt-mark.cc:241 +#: 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-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" +"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" + +#: 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 +#, 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:169 #, 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:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "%sཐུམ་སྒྲིལ་འདི་ག་ཡོད་ཟཚོལ་མ་ཐོབ།" + +#: apt-pkg/cacheset.cc:604 #, 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:610 #, 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:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" + +#: apt-pkg/cacheset.cc:627 +#, 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:634 apt-pkg/cacheset.cc:641 +#, 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:648 +#, 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:656 #, 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:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་" -"འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།" +#: apt-pkg/indexrecords.cc:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" + +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "No Hash entry in Release file %s" msgstr "" -"%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" +#: apt-pkg/indexrecords.cc:149 +#, 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:168 +#, 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(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" -#: 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 "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།" +#: 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 (ཡུ་ཨར་ཨའི་)གི་ནང་ན།" -#: 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(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" -#: 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 +#: 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 "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(ཡང་དག་ dist)གི་ནང་ན།" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %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 -msgid "Failed" -msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s་ཁ་ཕྱེ་དོ།" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -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:760 -msgid "Could not determine the socket's name" -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:792 -msgid "Unable to send PORT command" -msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" +msgid "Configuring %s" +msgstr "%s་རིམ་སྒྲིག་འབད་དོ།" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" +msgid "Removing %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:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:99 #, 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 "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" +msgid "Running post-installation trigger %s" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -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:1128 -msgid "Unable to invoke " -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/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)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" +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 "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" +msgid "Completely removed %s" +msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" +msgid "Can not write log (%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:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:1563 +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:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" msgstr "" -"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" - -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1645 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 out of memory " +"error" msgstr "" -"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +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 "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" - -#: 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:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -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:626 -msgid "Connection timed out" -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:649 -msgid "Error writing to output 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 "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +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 "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -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:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག" +#: 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:191 +#, 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:196 +#, 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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "ནང་འཁོད་འཛོལ་བ།" +#: apt-pkg/contrib/fileutl.cc:224 +#, 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:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "འབད་ཚར་ཡི།" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:413 +#, 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:422 +#, 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:841 #, 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:843 +#, 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:847 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:849 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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: 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:951 +#, 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:1139 +#, 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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "འཛོལ་བ་ལྷབ།" + +#: apt-pkg/contrib/fileutl.cc:1552 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +msgid "read, still have %llu to read but none left" +msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལ།" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:434 +#: 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:436 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།" - -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།" +msgid "%c%s... Done" +msgstr "%c%s... འབད་ཚར་ཡོད།" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -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:453 -msgid " or" -msgstr "ཡང་ན།" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-private/private-output.cc:502 -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:528 -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:550 -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:571 -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:592 -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:612 -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:667 +#: 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:675 +#: 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:706 +#: 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:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།" +msgid "Opening configuration file %s" +msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, 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:718 +#: apt-pkg/contrib/configuration.cc:822 #, 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:740 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:746 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:879 +#, 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:757 -msgid "Y" -msgstr "ཝའི།" +#: apt-pkg/contrib/configuration.cc:886 +#, 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:763 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:899 #, 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:902 +#, 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:952 #, 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-update.cc:94 -msgid "All packages are up to date." -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-show.cc:156 +#: apt-pkg/contrib/cmndline.cc:121 #, 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)" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "བརྡ་བཀོད་གྲལ་ཐིག་གྱི་གདམ་ཁ་'%c'[%s་ནང་ལས་]འདི་མ་ཤེས་པས།" -#: apt-private/private-install.cc:82 -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:91 -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:110 -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:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ 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 =." +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:155 +#: 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:160 +#: 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:167 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འཐབ་འོང་།\n" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +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:172 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" - -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %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-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -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 "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" +msgid "Invalid operation %s" +msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" -#: apt-private/private-install.cc:222 +#: 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:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "བར་བཤོལ་འབད།" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: apt-private/private-install.cc:243 +#: cmdline/apt-cache.cc:319 #, fuzzy -msgid "Do you want to continue?" -msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་" - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" - -#: 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-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 "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" +msgid "Total package structures: " +msgstr "ཐུམ་སྒྲིལ་བསྡོམས་ཀྱི་མིང་ཚུ:" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +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] "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་གཙང་མ་ཚུ:" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་རྐྱང་པ་ཚུ:" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr "བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་སླ་བསྲེ་ཡོད་མི་ཚུ:" -#: 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 "" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +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 "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "ཁྱད་རྟགས་ཅན་གྱི་ཐོན་རིམ་ཚུ་གི་བསྡོམས:" -#: apt-private/private-install.cc:506 +#: cmdline/apt-cache.cc:367 #, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" +msgid "Total distinct descriptions: " +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] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +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] "" +#: cmdline/apt-cache.cc:374 +#, 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:376 +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)." -msgstr "" -"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" -"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +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 "" -"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་" -"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" -"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "རྟེན་འབྲེལ་ཐོན་རིམ་བར་སྟོང་གྱི་བསྡོམས:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡོམས:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" -"འབད་བས།\n" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "ཁྱོད་ཀྱིས་ཏག་ཏག་སྦེ་དཔེ་གཞི་གཅིག་བྱིན་དགོ" -#: apt-private/private-install.cc:829 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" -"འབད་བས།\n" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "ཐུམ་སྒྲིལ་གྱི་ཡིག་སྣོད:" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"འདྲ་མཛོད་འདི་མཉམ་བྱུང་གི་ཕྱི་ཁར་ཨིན་པས་ ཐུམ་སྒྲིལ་ཡིག་སྣོད་ཅིག་ལུ་ ཨེགསི་-རེཕ་འབད་མི་ཚུགས་པས།" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +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" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +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" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr "གཞི་བཙུགས་འབད་ཡོདཔ།" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +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 "" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ཅི་མེད།)" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr "ཐུམ་སྒྲིལ་གྱི་ཁབ་གཟེར:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོད།\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +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:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-download.cc:50 +#: cmdline/apt-cache.cc:1801 #, fuzzy -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" +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-private/private-sources.cc:58 +#: 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 "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" + +#: 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'." +#: 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" -msgstr "" +#: 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 "ཨེབ།" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "སྒྲུབས་རྟགས་ཚུ་ཟུང་ནང་མིན་འདུག" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -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 config་ཡིག་སྣོད་ལྷག་ནིའི་དོན་ལུ་འཇམ་སམ་ལག་ཆས་ཅིག་ཨིན།\n" +"\n" +"བརྡ་བཀོད་ཚུ:\n" +" shell - ཤལ་གྱི་ཐབས་ལམ།\n" +" dump - འདི་གིས་རིམ་སྒྲིག་གི་ཐབས་ལམ་འདི་སྟོནམ་ཨིན།\n" +"\n" +"གདམ་ཁ་ཚུ:\n" +" -h འདི་གིས་ཚིག་ཡིག་ལུ་གྲོགས་རམ་འབདཝ་ཨིན།\n" +" -c=? འདི་གིས་འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷགཔ་ཨིན།\n" +" -o=? མཐུན་སྒྲིག་གི་རིམ་སྒྲིག་འདི་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་བཟུམ།\n" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "ཨེལ་ཇི་ཨེན:" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-private/acqprogress.cc:125 -msgid "Err " -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:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\n" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [ལཱ་འབད་དོ།]" +#: cmdline/apt-get.cc:367 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: 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'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།\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 +#: cmdline/apt-get.cc:454 #, c-format -msgid "No mirror file '%s' found " -msgstr "" +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:891 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +msgid "%s set to manually installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: 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 "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +msgid "%s set to automatically installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: 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 "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +#: 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 "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: 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:766 cmdline/apt-get.cc:1091 +#, 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?" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -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 "" -#: 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 "" -"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 "ད་ལྟོ་ཡང་འབྲེལ་ལམ་ཡོད་པའི་མཐུད་མཚམས་གུར་བཀོག་བཞག་མཐུད་མཚམས་དེ་བོད་བརྡ་འབད་འདི་ཡོད།" - -#: 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 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "%s -> %s ་དང་ %s/%s་ཁ་ཕྱོགས་ཅིག་ཚབ་སྲུང་འབད་ནི་ལུ་འབད་རྩོལ་བསྐྱེད་དོ།" +msgid "Skipping already downloaded file '%s'\n" +msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s་ཁ་ཕྱོགས་ཀྱི་ལོག་བལྟབ་ཁ་སྐོང་།" +msgid "Couldn't determine free space in %s" +msgstr "%s་ནང་བར་སྟོང་" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s/%s་འདི་ངོ་བཤུས་བཟོ།" +msgid "You don't have enough free space in %s" +msgstr " %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:893 #, c-format -msgid "The path %s is too long" -msgstr "%s་འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\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:898 #, c-format -msgid "Unpacking %s more than once" -msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" +msgid "Need to get %sB of source archives.\n" +msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is diverted" -msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒྱུར་དེ་ཡོད།" +msgid "Fetch source %s\n" +msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" -#: 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:922 +msgid "Failed to fetch some archives." +msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:952 #, 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:964 #, 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:965 #, 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:993 +#, 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:1012 +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:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, 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:1103 cmdline/apt-get.cc:1106 #, 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:1126 #, 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 -#, c-format -msgid "Failed to close file %s" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་བསྡམས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: cmdline/apt-get.cc:1296 +#, 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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -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:132 +#: cmdline/apt-get.cc:1337 #, 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 "" +"%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" +"སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1376 #, 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:1382 +#, 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:1405 +#, 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:1420 +#, 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:1425 +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:1518 cmdline/apt-get.cc:1530 +#, 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:1616 +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:1657 +#, 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' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།" +#: cmdline/apt-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: 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-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\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:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\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-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" + +#: 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 "" -"%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་ %iམཐུན་སྒྲིག་མེད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་" -"ཡོདཔ་ཨིན།\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %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." msgstr "" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %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" +msgstr "" -#: 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-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" -#: 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' དང་ལོག་ལྡེ་འདི་ཨེབ།་" +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 "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." -msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ན་གནས་ཚད་ཡིག་སྣོད་ཚུ་ མིང་དཔྱད་ཡང་ན་ཁ་ཕྱེ་མ་ཚུགས།" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" -msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" +#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 +#: methods/rred.cc:608 +msgid "Failed to stat" +msgstr "ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "ཆུ་ཚོད་ལེགས་བཅོས་གཞི་སྒྲིག་འབཐ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་སྟོངམ།" +#: 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 "ནང་བསྐྱོད་འབད་དོ།" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "ཐུམ་སྒྲིས་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ མི་མཐུན་པའི་འཐོན་རིམ་ཅིག་ཨིན་པས།" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "དོ་བཉམ་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: apt-pkg/pkgcache.cc:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་ཡིག་སྣོད་འདི་ངན་ཅན་ཨིན་པས།" +#: 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 "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s'འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་དེ་ལུ་རྒྱབ་སྐྱོར་མི་འབད་བས།" +msgid "The server refused the connection and said: %s" +msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "རྟེནམ་ཨིན།" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -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/pkgcache.cc:321 -msgid "Suggests" -msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" +#: methods/ftp.cc:280 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -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:322 -msgid "Replaces" -msgstr "ཚབ་བཙུགསཔ་ཨིན།" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅན།" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "གལ་ཅན།" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "དགོས་མཁོ་ཡོདཔ།" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "ཚད་ལྡན།" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "གདམ་ཁ་ཅན།" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ཐེབས།" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's 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 -#, fuzzy, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" -#: apt-pkg/pkgcachegen.cc:263 -#, fuzzy -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +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:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:890 #, c-format -msgid "Couldn't stat source package list %s" -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 "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" +msgid "Unable to fetch file, server said '%s'" +msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to write to %s" -msgstr " %sལུ་འབྲི་མ་ཚུགས།" +msgid "Data transfer failed, server said '%s'" +msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "འདྲི་དཔྱད།" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/connect.cc:87 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: 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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/connect.cc:108 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -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 +#, c-format +msgid "Connecting to %s" +msgstr "%s་ལུ་མཐུད་དོ།" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:205 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" -#: apt-pkg/acquire-item.cc:1597 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +msgid "System error resolving '%s:%s'" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" +#: methods/connect.cc:211 +#, fuzzy, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" -#: apt-pkg/acquire-item.cc:1677 -#, c-format +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" + +#: methods/gpgv.cc:168 msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" +"ནང་འཁོད་འཛོལ་བ: མིང་རྟགས་འདི་ལེགས་ཤོམ་ཅིག་འདུག་ འདི་འབདཝ་ད་མཛུབ་རྗེས་ལྡེ་མིག་དེ་གཏན་འབེབས་བཟོ་" +"མ་ཚུགས?!" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: 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 "" +"མིང་རྟགས་བདེན་སྦྱོར་འབད་ནི་ལུ་'%s'འདི་ལག་ལེན་འཐབ་མ་ཚུགས། (gpgv་དེ་ཁཞི་བཙུགས་འབད་ཡོདཔ་ཨིན་ན།?)" -#: apt-pkg/acquire-item.cc:1729 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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 "" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv་ལག་ལེན་འཐབ་ནི་ལུ་མ་ཤེས་པའི་འཛོལ་བ་།" -#: apt-pkg/acquire-item.cc:1867 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "འོག་གི་མིང་རྟགས་ཚུ་ནུས་མེད་ཨིན་པས།:\n" + +#: methods/gpgv.cc:231 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)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -" %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " -"འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" +"འོག་གི་མིང་རྟགས་ཚུ་བདེན་སྦྱོར་་འབད་མ་ཚུགས་ག་ཅི་སྦེ་ཟེར་བ་ཅིན་མི་དམང་ལྡེ་མིག་དེ་འཐོབ་མི་ཚུགས་པས:\n" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/acquire-item.cc:1991 -#, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "" -"ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" +msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས་འདི་བརླག་སྟོར་ཞུགས་ཏེ་འདུག" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" +#: methods/http.cc:621 +msgid "Select failed" +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 ལྷག་ལུས་དོ།)" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" +#: methods/http.cc:649 +msgid "Error writing to output file" +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 "" -"ཟུར་ཐོ་ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ནུག་ འདི་ཚུ་སྣང་མེད་སྦེ་བཞགཔ་མ་ཚད་ ཚབ་ལུ་" -"རྙིངམ་འདི་ཚུ་ལག་ལེན་འཐབ་ནུག" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "" -"ཁྱོད་རའི་sources.listགི་ཐོ་ཡིག་ནང་ལུ་ཁྱོད་ཀྱི་ 'འབྱུང་ཁུངས་' ཡུ་ཨར་ཨའི་ཚུ་་ལ་ལུ་ཅིག་བཙུགས་དགོ" +#: methods/server.cc:109 +msgid "Bad header line" +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 "" +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/policy.cc:422 -#, fuzzy, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" +#: methods/server.cc:171 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།" +#: methods/server.cc:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +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)" -msgstr "" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/packagemanager.cc:583 +#: methods/server.cc:572 #, 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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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/server.cc:692 +msgid "Internal error" +msgstr "ནང་འཁོད་འཛོལ་བ།" -#: apt-pkg/cdrom.cc:571 -#, fuzzy -msgid "Unmounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: apt-pkg/cdrom.cc:586 +#: 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-private/private-list.cc:123 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:156 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\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] "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "ངོས་འཛིན་འབད་དོ..." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "ཡར་བསྐྱེད་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པས།" + +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr "འབད་ཚར་ཡི།" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ...\n" +#: 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/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" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ། -f ལག་ལེན་འཐབ་སྟེ་འབད་རྩོལ་བསྐྱེད།" -#: 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-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: apt-pkg/cdrom.cc:771 +#: apt-private/private-output.cc:233 #, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" +msgid "[installed,upgradable to: %s]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -"ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-output.cc:248 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "[upgradable from: %s]" msgstr "" -"ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" -"མ་ཐོབ།" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-output.cc:252 +msgid "[residual-config]" msgstr "" -"འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" -"སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" +#: apt-private/private-output.cc:434 +#, c-format +msgid "but %s is installed" +msgstr "འདི་འབདཝ་ད་%s་འདི་གཞི་བཙུགས་འབད་ཡོད།" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "རྟེན་འབྲེལ་གྱི་རྩ་འབྲེལ་བཟོ་བརྩིགས་འབད་དོ།" +#: apt-private/private-output.cc:436 +#, c-format +msgid "but %s is to be installed" +msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "མི་ངོ་འཐོན་རིམཚུ།" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "འདི་འབདཝ་ད་%s་འདི་གཟི་བཙུགས་འབད་མི་བཏུབ་པས།" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "བརྟེན་པའི་བཟོ་བཏོན།" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "འདི་འབདཝ་ད་ འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན་པས།" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -#, fuzzy -msgid "Reading state information" -msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མ་འབད་བས།" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +msgstr "འདི་འབདཝ་ད་འདི་གཞི་བཙུགས་མི་འབད་ནི་ཨིན་པས།" -#: apt-pkg/depcache.cc:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/private-output.cc:453 +msgid " or" +msgstr "ཡང་ན།" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཚུ་ལུ་རྟེན་འབྲེལ་མ་ཚང་པས:" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "%s (༢་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་རྩ བསྐྲད་གཏང་འོང་:" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ལོག་སྟེ་རང་བཞག་ནུག:" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་ཡར་བསྐྱེད་འབད་འོང་:" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +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:612 +msgid "The following held packages will be changed:" +msgstr "འོག་གི་འཆང་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་བསྒྱུར་བཅོས་འབད་འོང་:" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:667 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s( %s་གིས་སྦེ)" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: apt-private/private-output.cc:675 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"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/cacheset.cc:647 +#: apt-private/private-output.cc:706 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu་ཡར་བསྐྱེད་འབད་ཡོད་ %lu་འདི་གསརཔ་སྦེ་གཞི་བཙུགས་འབད་ཡོད།" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:710 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu་འདི་ལོག་གཞི་བཙུགས་འབད་ཡོད།" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:712 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" - -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" +msgid "%lu downgraded, " +msgstr "%lu་འདི་མར་ཕབ་འབད་ཡོད།" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:714 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" - -#: apt-pkg/indexrecords.cc:130 -#, fuzzy, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "%s་ཁ་ཕྱོགས་ཡིག་སྣོད་ནང་ནུས་མེད་གྲལ་ཐིག" - -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" - -#: apt-pkg/sourcelist.cc:170 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" - -#: apt-pkg/sourcelist.cc:173 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (dist)གི་ནང་ན།" - -#: 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-pkg/sourcelist.cc:190 -#, fuzzy, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" - -#: 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 མིང་དཔྱད་འབད་ནི་)ནང་ན།" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་%lu་ཡར་བསྐྱེད་མ་འབད་བས།\n" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu འབྱུང་ཁུངས་ཐོ་ཡིག་ %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:740 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་ %lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%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:746 +msgid "[y/N]" +msgstr "" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཐོ་ཡིག་ %s(ཡུ་ཨར་ཨའི་ མིང་དཔྱད་འབད་ནི)གི་ནང་ན།" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "ཝའི།" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(ཡང་དག་ dist)གི་ནང་ན།" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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 "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" -#: 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] "" +msgstr[1] "" -#: 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] "" +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:84 +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:93 +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:112 +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:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email 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:157 #, 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:162 #, 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:169 #, fuzzy, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "བར་བཤོལ་འབད།" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" +#: apt-private/private-install.cc:245 +#, 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:315 +msgid "Some files failed to download" +msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr " %sལུ་འབྲི་མ་ཚུགས།" +#: apt-private/private-install.cc:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" + +#: apt-private/private-install.cc:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" + +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a disk full " -"error" -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-private/private-install.cc:519 +#, 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/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:521 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: 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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" +"(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་གཞི་བཙུགས་འབད་མ་ཚུགས། འ་ནི་གི་དོན་དག་དེ་ཁྱོད་ཀྱི་ མི་སྲིད་པའི་དུས་སྐབས་ཅིག་ཞུ་བ་" +"འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" +"འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: 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:661 +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 "" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested 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 "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, 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 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:855 +#, fuzzy, c-format +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:867 #, c-format -msgid "%lis" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "%s ལྷག་ནི་རྐྱངམ་ཅིག་འབད་མི་ལྡེ་མིག་ཡིག་སྣོད་འདི་གི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" +#: apt-private/private-install.cc:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "ལྡེ་མིག་རྐྱབས་ཡོད་པའི་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-private/private-install.cc:925 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"ཨེན་ཨེཕ་ཨེསི་ %s སྦྱར་བརྩེགས་འབད་ཡོད་པའི་ལྡེ་མིག་ཡིག་སྣོད་ཀྱི་དོན་ལུ་ལྡེ་མིག་རྐྱབ་ནི་ལག་ལེན་མི་འཐབ་པས།" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚུགས།" +#: apt-private/private-install.cc:973 +#, fuzzy, c-format +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་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" +#: apt-private/private-download.cc:50 +#, fuzzy +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་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" +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 "ཨེབ།" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" +#: apt-private/acqprogress.cc:88 +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:119 +msgid "Ign " +msgstr "ཨེལ་ཇི་ཨེན:" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "ཡན་ལག་ལས་སྦྱོར་ ཨའི་པི་སི་ གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "ཨི་ཨར་ཨར།" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "ཨེབ་འཕྲུལ་ལག་ལེན་འཐབ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" +#: apt-private/acqprogress.cc:147 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s)་ནང་ལུ་%sB་དེ་ལེན་ཡོདཔ་ཨིན།\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:237 +#, 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:298 +#, 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" -#: 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 "ཡན་ལག་ལས་སྦྱོར་ལུ་ཨའི་པི་སི་རྒྱུད་དུང་གསར་བསྐྲུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: 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 "%lu་བཱའིཊིསི་གི་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:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%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 "ལས་བཀོལ་འབད་མ་ཚུགས།" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" +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:184 #, 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 =." -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 "འ་ནི་འདི་ ཌི་ཨི་བི་ཡིག་མཛོད་ནུས་ཅན་ཅིག་མེན་པས་ '%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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3191,12 +3204,7 @@ msgstr "" " -o=? འདི་གིས་མཐུན་སྒྲིག་རིམ་སྒྲིག་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་" "བཟུམ།\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf ་་འཐོན་རིམ་འདི་ལེན་མ་ཚུགས། debconf འདི་གཞི་བཙུགས་འབད་ཡི་ག་?" @@ -3317,17 +3325,17 @@ msgstr "སེལ་འཐུ་ཚུ་མཐུན་སྒྲིག་མི msgid "Some files are missing in the package file group `%s'" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཐུམ་སྒྲིལ་ཡིག་སྣོད་སྡེ་ཚན་`%s'ནང་བརླག་སྟོར་ཞུགས་ནུག" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "ཌི་བི་ངན་ཅན་བྱུང་ནུག་ %s.རྒསཔ་ལུ་ཡིག་སྣོད་འདི་བསྐྱར་མིང་བཏགས་ཡི།" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "ཌི་བི་འདི་རྙིངམ་ཨིན་པས་ %s་ཡར་བསྐྱེད་འབད་ནིའི་དོན་ལུ་དཔའ་བཅམ་དོ།" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3336,105 +3344,105 @@ msgstr "" "ཌི་བི་རྩ་སྒྲིག་འདི་ ནུས་མེད་ཨིན་པས། ཁྱོད་ཀྱི་ apt་ གྱི་འཐོན་རིམ་རྙིངམ་ཅིག་ནང་ལས་ ཡར་བསྐྱེད་འབད་ཡོད་" "པ་ཅིན་ རྩ་བསྐྲད་གཏང་ཞིནམ་ལས་ གནད་སྡུད་གཞི་རྟེན་འདི་ ལོག་དེ་གསར་བསྐྲུན་འབད། " -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "%s: %s་ཌི་བི་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "ཡིག་མཛོད་འདི་ལུ་ཚད་འཛིན་དྲན་ཐོ་མིན་འདུག" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "འོད་རྟགས་ལེན་མ་ཚུགས།" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "ཌབ་ལུ:%sསྣོད་ཐོ་འདི་ལྷག་མ་ཚུགས།\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "ཌབ་ལུ་ %s སིཊེཊི་འབད་མ་ཚུགས།\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "ཨི:" -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "ཌབ་ལུ:" -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "ཨི:འཛོལ་བ་ཚུ་ཡིག་སྣོད་ལུ་འཇུག་སྤྱོད་འབད།" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s་མོས་མཐུན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "རྩ་འབྲེལ་ཕྱིར་བགྲོད་འབད་ནི་ལུ་འཐུ་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "%s་འབྲེལ་ལམ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "%s་འབྲེལ་ལམ་མེད་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s་ལས་%sལུ་འབྲེལ་འཐུད་འབད་ནི་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེལ་མེད་བཅད་མཚམས།\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "ཡིག་མཛོད་ལུ་ཐུམ་སྒྲིལ་ཅི་ཡང་འཐུས་ཤོར་མ་བྱུང་།" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %sལུ་ཟུར་བཞག་ཐོ་བཀོད་མེད།\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ་རྒྱུན་སྐྱོང་པ་འདི་ %s ཨིན་ %s མེན།\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s ལུ་འབྱུང་ཁུངས་མེདཔ་གཏང་ནིའི་ཐོ་བཀོད་འདི་མེད།\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གཏང་ནིའི་་ཐོ་བཀོད་གང་རུང་ཡང་མིན་འདུག།\n" diff --git a/po/el.po b/po/el.po index fca3ef732..193a8351b 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης \n" "Language-Team: Greek \n" @@ -27,3179 +27,3192 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Άδειο cache πακέτων" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Το αρχείο cache των πακέτων είναι ασύμβατης έκδοσης" + +#: apt-pkg/pkgcache.cc:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Το αρχείο cache των πακέτων είναι κατεστραμμένο" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο." +msgid "This APT does not support the versioning system '%s'" +msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απόδοσης Έκδοσης '%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 "Δε βρέθηκαν πακέτα" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Πρέπει να δώσετε τουλάχιστον ένα μοτίβο αναζήτησης" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Εξαρτάται από" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "ΠροΕξαρτάται από" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Προτείνει" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Συστήνει" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Ασύμβατο με" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Αντικαθιστά" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Απαρχαιώνει" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Χαλάει" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "σημαντικό" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "απαιτούμενο" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "καθιερωμένο" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "προαιρετικό" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "επιπλέον" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Αδυναμία εντοπισμού του πακέτου %s" +msgid "Index file type '%s' is not supported" +msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Αρχεία Πακέτου:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +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" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου" +"Εκπληκτικό, υπερβήκατε τον αριθμό των ονομάτων πακέτων που υποστηρίζει το " +"APT." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Καθηλωμένα Πακέτα:" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT." -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(δε βρέθηκαν)" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Εγκατεστημένα: " +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Υποψήφιο: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(κανένα)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Καθήλωση Πακέτου: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Ανάγνωση Λιστών Πακέτων" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Πίνακας Έκδοσης:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n" +msgid "Unable to write to %s" +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 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -"Παρακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 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 -#, 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." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Τα ορίσματα δεν είναι σε ζεύγη" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" 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" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "απέτυχε η μετονομασία, %s (%s -> %s)." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Ανόμοιο MD5Sum" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Ανόμοιο μέγεθος" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Μη έγκυρη λειτουργία %s" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Αδύνατη η εύρεση του πακέτου %s" +#: apt-pkg/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: 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" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "το %s έχει εγκατασταθεί αυτόματα\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." +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/acquire-item.cc:1797 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" 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/acquire-item.cc:1827 +#, 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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " +"χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Ο φάκελος λιστών %spartial αγνοείται." -#. 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.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται." -#. TRANSLATOR: The required 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.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Αδύνατο το κλείδωμα του καταλόγου" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "Μεταφόρτωση Κωδικα %s\n" +msgid "Retrieving file %li of %li" +msgstr "Λήψη αρχείου %li του %li" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -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:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -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:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Πρέπει να τοποθετήσετε μερικά URI 'πηγών' στο sources.list" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\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:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Απέτυχε η εντολή χτισίματος %s.\n" +msgid "Did not understand pin type %s" +msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Η απογονική διεργασία απέτυχε" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "" +"Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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-get.cc:1054 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 option." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" +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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n" + +#: 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 "Stored label: %s\n" +msgstr "Αποθήκευση Ετικέτας: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Σάρωση του δίσκου για περιεχόμενα...\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " -"πακέτο %s" +"Βρέθηκαν %zu κατάλογοι πακέτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " +"μεταφράσεων και %zu υπογραφές\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " -"είναι νεώτερο" +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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " -"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" +"Ο δίσκος αυτός ονομάζεται: \n" +"'%s'\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Αντιγραφή λιστών πακέτων..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Eγγραφή νέας λίστας πηγών\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν έχει " -"υποψήφιαέκδοση" +"Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " +"κάποιας κατάλληλης αρχείοθήκης." + +#: 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 "Ανάγνωση περιγραφής της τρέχουσας κατάσταση" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Αποτυχία ανοίγματος του αρχείου κατάστασης %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." +msgid "Failed to write temporary StateFile %s" +msgstr "Αποτυχία εγγραφής του αρχείου κατάστασης %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog για %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Υποστηριζόμενοι Οδηγοί:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Η έκδοση %s για το %s δεν βρέθηκε" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Αδυναμία εντοπισμού του πακέτου %s" + +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" + +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " -"κωδικάτου" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" 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/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "αλλά δεν είναι εγκατεστημένο" +msgid "Unable to parse Release file %s" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +msgid "No sections in Release file %s" +msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Μη έγκυρη γραμμή στο αρχείο παρακάμψεων: %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" -#: 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/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "το %s έχει εγκατασταθεί με το χέρι\n" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Αποτυχία ανοίγματος του %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -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)" -#: 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/sourcelist.cc:190 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (URI)" -#: 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/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (dist)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Λάθος CD" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση URI)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση." +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Απόλυτο dist)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Ο δίσκος δεν βρέθηκε." +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Το αρχείο Δε Βρέθηκε" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %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:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -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/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" +#: 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 είναι άγνωστος " -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Σύνδεση στο σύστημα" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Εγκατάσταση του %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Ρύθμιση του %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Αφαιρώ το %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Το %s διαγράφηκε πλήρως" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "USER failed, server said: %s" -msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Running post-installation trigger %s" +msgstr "Εκτέλεση του post-installation trigger %s" -#: methods/ftp.cc:232 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Directory '%s' missing" +msgstr "Ο φάκελος %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/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, fuzzy, c-format +msgid "Could not open file '%s'" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" +msgid "Preparing %s" +msgstr "Προετοιμασία του %s" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:990 #, 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 "Unpacking %s" +msgstr "Ξεπακετάρισμα του %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Ο διακομιστής έκλεισε την σύνδεση" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %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/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Έγινε εγκατάσταση του %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Προετοιμασία για την αφαίρεση του %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Αλλοίωση του πρωτοκόλλου" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %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:1009 +#, c-format +msgid "Preparing to completely remove %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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Το %s διαγράφηκε πλήρως" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Απέτυχε" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Αδύνατη η εγγραφή στο %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Αδύνατη η αποστολή της εντολής PORT" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Αδύνατη η αποδοχή συνδέσεων" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Πρόβλημα κατά το hashing του αρχείου" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Λήξη χρόνου υποδοχής δεδομένων" +#: apt-pkg/deb/debsystem.cc:94 +#, fuzzy, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Αδύνατο το κλείδωμα του καταλόγου" -#: methods/ftp.cc:935 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Επερώτηση" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Αδύνατη η εκτέλεση" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/connect.cc:76 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Σύνδεση στο %s (%s)" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:87 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:94 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, 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 "%limin %lis" +msgstr "" -#: methods/connect.cc:100 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." +msgid "%lis" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" +msgid "Selection %s not found" +msgstr "Η επιλογή %s δε βρέθηκε" -#: methods/connect.cc:126 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)." +msgid "Not using locking for read only lock file %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/contrib/fileutl.cc:196 #, c-format -msgid "Connecting to %s" -msgstr "Σύνδεση στο %s" +msgid "Could not open lock file %s" +msgstr "Αδύνατο το άνοιγμα του αρχείου κλειδώματος %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Could not resolve '%s'" -msgstr "Αδύνατη η εύρεση του '%s'" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Δε θα χρησιμοποιηθεί κλείδωμα για το συναρμοσμένο από nfs αρχείο κλειδώματος " +"%s" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:224 #, 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)" - -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" - -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Αδύνατη η σύνδεση στο %s %s:" +msgid "Could not get lock %s" +msgstr "Αδύνατο το κλείδωμα %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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 "Βρέθηκε τουλάχιστον μια μη έγκυρη υπογραφή." -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Αδυναμία εκτέλεσης του '%s' για την επαλήθευση της υπογραφής (είναι " -"εγκατεστημένο το gpgv;)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" 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 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Οι παρακάτω υπογραφές δεν ήταν δυνατόν να επαληθευτούν επειδή δεν ήταν " -"διαθέσιμο το δημόσιο κλειδί:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο" +#: apt-pkg/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "" -"Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Σφάλμα εγγραφής" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Η επιλογή απέτυχε" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Λήξη χρόνου σύνδεσης" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Αναμονή επικεφαλίδων" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ελαττωματική γραμμή επικεφαλίδας" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Αποτυχία εκτέλεσης του συμπιεστή " -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Σφάλμα ανάγνωσης" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length" +#: apt-pkg/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Άγνωστη μορφή ημερομηνίας" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Πρόβλημα κατά την διαγραφή του αρχείου" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Η σύνδεση απέτυχε" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Εσωτερικό Σφάλμα" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Αδύνατη η εύρεση της κατάστασης του %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Υπολογισμός της αναβάθμισης... " +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Σφάλμα!" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Ετοιμο" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Ολοκληρώθηκε" -#: 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... Ολοκληρώθηκε" -#: 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/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Διόρθωση εξαρτήσεων..." +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " απέτυχε." +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Αδύνατη η διόρθωση των εξαρτήσεων" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Αδύνατο το άνοιγμα του %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Αδύνατη η εκτέλεση" -#: 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-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f." +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Αποτυχία εγγραφής του αρχείου %s" -#: 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: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:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Εγκατεστημένα]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -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 "" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: 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:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Εγκατεστημένα]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Μη αναγνωρισμένος τύπος σύντμησης: '%c'" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "αλλά το %s είναι εγκατεστημένο" +msgid "Opening configuration file %s" +msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "αλλά το %s πρόκειται να εγκατασταθεί" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "αλλά δεν είναι εγκαταστάσημο" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "αλλά είναι ένα εικονικό πακέτο" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "αλλά δεν είναι εγκατεστημένο" +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "αλλά δεν πρόκειται να εγκατασταθεί" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " η" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Τα ακόλουθα πακέτα έχουν ανεπίλυτες εξαρτήσεις:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Τα ακόλουθα ΝΕΑ πακέτα θα εγκατασταθούν:" +#: apt-pkg/contrib/configuration.cc:902 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Τα ακόλουθα πακέτα θα ΑΦΑΙΡΕΘΟΥΝ:" +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -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-output.cc:571 -msgid "The following packages will be upgraded:" -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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -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-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Τα ακόλουθα κρατημένα πακέτα θα αλλαχθούν:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Η επιλογή γραμμής εντολών %s δεν είναι boolean" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (λόγω του %s) " +msgid "Option %s requires an argument." +msgstr "Η επιλογή %s απαιτεί ένα όρισμα." -#: apt-private/private-output.cc:675 -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 =." msgstr "" -"ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα απαραίτητα πακέτα θα αφαιρεθούν\n" -"Αυτό ΔΕΝ θα έπρεπε να συμβεί, εκτός αν ξέρετε τι ακριβώς κάνετε!" +"Επιλογή %s: Οι προδιαγραφές του αντικειμένου ρυθμίσεων απαιτούν =." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu αναβαθμίστηκαν, %lu νέο εγκατεστημένα, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Επιλογή %s: απαιτείται ένας ακέραιος αριθμός ως όρισμα, όχι '%s'" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu επανεγκατεστημένα," +msgid "Option '%s' is too long" +msgstr "Η επιλογή '%s' έχει υπερβολικό μήκος" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu υποβαθμισμένα, " +msgid "Sense %s is not understood, try true or false." +msgstr "Η τιμή %s δεν είναι κατανοητή, δοκιμάστε σωστό (true) ή λάθος (false)." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζονται.\n" +msgid "Invalid operation %s" +msgstr "Μη έγκυρη λειτουργία %s" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, 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:740 -msgid "[Y/n]" -msgstr "[Ν/ο]" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Το πακέτο %s με έκδοση %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:746 -msgid "[y/N]" -msgstr "[ν/Ο]" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Συνολικά Ονόματα Πακέτων : " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Συνολο Δομών Πακέτου : " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Κανονικά Πακέτα: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "σφάλμα μεταγλωτισμου - %s" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Πλήρως Εικονικά Πακέτα: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Η εντολή update δεν παίρνει ορίσματα" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +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:362 +msgid " Mixed virtual packages: " +msgstr " Μικτά Εικονικά Πακέτα: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +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:365 +msgid "Total distinct versions: " +msgstr "Σύνολο Διαφορετικών Εκδόσεων: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Σύνολο Διαφορετικών Εκδόσεων: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Σύνολο Εξαρτήσεων: " -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "" -"Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη." +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Σύνολο σχέσεων Εκδ/Αρχείων: " -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages." -"debian.org" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +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:155 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB από αρχεία.\n" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +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:160 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Χρειάζεται να μεταφορτωθούν %sB από αρχεία.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +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:167 -#, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "" -"Μετά από αυτή τη λειτουργία, θα χρησιμοποιηθούν %sB χώρου από το δίσκο.\n" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +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:172 -#, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Συνολικός Καταμετρημένος Χώρος: " -#: apt-private/private-install.cc:200 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." +msgid "Package file %s is out of sync." +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" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +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 "Ναι, κανε ότι λέω!" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +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" -" ?] " +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Αρχεία Πακέτου:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Πρόκειται να κάνετε κάτι πιθανόν πολύ επιζήμιο.\n" -"Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" -" ?] " +"Η cache δεν είναι ενημερωμένη, αδυναμία παραπομπής σε ένα αρχείο πακέτου" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Εγκατάλειψη." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Καθηλωμένα Πακέτα:" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Θέλετε να συνεχίσετε;" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(δε βρέθηκαν)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Εγκατεστημένα: " -#: 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;" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Υποψήφιο: " -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "" -"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(κανένα)" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Καθήλωση Πακέτου: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Εγκατάλειψη της εγκατάστασης." +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +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] "" +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: cmdline/apt-cache.cc:1801 +#, 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-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" +"Παρακαλώ δώστε ένα όνομα για αυτόν τον δίσκο, όπως 'Debian 5.0.3 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 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Αποτυχία σύνδεσης του %s σε %s" -#: apt-private/private-install.cc:499 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -"Φαίνεται πως το AutoRemover κατέστρεψε κάτι ενώ δεν θα έπρεπε. Παρακαλείστε " -"να υποβάλλετε αναφορά σφάλματος για το 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:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Τα ορίσματα δεν είναι σε ζεύγη" -#: apt-private/private-install.cc:513 +#: cmdline/apt-config.cc:89 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-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/private-install.cc:517 +#: cmdline/apt-get.cc:245 #, 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 τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" +msgid "Can not find a package for architecture '%s'" +msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: 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' για να τα διαγράψετε." +#: 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:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" +#: 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:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" + +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" msgstr "" -"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " -"πακέτο (ή καθορίστε μια λύση)." -#: apt-private/private-install.cc:638 +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Αδύνατη η εύρεση του πακέτου %s" + +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" + +#: 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 "" -"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." +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." msgstr "" -"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n" -"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n" -"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" -"μετακινηθεί από τα εισερχόμενα." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Χαλασμένα πακέτα" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "" +"Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " +"υλικό" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Προτεινόμενα πακέτα:" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " +"κωδικάτου" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Συνιστώμενα πακέτα:" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" -#: apt-private/private-install.cc:825 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" -#: apt-private/private-install.cc:829 +#: cmdline/apt-get.cc:791 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Παράκαμψη του %s, είναι εγκατεστημένο και μόνο αναβαθμίσεις έχουν οριστεί.\n" -#: apt-private/private-install.cc:841 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" -"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " -"του\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "%s is already the newest version.\n" -msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" +msgid "Couldn't determine free space in %s" +msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" -#: apt-private/private-install.cc:894 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s\n" +msgid "You don't have enough free space in %s" +msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" -#: apt-private/private-install.cc:899 +#. 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:893 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Επιλέχθηκε η έκδοση %s (%s) για το %s λόγω του %s\n" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί. Εννοείτε '%s'?\n" +msgid "Need to get %sB of source archives.\n" +msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" -#: apt-private/private-install.cc:947 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" +msgid "Fetch source %s\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 "" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν" +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση;" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Αποτυχία ανάκτησης του %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Απέτυχε η εντολή χτισίματος %s.\n" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Αποτυχία μετονομασίας του %s σε %s" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Η απογονική διεργασία απέτυχε" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" msgstr "" +"Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:1056 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Hit " - -#: 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 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Μεταφορτώθηκαν %sB σε %s (%sB/s)\n" +msgid "Unable to get build-dependency information for %s" +msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:1126 #, c-format -msgid " [Working]" -msgstr " [Επεξεργασία]" +msgid "%s has no build depends.\n" +msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:1296 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" 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" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " +"πακέτο %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:1314 #, c-format -msgid "No mirror file '%s' found " +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" msgstr "" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#. 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" - -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:1337 #, 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 για συνέχεια." - -#: 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 "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα " - -#: 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" +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:1376 +#, 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]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 -#, 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 "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του" - -#: 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" +"%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " +"εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Failed to close file %s" -msgstr "Αποτυχία στο κλείσιμο του αρχείου %s" +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:1405 #, 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:1420 #, 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 "Η αρχειοθήκη είναι πολύ μικρή" - -#: 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 "Κατεστραμμένη αρχειοθήκη" +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:1425 +msgid "Failed to process build dependencies" +msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, 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:1616 +msgid "Supported modules:" +msgstr "Υποστηριζόμενοι Οδηγοί:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +#, 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:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" 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: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-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:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "αλλά δεν είναι εγκατεστημένο" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:76 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Ανόμοιο MD5Sum" +msgid "%s was already set to automatically 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:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:243 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" +msgid "%s was already not 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:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on 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' και πατήστε " -"enter." +#: 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:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Αδύνατο το άνοιγμα ή η ανάλυση των λιστών πακέτων ή του αρχείου κατάστασης." -#: 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 "Άδειο cache πακέτων" -#: 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.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'" +msgid "Unable to read the cdrom database %s" +msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -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:321 -msgid "Depends" -msgstr "Εξαρτάται από" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Λάθος CD" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -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:321 -msgid "Suggests" -msgstr "Προτείνει" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Ο δίσκος δεν βρέθηκε." -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Συστήνει" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Το αρχείο Δε Βρέθηκε" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -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:322 -msgid "Replaces" -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 "Obsoletes" -msgstr "Απαρχαιώνει" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" -#: 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 "Σύνδεση στο σύστημα" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "σημαντικό" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -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:334 -msgid "standard" -msgstr "καθιερωμένο" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "προαιρετικό" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -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/pkgrecords.cc:38 +#: methods/ftp.cc:280 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" +msgid "Login script command '%s' failed, server said: %s" +msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %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 "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +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:350 +msgid "Server closed the connection" +msgstr "Ο διακομιστής έκλεισε την σύνδεση" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions 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:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Αλλοίωση του πρωτοκόλλου" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "" -"Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Αδύνατη η δημιουργία μιας υποδοχής (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:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +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:718 +msgid "Could not connect passive socket." +msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Συλλογή Παροχών Αρχείου" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Αδύνατη η εγγραφή στο %s" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Αδύνατη η αποστολή της εντολής PORT" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +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)." +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Αδύνατη η αποδοχή συνδέσεων" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Ανόμοιο MD5Sum" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Πρόβλημα κατά το hashing του αρχείου" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Ανόμοιο μέγεθος" +#: methods/ftp.cc:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Μη έγκυρη λειτουργία %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Λήξη χρόνου υποδοχής δεδομένων" -#: 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 "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" +#. 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:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" +#: methods/connect.cc:76 +#, c-format +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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Αποπροσάρτηση του CD-ROM...\n" +#: 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 "Προσάρτηση του CD-ROM...\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 -#, 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: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 -#, 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 έστειλε μια άκυρη επικεφαλίδα Content-Length" -#: 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 έστειλε μια άκυρη επικεφαλίδα Content-Range" -#: 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 δεν υποστηρίζει πλήρως το range" -#: 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 "Eγγραφή νέας λίστας πηγών\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Η σύνδεση απέτυχε" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, c-format msgid "" -"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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " -"προκλήθηκε από κρατούμενα πακέτα." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." +#: methods/server.cc:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:233 #, 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Εγκατεστημένα]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: 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 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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:612 +msgid "The following held packages will be changed:" +msgstr "Τα ακόλουθα κρατημένα πακέτα θα αλλαχθούν:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, c-format -msgid "Opening %s" -msgstr "Άνοιγμα του %s" +msgid "%lu downgraded, " +msgstr "%lu υποβαθμισμένα, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, 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:718 #, 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:740 +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:746 +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:757 +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:763 +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 "Εκτέλεση του 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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Ναι, κανε ότι λέω!" + +#: apt-private/private-install.cc:224 +#, 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:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Εγκατάλειψη." + +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Θέλετε να συνεχίσετε;" + +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" + +#: apt-private/private-install.cc:322 +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:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" +"ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Εγκατάλειψη της εγκατάστασης." + +#: apt-private/private-install.cc:368 +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:372 +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:393 +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:501 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 κατέστρεψε κάτι ενώ δεν θα έπρεπε. Παρακαλείστε " +"να υποβάλλετε αναφορά σφάλματος για το 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:515 msgid "" -"No apport report written because the error message indicates a disk full " -"error" -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-private/private-install.cc:519 +#, 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 τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: 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:521 +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/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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " +"πακέτο (ή καθορίστε μια λύση)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"Μερικά πακέτα είναι αδύνατον να εγκατασταθούν. Αυτό μπορεί να σημαίνει ότι\n" +"δημιουργήσατε μια απίθανη κατάσταση ή αν χρησιμοποιείτε την ασταθή\n" +"διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" +"μετακινηθεί από τα εισερχόμενα." -#: 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:661 +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 "" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested 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 "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Συνιστώμενα πακέτα:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, c-format -msgid "%lis" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" +"Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " +"του\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +msgid "Ign " +msgstr "Αγνόησε " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Αποτυχία δημιουργίας IPC στην υποδιεργασία" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Σφάλμα " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Αποτυχία εκτέλεσης του συμπιεστή " +#: apt-private/acqprogress.cc:147 +#, 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:237 +#, 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:298 +#, 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... Ολοκληρώθηκε" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Αποτυχία κατά τη δημιουργία διασωλήνωσης IPC στην υποδιεργασία" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Η σύνδεση έκλεισε πρόωρα" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" +#: 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 "Πιέστε enter για συνέχεια." -#: 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 "Επιθυμείτε τη διαγραφή ήδη μεταφορτωμένων αρχείων .deb;" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" +#: 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]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:184 #, 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 =." -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 δεν είναι κατανοητή, δοκιμάστε σωστό (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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3223,12 +3236,7 @@ msgstr "" " -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" " -o=? Καθορισμός αυθαίρετης επιλογής παραμέτρου, πχ -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Αδύνατη η εύρεση της κατάστασης του %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Δεν βρέθηκε η έκδοση του debconf. Είναι το debconf εγκατεστημένο;" @@ -3349,17 +3357,17 @@ msgstr "Δεν ταιριαξε καμία επιλογή" msgid "Some files are missing in the package file group `%s'" msgstr "Λείπουν μερικά αρχεία από την ομάδα πακέτων '%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Η βάση είναι κατεστραμμένη, το αρχείο μετονομάστηκε σε %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Η βάση δεν είναι ενημερωμένη, γίνεται προσπάθεια να αναβαθμιστεί το %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3368,105 +3376,105 @@ msgstr "" "Το φορμά της βάσης δεν είναι έγκυρο. Εάν αναβαθμίσατε το apt σε νεότερη " "έκδοση, παρακαλώ αφαιρέστε και δημιουργήστε τη βάση εκ νέου." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Το άνοιγμά του αρχείου της βάσης %s: %s απέτυχε" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Αποτυχία ανάγνωσης του %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Η αρχειοθήκη δεν περιέχει πεδίο ελέγχου" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Αδύνατη η πρόσβαση σε δείκτη" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Αδύνατη η ανάγνωση του καταλόγου %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Αδύνατη η εύρεση της κατάστασης του %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Σφάλματα στο αρχείο" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Αδύνατη η εύρεση του %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Αποτυχία ανεύρεσης" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Αποτυχία ανοίγματος του %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "Αποσύνδεση %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Αποτυχία ανάγνωσης του %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Αποτυχία αποσύνδεσης του %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr " Αποτυχία σύνδεσης του %s με το %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Αποσύνδεση ορίου του %sB hit.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Η αρχειοθήκη δεν περιέχει πεδίο πακέτων" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s συντηρητής είναι ο %s όχι ο %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s δεν έχει εγγραφή πηγαίας παράκαμψης\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s δεν έχει ούτε εγγραφή δυαδικής παράκαμψης\n" diff --git a/po/es.po b/po/es.po index ffb43aeba..10a5afcb8 100644 --- a/po/es.po +++ b/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" @@ -72,3245 +72,3258 @@ msgstr "" "X-POFile-SpellExtra: autoclean showsrc desactualizados clean gzip TYPE\n" "X-POFile-SpellExtra: sinfo Acquire\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Caché de paquetes vacía." + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "El archivo de caché de paquetes está dañado" + +#: apt-pkg/pkgcache.cc:161 +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:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "El archivo de caché de paquetes está dañado" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "El archivo de paquetes %s está desincronizado." +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: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/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "La caché de paquetes se había creado para una arquitectura diferente" -#: 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:324 +msgid "Depends" +msgstr "Depende" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "PreDepende" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Sugiere" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomienda" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Entra en conflicto" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Reemplaza" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Hace obsoleto" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Rompe" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Mejora" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "requiere" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "estándar" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "No se ha podido localizar el paquete %s" +msgid "Index file type '%s' is not supported" +msgstr "No se da soporte para el tipo de archivo de índice «%s»" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Archivos de paquetes:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error de compilación de expresiones regulares - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "La caché tiene una versión incompatible de sistema de versiones" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Se produjo un error mientras se procesaba %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" +"Vaya, excedió el número de nombres de paquetes que este APT es capaz de " +"manejar." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes con pin:" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(no encontrado)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instalados: " +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ninguno)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "No se puede leer la lista de paquetes fuente %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pin del paquete: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Leyendo lista de paquetes" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabla de versión:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Recogiendo archivos que proveen" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado en %s %s\n" +msgid "Unable to write to %s" +msgstr "No se puede escribir en %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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +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 "" -"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" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "No se pudo montar «%s» como «%s»" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: 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/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "falló el cambio de nombre, %s (%s -> %s)." -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos no emparejados" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "La suma hash difiere" -#: cmdline/apt-config.cc:89 +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "El tamaño difiere" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación inválida: %s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format 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" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" 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" - -#: 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»" -#: cmdline/apt-get.cc:327 +#: apt-pkg/acquire-item.cc:1697 #, 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»" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "No se pudo leer el archivo «Release» %s" -#: 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/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" - -#: 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»" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Couldn't find package %s" -msgstr "No se pudo encontrar el paquete %s" +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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to manually installed.\n" -msgstr "fijado %s como instalado manualmente.\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:461 cmdline/apt-mark.cc:83 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "fijado %s como instalado automáticamente.\n" +msgid "GPG error: %s: %s" +msgstr "Error de GPG: %s: %s" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1972 +#, c-format 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" +"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 "" -"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" - -#: 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" +"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:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Unable to find a source package for %s" -msgstr "No se pudo encontrar un paquete de fuentes para %s" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"NOTA: el empaquetamiento de «%s» se mantiene en el sistema de control de " -"versiones «%s» en:\n" -"%s\n" +"Los archivos de índice de paquetes están dañados. No existe un campo " +"«Filename:» para el paquete %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/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Bloque de fabricante %s sin huella digital" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Omitiendo el fichero ya descargado «%s»\n" +msgid "List directory %spartial is missing." +msgstr "Falta el directorio de listas %spartial." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "No pude determinar el espacio libre en %s" +msgid "Archives directory %spartial is missing." +msgstr "Falta el directorio de archivos %spartial." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "You don't have enough free space in %s" -msgstr "No tiene suficiente espacio libre en %s" +msgid "Unable to lock directory %s" +msgstr "No se pudo bloquear el directorio %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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Descargando fichero %li de %li (falta %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.cc:927 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Necesito descargar %sB de archivos fuente.\n" +msgid "Retrieving file %li of %li" +msgstr "Descargando fichero %li de %li" -#: cmdline/apt-get.cc:902 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Fetch source %s\n" -msgstr "Fuente obtenida %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "No se pudieron obtener algunos archivos." +msgid "Failed to fetch %s %s\n" +msgstr "Imposible obtener %s %s\n" -#: 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-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." -#: 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-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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Falló la orden de desempaquetamiento «%s».\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:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Falló la orden de construcción «%s».\n" +msgid "Did not understand pin type %s" +msgstr "No se entiende el pin tipo %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Falló el proceso hijo" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "No hay prioridad especificada para pin (o es cero)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Debe especificar al menos un paquete para verificar sus dependencias de " -"construcció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)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "No pude abrir el fichero «%s»" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "Línea %u demasiado larga en la lista de fuentes %s." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando el CD-ROM...\n" + +#: 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" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Esperando el disco...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando el CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s no tiene dependencias de construcción.\n" +msgid "Stored label: %s\n" +msgstr "Etiqueta guardada: %s \n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando en el disco archivos de índices...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +"Se encontraron %zu índices de paquetes, %zu índices de fuentes, %zu índices " +"de traducción y %zu firmas\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +"No pude localizar ningún archivo de paquete, ¿quizás este no sea un disco de " +"Debian o sea de otra arquitectura?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Se encontró la etiqueta: «%s»\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" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es " -"demasiado nuevo" +"Este disco se llama: \n" +"«%s»\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando las listas de paquetes..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribiendo nueva lista de fuente\n" + +#: 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" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"La dependencia %s en %s no puede satisfacerse porque ninguna versión " -"disponible del paquete %s satisface los requisitos de versión" +"El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " +"éste." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " -"el paquete %s" +"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " +"causado por paquetes retenidos." -#: cmdline/apt-get.cc:1380 +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Creando árbol de dependencias" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiones candidatas" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generación de dependencias" + +#: 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-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "No se pudo satisfacer la dependencia %s para %s: %s" +msgid "Failed to open StateFile %s" +msgstr "No se pudo abrir el fichero de estado %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "No se pudieron satisfacer las dependencias de construcción de %s." +msgid "Failed to write temporary StateFile %s" +msgstr "Falló la escritura del fichero de estado temporal %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "No se pudieron procesar las dependencias de construcción" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "No se pudo tratar el archivo de paquetes %s (1)" -#: 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/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "No se pudo tratar el archivo de paquetes %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos soportados:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "No se encontró la Distribución «%s» para «%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 "" -"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/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "No se encontró la versión «%s» para «%s»" -#: 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/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "No se ha podido localizar el paquete %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "No se pudo encontrar la tarea «%s»" + +#: apt-pkg/cacheset.cc:610 +#, 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-pkg/cacheset.cc:616 +#, 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»" + +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"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" -#: 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/cacheset.cc:648 +#, 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" -#: 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/cacheset.cc:656 +#, c-format +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" -#: 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/cacheset.cc:664 +#, c-format +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" -#: 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/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "No se pudo leer el archivo «Release» %s" -#: 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/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "No se encontraron secciones en el archivo «Release» %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/indexrecords.cc:136 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Esperaba %s pero no estaba allí" +msgid "No Hash entry in Release file %s" +msgstr "No existe una entrada «Hash» en el archivo «Release» %s" -#: 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/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada «Date» inválida en el archivo «Release» %s" + +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "No se pudo abrir %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)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: 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)" -#: 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/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)" -#: 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/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)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, 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" +msgid "Malformed line %lu in source list %s ([%s] has no key)" 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" +"Línea %lu mal formada en la lista de fuentes %s (no hay clave para [%s])" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:193 #, 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" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Línea %lu mal formada en la lista de fuentes %s ([%s] la clave %s no tiene " +"asociado un valor)" -#: 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 "El servidor rechazó nuestra conexión y dijo: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (URI)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "USER failed, server said: %s" -msgstr "Usuario (USER) falló, el servidor dijo: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (dist)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Clave (PASS) falló, el servidor dijo: %s" - -#: 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." +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/ftp.cc:280 +#: apt-pkg/sourcelist.cc:217 #, 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 "Malformed line %lu in source list %s (absolute dist)" +msgstr "Línea %lu mal formada en la lista de fuentes %s (dist absoluta)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, 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 -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 "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/ftp.cc:802 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Dirección de familia %u desconocida (AF_*)" +msgid "Opening %s" +msgstr "Abriendo %s" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falló, el servidor dijo: %s" +msgid "Malformed line %u in source list %s (type)" +msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Expiró conexión a socket de datos" +#: 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/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "No pude aceptar la conexión" +#: 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/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/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalando %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 "Imposible traer archivo, el servidor dijo «%s»" +msgid "Configuring %s" +msgstr "Configurando %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Expiró el socket de datos" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Eliminando %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Falló transferencia de datos, el servidor dijo «%s»" +msgid "Completely removing %s" +msgstr "Borrando completamente %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Consulta" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Se detectó la desaparición de %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "No pude invocar " +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Ejecutando disparador post-instalación %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 "Conectando a %s (%s)" +msgid "Directory '%s' missing" +msgstr "Falta el directorio «%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 "No pude abrir el fichero «%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 "No pude crear un socket para %s (f=%u t=%u p=%u)" +msgid "Preparing %s" +msgstr "Preparando %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "No puedo iniciar la conexión a %s:%s (%s)." +msgid "Unpacking %s" +msgstr "Desempaquetando %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 "No pude conectarme a %s:%s (%s), expiró tiempo para conexión" +msgid "Preparing to configure %s" +msgstr "Preparándose para configurar %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "No pude conectarme a %s:%s (%s)." +msgid "Installed %s" +msgstr "%s instalado" -#. 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 "Conectando a %s" +msgid "Preparing for removal of %s" +msgstr "Preparándose para eliminar %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Could not resolve '%s'" -msgstr "No se pudo resolver «%s»" +msgid "Removed %s" +msgstr "%s eliminado" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Fallo temporal al resolver «%s»" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" - -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" +msgid "Preparing to completely remove %s" +msgstr "Preparándose para eliminar completamente %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "No se pudo conectar a %s:%s:" +msgid "Completely removed %s" +msgstr "Se borró completamente %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" 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." +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "No se puede escribir en %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -"No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Esperaba %s pero no estaba allí" + +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Error desconocido ejecutando gpgv" +#: apt-pkg/deb/dpkgpm.cc:1625 +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»" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Las siguientes firms fueron inválidas:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependencias - dejando sin instalar" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" -"Las firmas siguientes no se pudieron verificar porque su llave pública no " -"está disponible:\n" +"No se escribió un informe «apport» porque el mensaje de error indica que es " +"un mensaje de error asociado a un fallo previo." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1638 +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" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Error escribiendo al archivo" - -#: 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/deb/dpkgpm.cc:1645 +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" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Error leyendo del servidor" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +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" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Error escribiendo a archivo" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Falló la selección" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +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?" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Expiró la conexión" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "No se encontró un archivo de réplica «%s»" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Error escribiendo al archivo de salida" +#. 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" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Esperando las cabeceras" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "No bloqueado" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Mala línea de cabecera" +#. 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." -#: 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" +#. 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." -#: 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" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin. %liseg." -#: 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" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liseg." -#: 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/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Selección %s no encontrada" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de fecha desconocido" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Mala cabecera Data" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "No se pudo abrir el fichero de bloqueo «%s»" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Fallo la conexión" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Error interno" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "No se pudo bloquear %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando la actualización... " +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Listo" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:413 +#, 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:422 +#, 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:841 #, 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 "El subproceso %s recibió un fallo de segmentación." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrigiendo dependencias..." +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "El subproceso %s recibió la señal %u." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falló." +#: apt-pkg/contrib/fileutl.cc:847 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "No se puede corregir las dependencias" +#: apt-pkg/contrib/fileutl.cc:849 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "No se puede minimizar el conjunto de actualización" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Error de escritura" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Listo" - -#: 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/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Se produjo un problema al cerrar el fichero gzip %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "No pude abrir el fichero %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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "No se pudo abrir el descriptor de fichero %d" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "No se pudo crear el subproceso IPC" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "No se pudo ejecutar el compresor " -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Error de lectura" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Problem closing the file %s" +msgstr "Se produjo un problema al cerrar el fichero %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "pero %s está instalado" +msgid "Problem renaming the file %s to %s" +msgstr "Se produjo un problema al renombrar el fichero %s a %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "pero %s va a ser instalado" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "pero no es instalable" +msgid "Problem unlinking the file %s" +msgstr "Se produjo un problema al desligar el fichero %s" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "pero es un paquete virtual" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Se produjo un problema al sincronizar el fichero" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "pero no está instalado" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "No pude leer %s" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "pero no va a instalarse" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ¡Error!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Hecho" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Los siguientes paquetes tienen dependencias incumplidas:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Se instalarán los siguientes paquetes NUEVOS:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hecho" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Los siguientes paquetes se ELIMINARÁN:" +#: 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-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Los siguientes paquetes se han retenido:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "No pude duplicar el descriptor de fichero %i" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Se actualizarán los siguientes paquetes:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "No se pudo cerrar «mmap»" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Se cambiarán los siguientes paquetes retenidos:" +#: 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-output.cc:667 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por %s) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "No pude hacer mmap de %lu bytes" -#: apt-private/private-output.cc:675 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falló al truncar el archivo" + +#: 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 "" -"AVISO: Se van a eliminar los siguientes paquetes esenciales.\n" -"¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!" +"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-output.cc:706 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu actualizados, %lu se instalarán, " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"No se pudo incrementar el tamaño del MMap dado que se ha alcanzado ya el " +"límite de %lu bytes." -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"No se pudo incrementar el tamaño de MMap dado que el usuario ha " +"deshabilitado el crecimiento automático." -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "%lu desactualizados, " +msgid "Unable to stat the mount point %s" +msgstr "No se puede obtener información del punto de montaje %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "No pude montar el cdrom" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu para eliminar y %lu no actualizados.\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tipo de abreviación no reconocida: «%c»" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu no instalados del todo o eliminados.\n" +msgid "Opening configuration file %s" +msgstr "Abriendo fichero de configuración %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:740 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/configuration.cc:803 +#, 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." -#. 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:746 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Error de sintaxis %s:%u: Marca mal formada" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Error de sintaxis %s:%u: Basura extra después del valor" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Error de compilación de expresiones regulares - %s" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "El comando de actualización no toma argumentos" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Error de sintaxis %s:%u: Incluido desde aquí" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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: Extra junk at end of file" +msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" -#: 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 "No se instaló ningún anillo de claves %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/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:91 -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/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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Error interno, no terminó la ordenación" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +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: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/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 argumento." -#. 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Se necesita descargar %sB/%sB de archivos.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"Opción %s: La especificación del elemento de configuración debe tener un " +"=." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Necesito descargar %sB de archivos.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "La opción %s exige un argumento entero, no «%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "Opción «%s» demasiado larga" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, 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 "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:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "No tiene suficiente espacio libre en %s." +msgid "Invalid operation %s" +msgstr "Operación inválida: %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 "Hay problemas y se utilizó -y sin --force-yes" +#: 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: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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Nombres de paquetes totales: " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Estructuras de paquetes totales: " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Paquetes normales: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortado." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuales puros: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "¿Desea continuar?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Paquetes virtuales únicos: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "No se pudieron descargar algunos archivos" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuales mixtos: " -#: 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?" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Faltan: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Versiones diferentes totales: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "No se pudieron corregir los paquetes que faltan." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Descripciones diferentes totales: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abortando la instalación." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Dependencias totales: " -#: 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 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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Relaciones versión/archivo totales: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Relaciones descripción/archivo totales: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Mapeo Total de Provisiones: " -#: 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 "" -"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. " -"Por favor, envíe un informe de fallo al programa apt." +# globbed -> globalizadas ? (jfs) +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Cadenas globalizadas totales: " -#. -#. 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:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Espacio de versión de dependencias total: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error interno, «AutoRemover» rompió cosas" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Espacio desperdiciado total: " -#: 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] "" -"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." +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Espacio registrado total: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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] "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 "Package file %s is out of sync." +msgstr "El archivo de paquetes %s está desincronizado." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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/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:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Debe proporcionar al menos un patrón de búsqueda" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " -"especifique una solución)." -#: 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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Archivos de paquetes:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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." +"Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquetes rotos" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Paquetes con pin:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Se instalarán los siguientes paquetes extras:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(no encontrado)" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquetes sugeridos:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalados: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquetes recomendados:" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ninguno)" -#: apt-private/private-install.cc:829 +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Pin del paquete: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabla de versión:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado en %s %s\n" + +#: cmdline/apt-cache.cc:1801 +#, 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 "" -"Ignorando %s, no está instalado y sólo se están solicitando " -"actualizaciones.\n" +"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-private/private-install.cc:841 -#, 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" +#: 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-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ya está en su versión más reciente.\n" +#: 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-private/private-install.cc:894 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +msgid "Failed to mount '%s' to '%s'" +msgstr "No se pudo montar «%s» como «%s»" -#: 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" +#: 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 "" -#. 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" +#: 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-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" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos no emparejados" -#: apt-private/private-main.cc:32 +#: cmdline/apt-config.cc:89 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-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 "" -"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-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: ¡No se han podido autenticar los siguientes paquetes!" +"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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticación ignorado.\n" +#: 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-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-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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "¿Instalar estos paquetes sin verificación?" +#: 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-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Imposible obtener %s %s\n" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "No pude abrir %s.new" +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorar la versión no disponible «%s» del paquete «%s»" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Couldn't find package %s" +msgstr "No se pudo encontrar el paquete %s" + +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "fijado %s como instalado manualmente.\n" + +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "fijado %s como instalado automáticamente.\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 "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Obj " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Des:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: 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-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Descargados %sB en %s (%sB/s)\n" +msgid "Unable to find a source package for %s" +msgstr "No se pudo encontrar un paquete de fuentes para %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:786 #, c-format -msgid " [Working]" -msgstr " [Trabajando]" +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-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Cambio de medio: Por favor, inserte el disco etiquetado como\n" -" «%s»\n" -"en la unidad «%s» y pulse Intro\n" +"Por favor, utilice:\n" +"bzr get %s\n" +"para obtener las últimas actualizaciones (posiblemente no publicadas aún) " +"del paquete.\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:839 #, c-format -msgid "Unable to read %s" -msgstr "No pude leer %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Omitiendo el fichero ya descargado «%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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to change to %s" -msgstr "No se pudo cambiar a %s" +msgid "Couldn't determine free space in %s" +msgstr "No pude determinar el espacio libre en %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:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "No se encontró un archivo de réplica «%s»" +msgid "You don't have enough free space in %s" +msgstr "No tiene suficiente espacio libre en %s" -#. 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»" +#. 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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" -#: 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»" +#. TRANSLATOR: The required 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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Necesito descargar %sB de archivos fuente.\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:904 #, c-format -msgid "[Mirror: %s]" -msgstr "[Réplica: %s]" +msgid "Fetch source %s\n" +msgstr "Fuente obtenida %s\n" -#: 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-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "No se pudieron obtener algunos archivos." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "La conexión se cerró prematuramente" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Descarga completa y en modo de sólo descarga" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "¡Parámetro por omisión incorrecto!" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %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 "Pulse Intro para continuar." +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Falló la orden de desempaquetamiento «%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-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que " -"se instalaron" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Falló la orden de construcción «%s».\n" -#: 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-get.cc:1012 +msgid "Child process failed" +msgstr "Falló el proceso hijo" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"o errores causados por dependencias no presentes. Esto está BIEN, sólo los " -"errores" +"Debe especificar al menos un paquete para verificar sus dependencias de " +"construcción" -#: dselect/install:105 +#: cmdline/apt-get.cc:1056 +#, c-format 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 "" -"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" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Error interno en AddDiversion" - -#: 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" - -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doble suma de desviación %s -> %s" +msgid "Unable to get build-dependency information for %s" +msgstr "No se pudo obtener información de dependencias de construcción para %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Archivo de configuración duplicado %s/%s" +msgid "%s has no build depends.\n" +msgstr "%s no tiene dependencias de construcción.\n" -#: 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:1296 +#, 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-inst/extract.cc:132 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s más de una vez" +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-inst/extract.cc:142 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "The directory %s is diverted" -msgstr "El directorio %s está desviado" +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-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:1376 +#, 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-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" +#: cmdline/apt-get.cc:1382 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"La dependencia %s en %s no puede satisfacerse porque no se puede 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:1405 #, c-format -msgid "Failed to stat %s" -msgstr "No pude leer %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "No se pudo satisfacer la dependencia %s para %s: %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falló el renombre de %s a %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "No se pudieron satisfacer las dependencias de construcción de %s." -#: 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:1425 +msgid "Failed to process build dependencies" +msgstr "No se pudieron procesar las dependencias de construcción" -#: 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:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectando a %s (%s)" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "La trayectoria es muy larga" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Módulos soportados:" -#: 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" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "No pude leer %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 "Falló la escritura del archivo %s" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "No pude cerrar el archivo %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 "Este no es un archivo DEB válido, falta el miembro «%s»" - -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" -msgstr "Error interno, no pude localizar el miembro %s" +#: cmdline/apt-get.cc:1657 +#, 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-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Archivo de control inanalizable" +#: 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-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Firma del archivo inválida" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Error leyendo la cabecera de miembro del archivo" +#: 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:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabecera de miembro del archivo inválida %s" +#: 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-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabecera de miembro del archivo inválida" +#: 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-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "El archivo es muy pequeño" +#: 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-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "No pude leer las cabeceras del archivo" +#: 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-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "No pude crear las tuberías" +#: 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-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "No pude ejecutar gzip" +#: 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-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archivo dañado" +#: 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-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" 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 "Unknown TAR header type %u, member %s" -msgstr "Cabecera del TAR tipo %u desconocida, miembro %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "No se pudo leer %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: 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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Ejecutando dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "No está soportado el sistema de paquetes «%s»" - -#: 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" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i registros escritos.\n" - -#: 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" - -#: 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" - -#: 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.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 "" -"%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n" - -#: 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" -#: apt-pkg/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "La suma hash difiere para: %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." - -#: 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" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "El método %s no se inició correctamente" - -#: 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 "Por favor, inserte el disco «%s» en la unidad «%s» y pulse Intro." +msgid "Unable to read the cdrom database %s" +msgstr "No pude leer la base de datos %s del cdrom" -#: 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 "" -"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." - -#: 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" +"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:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "El archivo de caché de paquetes está dañado" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD equivocado" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, 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»" - -#: 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" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepende" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugiere" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomienda" +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:322 -msgid "Conflicts" -msgstr "Entra en conflicto" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco no encontrado." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Reemplaza" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fichero no encontrado" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Hace obsoleto" +#: 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:323 -msgid "Breaks" -msgstr "Rompe" +#: 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:323 -msgid "Enhances" -msgstr "Mejora" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Entrando" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requiere" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "No pude determinar el nombre del par" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Imposible determinar el nombre local" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: 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/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Usuario (USER) falló, el servidor dijo: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "No se da soporte para el tipo de archivo de índice «%s»" +msgid "PASS failed, server said: %s" +msgstr "Clave (PASS) falló, el servidor dijo: %s" -#: 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: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." -#. 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:280 +#, c-format +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: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:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "Tipo (TYPE) falló, el servidor 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: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: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:350 +msgid "Server closed the connection" +msgstr "El servidor cerró la conexión" -#: 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." +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "No pude crear un socket." -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Fallo del protocolo" -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "No se puede leer la lista de paquetes fuente %s" +#: 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/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: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/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Recogiendo archivos que proveen" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falló" -#: 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:718 +msgid "Could not connect passive socket." +msgstr "No pude conectar un socket pasivo." -#: 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:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo no pude obtener un socket oyente" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "No pude ligar un socket" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "No pude escuchar en el socket" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "No pude determinar el nombre del socket" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "No pude mandar la orden PORT" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Dirección de familia %u desconocida (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 "falló el cambio de nombre, %s (%s -> %s)." +msgid "EPRT failed, server said: %s" +msgstr "EPRT falló, el servidor dijo: %s" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "La suma hash difiere" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Expiró conexión a socket de datos" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "El tamaño difiere" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "No pude aceptar la conexión" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación inválida: %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: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 "No se pudo leer el archivo «Release» %s" +msgid "Unable to fetch file, server said '%s'" +msgstr "Imposible traer archivo, 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:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Expiró el socket de datos" -#: 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 "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:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" +msgid "Connecting to %s (%s)" +msgstr "Conectando 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 "" -"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 "[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 "Error de GPG: %s: %s" +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-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 "" -"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 "Cannot initiate the connection to %s:%s (%s)." +msgstr "No puedo iniciar la conexión 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 "" +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-item.cc:1991 +#: methods/connect.cc:126 #, 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 "Could not connect to %s:%s (%s)." +msgstr "No pude conectarme 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 "Bloque de fabricante %s sin huella digital" +msgid "Connecting to %s" +msgstr "Conectando a %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 "Falta el directorio de listas %spartial." +msgid "Could not resolve '%s'" +msgstr "No se pudo resolver «%s»" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta el directorio de archivos %spartial." +msgid "Temporary failure resolving '%s'" +msgstr "Fallo temporal al resolver «%s»" -#: apt-pkg/acquire.cc:99 -#, c-format -msgid "Unable to lock directory %s" -msgstr "No se pudo bloquear el directorio %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo raro pasó al resolver «%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 "Descargando fichero %li de %li (falta %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Descargando fichero %li de %li" +msgid "Unable to connect to %s:%s:" +msgstr "No se pudo conectar 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 "" -"No se han podido descargar algunos archivos de índice, se han ignorado, o se " -"ha utilizado unos antiguos en su lugar." +"Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella " +"digital?!" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Se encontró al menos una firma 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 "" +"No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado 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 "" -"Registro inválido en el archivo de preferencias %s, no hay cabecera «Package»" -#: 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:184 +msgid "Unknown error executing gpgv" +msgstr "Error desconocido ejecutando gpgv" -#: 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:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Las siguientes firms fueron 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 "" -"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»" +"Las firmas siguientes no se pudieron verificar porque su llave pública no " +"está disponible:\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 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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Error escribiendo al archivo" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando el CD-ROM...\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: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:525 +msgid "Error reading from server" +msgstr "Error leyendo del servidor" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Esperando el disco...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Error escribiendo a archivo" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando el CD-ROM...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Falló la selección" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Expiró la conexió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 "Error escribiendo al archivo de salida" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando en el disco archivos de índices...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Esperando las cabeceras" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Mala línea de cabecera" -#: 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: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:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Se encontró la etiqueta: «%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: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: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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Este disco se llama: \n" -"«%s»\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:819 -msgid "Copying package lists..." -msgstr "Copiando las listas de paquetes..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de fecha desconocido" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribiendo nueva lista de fuente\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Mala cabecera Data" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Fallo la conexión" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " -"causado por paquetes retenidos." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:102 +msgid "Unable to minimize the upgrade set" +msgstr "No se puede minimizar el conjunto de actualización" -#: 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:104 +msgid " Done" +msgstr " Listo" -#: 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: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: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-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." + +#: 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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "Los siguientes paquetes se ELIMINARÁN:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Los siguientes paquetes se han retenido:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Se actualizarán los siguientes paquetes:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Se DESACTUALIZARÁN los siguientes paquetes:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Se cambiarán los siguientes paquetes retenidos:" + +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, 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:714 #, 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:718 #, 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:740 +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:746 +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:757 +msgid "Y" +msgstr "S" -#: 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: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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" +#: 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:95 +#: apt-private/private-update.cc:90 #, c-format -msgid "Installing %s" -msgstr "Instalando %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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-show.cc:156 #, c-format -msgid "Removing %s" -msgstr "Eliminando %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:98 -#, c-format -msgid "Completely removing %s" -msgstr "Borrando completamente %s" +#: 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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +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:224 +#, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Abortado." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +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:315 +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:322 +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:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "No se pudieron corregir los paquetes que faltan." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Abortando la instalación." + +#: apt-private/private-install.cc:368 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] "" +"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:372 +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-private/private-install.cc:393 +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 es " -"un mensaje de error asociado a un fallo previo." +"Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:501 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 "" -"No se escribió un informe «apport» porque el mensaje de error indica que el " -"error es de disco lleno" +"Hmmm. Parece que «AutoRemover» destruyó algo y eso no debería haber pasado. " +"Por favor, envíe un informe de fallo al programa 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error interno, «AutoRemover» rompió cosas" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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" +"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-private/private-install.cc:519 +#, 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" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:521 #, fuzzy -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" +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/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-install.cc:614 +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/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:616 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 "" -"No se pudo bloquear el directorio de administración (%s), ¿quizás haya algún " -"otro proceso utilizándolo?" - -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "No se encontró un archivo de réplica «%s»" +"Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " +"especifique 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:640 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 "" -"se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para " -"corregir el problema" - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "No bloqueado" +"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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Paquetes recomendados:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 +#, 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:967 +#, 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:973 +#, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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" +msgid "[Mirror: %s]" +msgstr "[Réplica: %s]" -#: 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" +#: 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:146 -msgid "Unable to close mmap" -msgstr "No se pudo cerrar «mmap»" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "La conexión se cerró prematuramente" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "No pude sincronizar «mmap»" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "¡Parámetro por omisión incorrecto!" -#: 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: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:322 -msgid "Failed to truncate file" -msgstr "Falló al truncar el archivo" +#: dselect/install:92 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?" -#: 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 "" -"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-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Error interno en 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 "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-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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "" -"Opción %s: La especificación del elemento de configuración debe tener un " -"=." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3335,12 +3348,7 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::" "cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "No pude leer %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?" @@ -3462,17 +3470,17 @@ msgstr "Ninguna selección coincide" msgid "Some files are missing in the package file group `%s'" msgstr "Faltan algunos archivos en el grupo de archivo de paquetes «%s»" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "BD dañada, se renombró el archivo a %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB anticuada, intentando actualizar %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3480,105 +3488,105 @@ msgstr "" "El formato de la base de datos no es válido. Debe eliminar y recrear la base " "de datos si vd. se actualizó de una versión anterior de apt." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "No se pudo abrir el archivo DB %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "No se pudo leer el enlace %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "No hay registro de control del archivo" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "No se pudo obtener un cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: No se pudo leer directorio %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: No se pudo leer %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Errores aplicables al archivo " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "No se pudo resolver %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Falló el recorrido por el árbol." -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "No se pudo abrir %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "No se pudo leer el enlace %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "No se pudo desligar %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** No pude enlazar %s con %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink se ha llegado al límite de %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archivo no tiene campo de paquetes" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s no tiene entrada de predominio\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el encargado de %s es %s y no %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s no tiene una entrada fuente predominante\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco tiene una entrada binaria predominante\n" diff --git a/po/eu.po b/po/eu.po index ba0eef90a..a09b79428 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -18,3158 +18,3171 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Paketeen katxea hutsik" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Paketeen katxe fitxategia hondatuta dago" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" -#: cmdline/apt-cache.cc:1254 +#: apt-pkg/pkgcache.cc:164 #, fuzzy -msgid "You must give at least one search pattern" -msgstr "Zehazki eredu bat eman behar duzu." +msgid "The package cache file is corrupted, it is too small" +msgstr "Paketeen katxe fitxategia hondatuta dago" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:171 +#, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" + +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Mendekotasuna:" + +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Aurremendekotasuna:" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Iradokizuna:" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Gomendioa:" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Gatazka:" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Ordeztea:" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Zaharkitzea:" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Apurturik" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "garrantzitsua" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "beharrezkoa" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "estandarra" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "aukerakoa" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "estra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Ezin da %s paketea lokalizatu" +msgid "Index file type '%s' is not supported" +msgstr "'%s' motako indize fitxategirik ez da onartzen" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakete Fitxategiak:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Adierazpen erregularren konpilazio errorea - %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 "" -"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin " -"pakete fitxategi bati" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Katxearen bertsio sistema ez da bateragarria" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pin duten Paketeak:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ez da aurkitu)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instalatuta: " +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Hautagaia: " +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(bat ere ez)" +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketearen pin-a:" +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Bertsio taula:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Pakete Zerrenda irakurtzen" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Fitxategiaren erreferentziak biltzen" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n" +msgid "Unable to write to %s" +msgstr "%s : ezin da idatzi" -#: 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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "S/I errorea iturburu katxea gordetzean" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" 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" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: 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/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: 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/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parekatu gabeko argumentuak" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Egiaztapena ez dator bat" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Tamaina ez dator bat" -#: 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-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Eragiketa baliogabea: %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-pkg/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:330 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Ezin izan da %s paketea aurkitu" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: 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/acquire-item.cc:1737 +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:423 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Couldn't find package %s" -msgstr "Ezin izan da %s paketea aurkitu" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" - -#: 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" - -#: 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." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ezin da deskarga direktorioa blokeatu" - -#: 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" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " +"beharko duzu paketea. (arkitektura falta delako)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" +msgid "" +"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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Ezin da %s(e)n duzun leku librea atzeman." +msgid "Vendor block %s contains no fingerprint" +msgstr "%s saltzaile blokeak ez du egiaztapen markarik" -#: 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.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "%spartial zerrenda-direktorioa falta da." -#. 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.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "%spartial artxibo direktorioa falta da." + +#: apt-pkg/acquire.cc:100 +#, 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:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" -#. TRANSLATOR: The required 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.cc:927 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" +msgid "Retrieving file %li of %li" +msgstr "%li fitxategia jasotzen %li-tik" -#: cmdline/apt-get.cc:902 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Fetch source %s\n" -msgstr "Eskuratu %s iturburua\n" +msgid "Failed to fetch %s %s\n" +msgstr "Ezin da lortu %s %s\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Huts egin du zenbat artxibo lortzean." +#: 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 "" +"Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo " +"zaharrak erabili dira haien ordez." -#: 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-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" -#: cmdline/apt-get.cc:950 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" msgstr "" -"%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" - -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: 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-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" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" +msgid "Did not understand pin type %s" +msgstr "Ez da ulertu %s orratz-mota (pin)" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Prozesu umeak huts egin du" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "%s fitxategia ezin izan da ireki" + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" +msgid "Line %u too long in source list %s." +msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM Desmuntatzen...\n" + +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s: ez du eraikitze mendekotasunik.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "%s CD-ROM muntatze puntua erabiltzen\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Diska itxaroten...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM-a muntatzen...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Egiaztatzen... " + +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" +"%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " +"aurkitu dira\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-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Aurkitutako Etiketa: '%s' \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-get.cc:1289 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"This disc is called: \n" +"'%s'\n" msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" +"Diskaren izen:\n" +"'%s'\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Pakete zerrendak kopiatzen..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Jatorri zerrenda berria idazten\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Diskoarentzako jatorri sarrerak:\n" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s " -"paketea berriegia da" +"%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak " -"betetzen dituen %3$s paketearen bertsio erabilgarririk" +"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " +"atxikitako paketeek eraginda." + +#: apt-pkg/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Dependentzia zuhaitza eraikitzen" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Hautagaien bertsioak" + +#: 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 "Failed to open StateFile %s" +msgstr "Huts egin du %s EgoeraFitxategia irekitzean" + +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi" + +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Ezin da %s pakete fitxategia analizatu (2)" + +#: apt-pkg/cacheset.cc:490 +#, 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:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ezin da %s paketea lokalizatu" + +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Ezin izan da %s zeregina aurkitu" + +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Ezin izan da %s paketea aurkitu" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cacheset.cc:648 #, 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 "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" +#: apt-pkg/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Konektatzen -> %s.(%s)" +msgid "Unable to parse Release file %s" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Onartutako Moduluak:" +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Oharra, %s hautatzen %s(r)en ordez\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 "" -"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" -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/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "baina ez dago instalatuta" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Lerro baliogabea desbideratze fitxategian: %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ezin da %s pakete fitxategia analizatu (1)" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s bertsiorik berriena da jada.\n" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s bertsiorik berriena da jada.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" -#: 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 espero zen baina ez zegoen han" +#: 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)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:190 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s eskuz instalatua bezala ezarri.\n" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:193 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Huts egin du %s irekitzean" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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)" -#: 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/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Ezin da cdrom-eko %s datu-basea irakurri" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" -#: 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/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD okerra" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s irekitzen" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:371 #, 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 "Malformed line %u in source list %s (type)" +msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Ez da diska aurkitu" +#: 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ez da fitxategia aurkitu" +#: 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/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Huts egin du atzitzean" - -#: 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" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s Instalatzen" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Sartzen" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s konfiguratzen" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ezin izan da peer edo parekoaren izena zehaztu" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s kentzen" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ezin izan da izen lokala zehaztu" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s guztiz ezabatu da" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "USER failed, server said: %s" -msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" +msgid "Running post-installation trigger %s" +msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" -#: methods/ftp.cc:232 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" +msgid "Directory '%s' missing" +msgstr "'%s' direktorioa falta da" -#: 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." +#: 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/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:989 #, 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" +msgid "Preparing %s" +msgstr "%s prestatzen" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Konexioa denboraz kanpo" +msgid "Unpacking %s" +msgstr "%s irekitzen" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Zerbitzariak konexioa itxi du" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "%s konfiguratzeko prestatzen" -#: 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/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s Instalatuta" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Erantzun batek bufferrari gainez eragin dio." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "%s kentzeko prestatzen" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolo hondatzea" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s kendurik" -#: 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/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s guztiz ezabatzeko prestatzen" -#: 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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s guztiz ezabatu da" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -"Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Huts egin du" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%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/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: 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/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Ezin izan da socket bat lotu" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 espero zen baina ez zegoen han" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Ezin izan da socket-ean entzun" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Ezin izan da socket-aren izena zehaztu" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Ezin da PORT komandoa bidali" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Helbide familia ezezagunaa: %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Datu-socket konexioak denbora muga gainditu du" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Ezin da konexioa onartu" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Arazoa fitxategiaren hash egitean" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datu-socketak denbora muga gainditu du" +#: 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" -#: methods/ftp.cc:935 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, 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" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Ezin da deitu " +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/connect.cc:76 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Konektatzen -> %s.(%s)" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:87 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Ezin izan da socket-ik sortu honentzat: %s (f=%u t=%u p=%u)" - -#: methods/connect.cc:100 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." +msgid "%limin %lis" +msgstr "" -#: methods/connect.cc:108 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "%lis" msgstr "" -"Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" -#: methods/connect.cc:126 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Ezin izan da konektatu -> %s:%s (%s)" +msgid "Selection %s not found" +msgstr "%s hautapena ez da aurkitu" -#. 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/contrib/fileutl.cc:191 #, c-format -msgid "Connecting to %s" -msgstr "Konektatzen -> %s..." +msgid "Not using locking for read only lock file %s" +msgstr "" +"Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo " +"fitxategiarentzat" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:196 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ezin izan da '%s' ebatzi" +msgid "Could not open lock file %s" +msgstr "Ezin izan da %s blokeo fitxategia ireki" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:219 #, 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" - -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" - -#: methods/connect.cc:258 -#, 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" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Beintza sinadura baliogabe bat aurkitu da." +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" -#: 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/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Ezin izan da %s blokeoa hartu" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Errore ezezaguna gpgv exekutatzean" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Ondorengo sinadurak baliogabeak dira:\n" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" 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" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Errorea fitxategian idaztean" +#: apt-pkg/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" +#: apt-pkg/contrib/fileutl.cc:847 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)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Errorea zerbitzaritik irakurtzean" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s azpiprozesua ustekabean amaitu da" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Errorea fitxategian idaztean" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Idazketa errorea" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Hautapenak huts egin du" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Arazoa fitxategia ixtean" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Konexioaren denbora muga gainditu da" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "%s fitxategia ezin izan da ireki" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Errorea irteerako fitxategian idaztean" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Ezin izan da %s(r)en kanalizazioa ireki" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Goiburuen zain" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Huts egin du IPC azpiprozesua sortzean" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Okerreko goiburu-lerroa" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Huts egin du konpresorea exekutatzean " -#: 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/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Irakurketa errorea" -#: 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/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" -#: 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/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "idatzita; oraindik %lu idazteke, baina ezin da" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "http zerbitzariak barruti onarpena apurturik du" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Arazoa fitxategia ixtean" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Datu formatu ezezaguna" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Arazoa fitxategia sinkronizatzean" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Goiburu data gaizki dago" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Arazoa fitxategia desestekatzean" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Konexioak huts egin du" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Arazoa fitxategia sinkronizatzean" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Barne errorea" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ezin da daturik lortu %s(e)tik" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Berriketak kalkulatzen... " +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Errorea!" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Eginda" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Eginda" -#: 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... Eginda" -#: 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/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Ezin da fitxategi huts baten mmap egin" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Mendekotasunak zuzentzen..." +#: 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-cachefile.cc:96 -msgid " failed." -msgstr " : huts egin du." +#: 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ezin dira mendekotasunak zuzendu" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Ezin da %s ireki" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Ezin da bertsio berritzeko multzoa minimizatu" - -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Eginda" +#: 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-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/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-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Huts fitxategia mozterakoan" -#: 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: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 dinamikoa memoriaz kanpo. Mesedez handitu APT::Cache-Start muga. Uneko " +"balioa: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalatuta]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalatuta]" +#: 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:240 -msgid "[installed,auto-removable]" +#: 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:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalatuta]" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Ezin da atzitu %s muntatze puntua" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalatuta]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Huts egin du CDROMa atzitzean" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Mota ezezaguneko laburtzapena: '%c'" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "baina %s instalatuta dago" +msgid "Opening configuration file %s" +msgstr "%s konfigurazio fitxategia irekitzen" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "baina %s instalatzeko dago" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "baina ez da instalagarria" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "baina pakete birtuala da" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "baina ez dago instalatuta" +#: apt-pkg/contrib/configuration.cc:879 +#, 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-output.cc:448 -msgid "but it is not going to be installed" -msgstr "baina ez da instalatuko" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " edo" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Ondorengo pakete BERRIAK instalatuko dira:" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Ondorengo paketeak KENDUKO dira:" +#: apt-pkg/contrib/configuration.cc:952 +#, 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-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Ondorengo paketeak mantendu egin dira:" +#. 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-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Ondorengo paketeak bertsio-berrituko dira:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:" +#: 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" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Ondorengo pakete atxikiak aldatu egingo dira:" +#: 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-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (arrazoia: %s) " +msgid "Option %s requires an argument." +msgstr "%s aukerak argumentu bat behar du." -#: apt-private/private-output.cc:675 -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 =." msgstr "" -"KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n" -"EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!" +"%s aukera: konfigurazio elementuaren zehaztapenak = eduki behar du." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu berrinstalatuta, " +msgid "Option '%s' is too long" +msgstr "'%s' aukera luzeegia da" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu aurreko bertsiora itzulita, " +msgid "Sense %s is not understood, try true or false." +msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" +msgid "Invalid operation %s" +msgstr "Eragiketa baliogabea: %s" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ez erabat instalatuta edo kenduta.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\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:740 -msgid "[Y/n]" -msgstr "[B/e]" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Pakete Izenak Guztira : " -#. 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:746 -msgid "[y/N]" -msgstr "[b/E]" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Pakete Izenak Guztira : " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Pakete normalak:" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Pakete birtual puruak:" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Adierazpen erregularren konpilazio errorea - %s" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Bakanako pakete birtualak: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Nahastutako pakete birtualak: " -#: 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:363 +msgid " Missing: " +msgstr " Falta direnak: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Bertsio Ezberdinak Guztira: " -#: 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:367 +msgid "Total distinct descriptions: " +msgstr "Azalpen Ezberdinak Guztira: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Dependentziak Guztira: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Guztira Bertsio/fitxategi erlazioak: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Fitx/Azalpen erlazioak guztira: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Barne errorea, ez da ordenatzeaz amaitu" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Guztira Saltzaile Mapatzea: " -#: 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)" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Guztira bateratutako kateak: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Guztira bertsio dependentzia lekua: " -#. TRANSLATOR: The required space between number and unit 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 "Artxiboetako %sB eskuratu behar dira.\n" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Guztira galdutako tokia:" -#. TRANSLATOR: The required space between number and unit 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 "After this operation, %sB of additional disk space will be used.\n" -msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Guztira erregistratutako lekua: " -#. TRANSLATOR: The required space between number and unit 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 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" +msgid "Package file %s is out of sync." +msgstr "%s pakete fitxategia ez dago sinkronizatuta." -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Ez daukazu nahikoa leku libre %s(e)n." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Zehazki eredu bat eman behar duzu." -#: 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." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +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!" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Pakete Fitxategiak:" -#: 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" -" ?] " +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Egin nahi duzunak kalte larriak eragin ditzake\n" -"Jarraitzeko, idatzi '%s' esaldia\n" -" ?] " +"Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin " +"pakete fitxategi bati" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortatu." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pin duten Paketeak:" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Aurrera jarraitu nahi al duzu?" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(ez da aurkitu)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Fitxategi batzuk ezin izan dira deskargatu" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalatuta: " -#: apt-private/private-install.cc:320 -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?" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Hautagaia: " -#: 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(bat ere ez)" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Falta diren paketeak ezin dira zuzendu." +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Paketearen pin-a:" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abortatu instalazioa." +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Bertsio taula:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-rentzat %s %s-ean konpilatua\n" -#: apt-private/private-install.cc:366 +#: cmdline/apt-cache.cc:1801 +#, fuzzy 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] "" +"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-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: 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-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" +#: 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" + +#: 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-private/private-install.cc:499 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n" -"Mesedez programa errore txosten bat bete mesedez." -#. -#. 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 "" -"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-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] "" -"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-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:" +#: 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-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)." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parekatu gabeko argumentuak" -#: apt-private/private-install.cc:638 +#: 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 "" -"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." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Hautsitako paketeak" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Ondorengo pakete gehigarriak instalatuko dira:" +"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-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Iradokitako paketeak:" +#: 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-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Gomendatutako paketeak:" +#: 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-private/private-install.cc:825 -#, 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-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Ezin izan da %s paketea aurkitu" -#: apt-private/private-install.cc:829 +#: cmdline/apt-get.cc:367 #, 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" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-private/private-install.cc:841 +#: cmdline/apt-get.cc:423 #, 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" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:454 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s bertsiorik berriena da jada.\n" - -#: 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-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" +msgid "Couldn't find package %s" +msgstr "Ezin izan da %s paketea aurkitu" -#. 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" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: apt-private/private-install.cc:947 +#: 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 paketea ez dago instalatuta, eta, beraz, ez da kenduko\n" +msgid "%s set to automatically installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\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 "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Egiaztapen abisua gainidazten.\n" +#: 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-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-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ezin da deskarga direktorioa blokeatu" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Paketeak egiaztapen gabe instalatu?" +#: 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-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Ezin da lortu %s %s\n" - -#: 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" +msgid "Unable to find a source package for %s" +msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" -#: 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 "Atzituta " +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hartu:" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Ezin da %s(e)n duzun leku librea atzeman." -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ez ikusi " +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: 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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\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:898 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Lortuta: %sB (%s) (%sB/s)\n" +msgid "Need to get %sB of source archives.\n" +msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:904 #, c-format -msgid " [Working]" -msgstr " [Lanean]" +msgid "Fetch source %s\n" +msgstr "Eskuratu %s iturburua\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Huts egin du zenbat artxibo lortzean." + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Deskarga amaituta eta deskarga soileko moduan" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -"Medio Aldaketa: Mesedez sar\n" -" '%s'\n" -"izeneko diska '%s' gailuan eta enter sakatu\n" +"%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\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:964 #, c-format -msgid "Unable to read %s" -msgstr "Ezin da %s irakurri" +msgid "Unpack command '%s' failed.\n" +msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\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:965 #, c-format -msgid "Unable to change to %s" -msgstr "Ezin da %s(e)ra aldatu" - -#. 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: 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" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "%s fitxategia ezin izan da ireki" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:993 #, 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." - -#: 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" +msgid "Build command '%s' failed.\n" +msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: 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-get.cc:1012 +msgid "Child process failed" +msgstr "Prozesu umeak huts egin du" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" 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" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Desbideratzearen gehitze bikoitza: %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Konfigurazio fitxategi bikoiztua: %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "%s bidea luzeegia da" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "%s behin baino gehiagotan deskonprimitzen" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "%s direktorioa desbideratuta dago" +"Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:1056 #, 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" - -#: 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 "Huts egin du %s(e)tik datuak lortzean" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Huts egin du %s izenaren ordez %s ipintzean" +msgid "Unable to get build-dependency information for %s" +msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Bidea luzeegia da" +msgid "%s has no build depends.\n" +msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: 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:1296 +#, 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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" +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-inst/extract.cc:498 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unable to stat %s" -msgstr "Ezin da daturik lortu %s(e)tik" +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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Ezin izan da %s fitxategian idatzi" +#: cmdline/apt-get.cc:1376 +#, 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-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Ezin izan da %s fitxategia itxi" +#: cmdline/apt-get.cc:1382 +#, 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" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Barne Errorea, ezin da %s atala kokatu" - -#: 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" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Errorea artxiboko kidearen goiburua irakurtzean" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, 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" +msgid "Changelog for %s (%s)" +msgstr "Konektatzen -> %s.(%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Onartutako Moduluak:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "%u TAR goiburu mota ezezaguna, %s kidea" +#: cmdline/apt-get.cc:1657 +#, 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/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Ezin da %s atzitu." +#: 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/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' pakete sistema ez da onartzen" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i erregistro grabaturik.\n" - -#: 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" - -#: 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-mark.cc:68 +#, fuzzy, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "baina ez dago instalatuta" -#: 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-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s eskuz instalatua bezala ezarri.\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 eskuz instalatua bezala ezarri.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Egiaztapena ez dator bat" +msgid "%s was already set on hold.\n" +msgstr "%s bertsiorik berriena da jada.\n" -#: 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-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s bertsiorik berriena da jada.\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 "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" +msgid "%s set on hold.\n" +msgstr "%s eskuz instalatua bezala ezarri.\n" -#: 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-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/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: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 "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki." +#: 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 "Beharbada 'apt-get update' exekutatu nahiko duzu arazoak konpontzeko" +#: 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 "Ezin izan da Iturburu zerrenda irakurri." +#: 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/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Paketeen katxea hutsik" +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "Paketeen katxe fitxategia hondatuta dago" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD okerra" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria" +#: 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:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Paketeen katxe fitxategia hondatuta dago" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Ez da diska aurkitu" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT honek ez du '%s' bertsio sistema onartzen" +#: 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:179 -msgid "The package cache was built for a different architecture" -msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" +#: 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:321 -msgid "Depends" -msgstr "Mendekotasuna:" +#: 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:321 -msgid "PreDepends" -msgstr "Aurremendekotasuna:" +#: 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:321 -msgid "Suggests" -msgstr "Iradokizuna:" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Sartzen" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Gomendioa:" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ezin izan da peer edo parekoaren izena zehaztu" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Gatazka:" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ezin izan da izen lokala zehaztu" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Ordeztea:" +#: 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:323 -msgid "Obsoletes" -msgstr "Zaharkitzea:" +#: 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/pkgcache.cc:323 -msgid "Breaks" -msgstr "Apurturik" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %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 "" +"Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" +"ProxyLogin hutsik dago." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "garrantzitsua" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "beharrezkoa" +#: 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/pkgcache.cc:334 -msgid "standard" -msgstr "estandarra" +#: 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/pkgcache.cc:335 -msgid "optional" -msgstr "aukerakoa" +#: 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/pkgcache.cc:335 -msgid "extra" -msgstr "estra" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Zerbitzariak konexioa itxi du" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "'%s' motako indize fitxategirik ez da onartzen" +#: 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:93 -msgid "Cache has an incompatible versioning system" -msgstr "Katxearen bertsio sistema ez da bateragarria" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolo hondatzea" -#. 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: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: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: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: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:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Huts egin du" -#: 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:718 +msgid "Could not connect passive socket." +msgstr "Ezin izan da socket pasibora konektatu." -#: 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:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" -#: 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:749 +msgid "Could not bind a socket" +msgstr "Ezin izan da socket bat lotu" -#: 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:753 +msgid "Could not listen on the socket" +msgstr "Ezin izan da socket-ean entzun" -#: 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:760 +msgid "Could not determine the socket's name" +msgstr "Ezin izan da socket-aren izena zehaztu" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Fitxategiaren erreferentziak biltzen" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Ezin da PORT komandoa bidali" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "%s : ezin da idatzi" +msgid "Unknown address family %u (AF_*)" +msgstr "Helbide familia ezezagunaa: %u (AF_*)" -#: 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:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Datu-socket konexioak denbora muga gainditu du" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Ezin da konexioa onartu" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Arazoa fitxategiaren hash egitean" -#: apt-pkg/edsp.cc:327 -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 "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: 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:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:935 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Egiaztapena ez dator bat" +msgid "Data transfer failed, server said '%s'" +msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamaina ez dator bat" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Kontsulta" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Eragiketa baliogabea: %s" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Ezin da deitu " -#: 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 "Ezin da %s pakete fitxategia analizatu (1)" - -#: 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" +msgid "Connecting to %s (%s)" +msgstr "Konektatzen -> %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 "Ezin izan da socket-ik sortu honentzat: %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 "Ezin izan da konexioa hasi -> %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 "" +"Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" -#: 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 "" -"Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " -"beharko duzu paketea. (arkitektura falta delako)" +msgid "Could not connect to %s:%s (%s)." +msgstr "Ezin izan da konektatu -> %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 "Konektatzen -> %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 "" -"Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " -"paketearentzat." +msgid "Could not resolve '%s'" +msgstr "Ezin izan da '%s' ebatzi" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:205 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "%s saltzaile blokeak ez du egiaztapen markarik" +msgid "Temporary failure resolving '%s'" +msgstr "Aldi baterako akatsa '%s' ebaztean" -#: 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 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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Errorea fitxategian idaztean" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM Desmuntatzen...\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:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "%s CD-ROM muntatze puntua erabiltzen\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Errorea zerbitzaritik irakurtzean" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Diska itxaroten...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Errorea fitxategian idaztean" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM-a muntatzen...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Hautapenak huts egin du" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Egiaztatzen... " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Konexioaren denbora muga gainditu da" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Gordetako Etiketa: %s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Errorea irteerako fitxategian idaztean" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Indize fitxategien bila diska arakatzen...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Goiburuen zain" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Okerreko goiburu-lerroa" -#: 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 zerbitzariak erantzun goiburu baliogabe bat bidali du." -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Aurkitutako Etiketa: '%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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Hau ez baliozko izen bat, froga berriro.\n" +#: 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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Diskaren izen:\n" -"'%s'\n" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "http zerbitzariak barruti onarpena apurturik du" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Pakete zerrendak kopiatzen..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Datu formatu ezezaguna" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Jatorri zerrenda berria idazten\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Goiburu data gaizki dago" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Diskoarentzako jatorri sarrerak:\n" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Konexioak huts egin du" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " -"atxikitako paketeek eraginda." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:233 #, 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instalatuta]" + +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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:612 +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:667 #, 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 +#: apt-private/private-output.cc:675 +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-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" +msgid "%lu reinstalled, " +msgstr "%lu berrinstalatuta, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" +msgid "%lu downgraded, " +msgstr "%lu aurreko bertsiora itzulita, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:714 #, c-format -msgid "Opening %s" -msgstr "%s irekitzen" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ez erabat instalatuta edo kenduta.\n" -#: 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" +#. 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:740 +msgid "[Y/n]" +msgstr "[B/e]" -#: 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" +#. 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:746 +msgid "[y/N]" +msgstr "[b/E]" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %s" -msgstr "%s Instalatzen" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s konfiguratzen" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +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 "Eguneratzeko komandoak ez du argumenturik hartzen" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Removing %s" -msgstr "%s kentzen" +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 guztiz ezabatu da" +#: 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" -msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" -#. 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-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." -#: 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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: apt-pkg/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "%s prestatzen" +#: apt-private/private-install.cc:150 +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: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:157 #, c-format -msgid "Unpacking %s" -msgstr "%s irekitzen" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\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:162 #, c-format -msgid "Preparing to configure %s" -msgstr "%s konfiguratzeko prestatzen" +msgid "Need to get %sB of archives.\n" +msgstr "Artxiboetako %sB eskuratu behar dira.\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:169 #, c-format -msgid "Installed %s" -msgstr "%s Instalatuta" +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: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:174 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s kentzeko 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:1004 +#: apt-private/private-install.cc:202 #, c-format -msgid "Removed %s" -msgstr "%s kendurik" +msgid "You don't have enough free space in %s." +msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "%s guztiz ezabatzeko prestatzen" +#: apt-private/private-install.cc:212 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:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s guztiz ezabatu da" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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: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:222 +msgid "Yes, do as I say!" +msgstr "Bai, egin esandakoa!" + +#: apt-private/private-install.cc:224 +#, 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: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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Abortatu." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Aurrera jarraitu nahi al duzu?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:322 +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/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#. 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:331 +msgid "Unable to correct missing packages." +msgstr "Falta diren paketeak ezin dira zuzendu." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Abortatu instalazioa." + +#: apt-private/private-install.cc:368 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:372 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:393 +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:501 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 "" +"Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n" +"Mesedez programa errore txosten bat bete mesedez." + +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Informazio honek arazoa konpontzen lagun dezake:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -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-private/private-install.cc:519 +#, 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/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:521 +#, 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:614 +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/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " +"zehaztu konponbide bat)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"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." -#: 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-install.cc:661 +msgid "Broken packages" +msgstr "Hautsitako paketeak" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Iradokitako paketeak:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Gomendatutako paketeak:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "" +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:855 +#, 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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "" +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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "%s hautapena ez da aurkitu" +msgid "%s is already the newest version.\n" +msgstr "%s bertsiorik berriena da jada.\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:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: 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-install.cc:925 +#, 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" -"Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Ezin izan da %s blokeoa hartu" +#: apt-private/private-install.cc:973 +#, 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: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 "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" -#: 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 "Egiaztapen abisua gainidazten.\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 "Zenbait pakete ezin dira egiaztatu" -#: 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:50 +msgid "Install these packages without verification?" +msgstr "Paketeak egiaztapen gabe instalatu?" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." +msgid "Failed to parse %s. Edit again? " +msgstr "Huts egin du %s izenaren ordez %s ipintzean" -#: 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 azpiprozesuak errore kode bat itzuli du (%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 azpiprozesua ustekabean amaitu da" +#: 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 "Arazoa fitxategia ixtean" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atzituta " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "%s fitxategia ezin izan da ireki" +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Hartu:" -#: 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/acqprogress.cc:119 +msgid "Ign " +msgstr "Ez ikusi " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Huts egin du IPC azpiprozesua sortzean" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Huts egin du konpresorea exekutatzean " +#: apt-private/acqprogress.cc:147 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Lortuta: %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 "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen" +#: apt-private/acqprogress.cc:237 +#, c-format +msgid " [Working]" +msgstr " [Lanean]" -#: 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:298 +#, 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" -#: apt-pkg/contrib/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Arazoa fitxategia ixtean" +#. 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 "Arazoa fitxategia sinkronizatzean" +msgid "Can not read mirror file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Arazoa fitxategia desestekatzean" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Arazoa fitxategia sinkronizatzean" - -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Errorea!" +msgid "No entry found in mirror file '%s'" +msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Eginda" - -#: 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... Eginda" +#: 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" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Ezin da fitxategi huts baten mmap egin" +#: 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!" -#: 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" +#: 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:184 #, 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 =." -msgstr "" -"%s aukera: konfigurazio elementuaren zehaztapenak = 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3193,12 +3206,7 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Ezin da daturik lortu %s(e)tik" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ezin da debconf bertsioa eskuratu. Debconf instalatuta dago?" @@ -3314,17 +3322,17 @@ msgstr "Ez dago bat datorren hautapenik" msgid "Some files are missing in the package file group `%s'" msgstr "Fitxategi batzuk falta dira `%s' pakete fitxategien taldean" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Datu-basea hondatuta dago; fitxategiari %s.old izena jarri zaio" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Datu-basea zaharra da; %s bertsio-berritzen saiatzen ari da" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3333,105 +3341,105 @@ msgstr "" "DB formatu baliogabe da. Apt bertsio zaharrago batetik eguneratu baduzu, " "mesedez datubasea ezabatu eta birsortu." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ezin da ireki %s datu-base fitxategia: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Huts egin du %s esteka irakurtzean" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Artxiboak ez du kontrol erregistrorik" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Ezin da kurtsorerik eskuratu" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Ezin da %s direktorioa irakurri\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Ezin da %s atzitu\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Erroreak fitxategiari dagozkio " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Huts egin du %s ebaztean" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Huts egin dute zuhaitz-urratsek" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Huts egin du %s irekitzean" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Huts egin du %s esteka irakurtzean" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Huts egin du %s desestekatzean" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Ezin izan da %s %s(r)ekin estekatu" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-en mugara (%sB) heldu da.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Artxiboak ez du pakete eremurik" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s: ez du override sarrerarik\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s mantentzailea %s da, eta ez %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s: ez du jatorri gainidazketa sarrerarik\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s: ez du bitar gainidazketa sarrerarik\n" diff --git a/po/fi.po b/po/fi.po index 40dd7653a..f11f1b815 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@ -18,3146 +18,3159 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Pakettivarasto on tyhjä" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Pakettivarasto on turmeltunut" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Pakettivaraston versio on yhteensopimaton" -#: cmdline/apt-cache.cc:1254 +#: apt-pkg/pkgcache.cc:164 #, fuzzy -msgid "You must give at least one search pattern" -msgstr "On annettava täsmälleen yksi lauseke" +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakettivarasto on turmeltunut" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:171 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\"" + +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" + +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Riippuvuudet" + +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Esiriippuvuudet" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Ehdotukset" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Suosittelut" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Ristiriidat" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Korvaavuudet" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Täydet korvaavuudet" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Rikkoo" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "tärkeä" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "välttämätön" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "perus" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "valinnainen" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "ylimääräinen" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Pakettia %s ei löydy" +msgid "Index file type '%s' is not supported" +msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakettitiedostot:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Käännösvirhe lausekkeessa - %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 "Varasto ei ole ajan tasalla, pakettitiedostoa ei löydy kansiosta" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paketit joissa tunniste:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ei löydy)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Asennettu: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Ehdokas: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ei mitään)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketin tunnistenumero: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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." -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versiotaulukko:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Luetaan pakettiluetteloita" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Kootaan tiedostojen tarjoamistietoja" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, 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" +msgid "Unable to write to %s" +msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: 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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" 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" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: 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/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametrit eivät ole pareittain" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Tarkistussumma ei täsmää" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Koko ei täsmää" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Pakettia %s ei löytynyt" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Virheellinen toiminto %s" -#: 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/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:330 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Pakettia %s ei löytynyt" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: 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/acquire-item.cc:1737 +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:423 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Couldn't find package %s" -msgstr "Pakettia %s ei löytynyt" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" - -#: 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" - -#: 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." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Sisäinen virhe, resolver rikkoi jotain" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Noutokansiota ei saatu lukittua" - -#: 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" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Paketin %s lähdekoodipakettia ei löytynyt" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"En löytänyt pakettia %s vastaavaa tiedostoa. Voit ehkä joutua korjaamaan " +"tämän paketin itse (puuttuvan arkkitehtuurin vuoksi)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" +msgid "" +"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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" +msgid "Vendor block %s contains no fingerprint" +msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" -#: 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.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Luettelokansio %spartial puuttuu." -#. 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.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arkistokansio %spartial puuttuu." + +#: apt-pkg/acquire.cc:100 +#, 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:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Noudetaan tiedosto %li / %li (jäljellä %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.cc:927 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "On noudettava %st lähdekoodiarkistoja.\n" +msgid "Retrieving file %li of %li" +msgstr "Noudetaan tiedosto %li / %li" -#: cmdline/apt-get.cc:902 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Fetch source %s\n" -msgstr "Nouda lähdekoodi %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Tiedoston %s nouto ei onnistunut %s\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Joidenkin arkistojen noutaminen ei onnistunut." - -#: 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-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 "" +"Joidenkin hakemistotiedostojen nouto ei onnistunut, ne on ohitettu tai " +"käytetty vanhoja. " -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Purkukomento \"%s\" ei onnistunut.\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:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" +#: 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" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Paketointikomento \"%s\" ei onnistunut.\n" +msgid "Did not understand pin type %s" +msgstr "Tunnistetyyppi %s on tuntematon" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Lapsiprosessi kaatui" +#: 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)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Tiedostoa %s ei voitu avata" + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" +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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Käytetään rompun liitoskohtaa %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Odotetaan levyä...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Liitetään romppu...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Tunnistetaan... " + +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" +"Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " +"käännösten %zu ja allekirjoituksia löytyi %zu\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Löytyi nimiö: \"%s\"\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian " -"uusi" +"Tämä levy on: \n" +"\"%s\"\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopioidaan pakettiluetteloita..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Kirjoitetaan uusi lähdeluettelo\n" + +#: 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" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy." + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " -"ei vastaa versioriippuvuuksia" +"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " +"paketit." + +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Muodostetaan riippuvuussuhteiden puu" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Mahdolliset versiot" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Luodaan riippuvuudet" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Luetaan tilatiedot" + +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Tilatiedoston %s avaaminen ei onnistunut" + +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" + +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Pakettitiedostoa %s (2) ei voi jäsentää" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Pakettia %s ei löydy" + +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Tehtävää %s ei löytynyt" + +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Pakettia %s ei löytynyt" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" +#: apt-pkg/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Avataan yhteys %s (%s)" +msgid "Unable to parse Release file %s" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Tuetut moduulit:" +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Huomautus, valitaan %s eikä %s\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" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" 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" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Virheellinen rivi korvautustiedostossa: %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-pkg/indexrecords.cc:168 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" -#: 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/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)" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mutta ei ole asennettu" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/sourcelist.cc:184 #, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" +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)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/sourcelist.cc:190 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s on jo uusin versio.\n" +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)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/sourcelist.cc:193 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s on jo uusin versio.\n" +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)" -#: 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/sourcelist.cc:206 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Odotettiin %s, mutta sitä ei ollut" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (URI)" -#: 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/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist)" -#: 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/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)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)" -#: 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/sourcelist.cc:224 +#, 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)" -#: 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/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Avataan %s" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Rompputietokantaa %s ei voi lukea" +msgid "Malformed line %u in source list %s (type)" +msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" -#: 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/sourcelist.cc:375 +#, 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" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Väärä romppu" +#: 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/cdrom.cc:249 +#: apt-pkg/deb/dpkgpm.cc:95 #, 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ä." +msgid "Installing %s" +msgstr "Asennetaan %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Levyä ei löydy" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Tehdään asetukset: %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Tiedostoa ei löydy" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Poistetaan %s" -#: 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/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s poistettiin kokonaan" -#: 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/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Suoritetaan jälkiasennusliipaisin %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Kirjaudutaan sisään" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Kansio \"%s\" puuttuu." -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Vastapään nimeä ei saa selville" +#: 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/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Paikallista nimeä ei saa selville" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Valmistellaan %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s" +msgid "Unpacking %s" +msgstr "Puretaan %s" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" +msgid "Preparing to configure %s" +msgstr "Valmistaudutaan tekemään asetukset: %s" -#: methods/ftp.cc:232 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" +msgid "Installed %s" +msgstr "%s asennettu" -#: 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/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Valmistaudutaan poistamaan %s" -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" +msgid "Removed %s" +msgstr "%s poistettu" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" +msgid "Preparing to completely remove %s" +msgstr "Valmistaudutaan poistamaan %s kokonaan" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Yhteys aikakatkaistiin" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s poistettiin kokonaan" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Palvelin sulki yhteyden" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +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 "Lukuvirhe" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Tiedostoon %s kirjoittaminen ei onnistu" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Vastaus aiheutti puskurin ylivuodon." +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Yhteyskäytäntö on turmeltunut" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +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 "Virhe kirjoitettaessa" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Pistoketta ei voitu luoda" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Ei onnistunut" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Passiivista pistoketta ei voitu kytkeä." +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ei saanut kuuntelupistoketta" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Pistoketta ei voitu nimetä" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Pistoketta ei voitu kuunnella" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Pistokkeen nimeä ei saatu selville" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Komennon PORT lähetys ei onnistu" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:802 +#: 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" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Tuntematon osoiteperhe %u (AF_*)" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/ftp.cc:811 +#: 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 "EPRT failed, server said: %s" -msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Pistokkeen kytkeminen aikakatkaistiin" +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 +#, c-format +msgid "%lih %limin %lis" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Yhteyttä ei voitu hyväksyä" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Pulmia tiedoston hajautuksessa" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" +msgid "Selection %s not found" +msgstr "Valintaa %s ei löydy" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Pistoke aikakatkaistiin" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Lukkoa ei käytetä kirjoitussuojatulle tiedostolle %s" -#: methods/ftp.cc:935 +#: apt-pkg/contrib/fileutl.cc:196 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" +msgid "Could not open lock file %s" +msgstr "Lukkotiedostoa %s ei voitu avata" -#. 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" - -#: methods/connect.cc:76 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Avataan yhteys %s (%s)" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" -#: methods/connect.cc:87 +#: apt-pkg/contrib/fileutl.cc:224 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Could not get lock %s" +msgstr "Lukkoa %s ei saada" -#: methods/connect.cc:94 +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 #, 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 "List of files can't be created as '%s' is not a directory" +msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/contrib/fileutl.cc:395 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +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/contrib/fileutl.cc:841 #, c-format -msgid "Connecting to %s" -msgstr "Avataan yhteys %s" +msgid "Sub-process %s received a segmentation fault." +msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Nimeä \"%s\" ei voitu selvittää" +#: apt-pkg/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Aliprosessi %s palautti virhekoodin (%u)" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Aliprosessi %s lopetti odottamatta" -#: 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)" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Virhe kirjoitettaessa" -#: methods/connect.cc:258 +#: apt-pkg/contrib/fileutl.cc:951 #, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Ei ole mahdollista muodostaa yhteyttä %s %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?!" - -#: 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?)" +msgid "Problem closing the gzip file %s" +msgstr "Pulmia tiedoston sulkemisessa" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:1139 #, 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 "Tapahtui tuntematon virhe suoritettaessa gpgv" +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/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Putkea %s ei voitu avata" -#: 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/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Pakkaajan käynnistäminen ei onnistunut" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lukuvirhe" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" +#: apt-pkg/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "read, vielä %lu lukematta mutta tiedosto loppui" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Tapahtui virhe luettaessa palvelimelta" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "write, vielä %lu kirjoittamatta mutta epäonnistui" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Pulmia tiedoston sulkemisessa" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Select ei toiminut" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Pulmia tehtäessä tiedostolle sync" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Yhteys aikakatkaistiin" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Pulmia tehtäessä tiedostolle unlink" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Pulmia tehtäessä tiedostolle sync" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Odotetaan otsikoita" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Tiedostolle %s ei toimi stat" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Virheellinen otsikkorivi" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Virhe!" -#: 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/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Valmis" -#: 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/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Valmis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP-palvelimen arvoaluetuki on rikki" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Tuntematon päiväysmuoto" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Putkea %s ei voitu avata" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Virheellinen otsikkotieto" +#: 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" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Yhteys ei toiminut" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Tiedoston %s avaaminen ei onnistunut" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Sisäinen virhe" +#: 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-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Käsitellään päivitystä ... " +#: 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-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Valmis" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Tiedoston typistäminen ei onnistunut" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: 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-list.cc:131 -msgid "Listing" +#: 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-list.cc:164 +#: 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 "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 stat the mount point %s" +msgstr "Komento stat ei toiminut liitoskohdalle %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Korjataan riippuvuuksia..." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Komento stat ei toiminut rompulle" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ei onnistunut." +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tuntematon tyypin lyhenne: \"%c\"" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Riippuvuuksien korjaus ei onnistu" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Avataan asetustiedosto %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Päivitysjoukon minimointi ei onnistu" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Valmis" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" -#: 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/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" -#: 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/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Asennettu]" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Asennettu]" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Asennettu]" +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Asennettu]" +#. 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-output.cc:248 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Komentorivin valitsin \"%c\" [%s] on tuntematon." -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -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 "Komentorivin valitsin %s on tuntematon" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "but %s is installed" -msgstr "mutta %s on asennettu" +msgid "Command line option %s is not boolean" +msgstr "Komentorivin valitsin %s ei ole totuusarvoinen" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "but %s is to be installed" -msgstr "mutta %s on merkitty asennettavaksi" +msgid "Option %s requires an argument." +msgstr "Valitsin %s tarvitsee parametrin" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "mutta ei ole asennuskelpoinen" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =." -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "mutta on näennäispaketti" +#: 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-output.cc:448 -msgid "but it is not installed" -msgstr "mutta ei ole asennettu" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Valitsin \"%s\" on liian pitkä" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "mutta ei ole merkitty asennettavaksi" +#: 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-output.cc:453 -msgid " or" -msgstr " tai" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Virheellinen toiminto %s" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Näillä paketeilla on tyydyttämättömiä riippuvuuksia:" +#: 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-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Seuraavat UUDET paketit asennetaan:" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Pakettien kokonaismäärä : " -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Seuraavat paketit POISTETAAN:" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Pakettien kokonaismäärä : " -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Nämä paketit on jätetty odottamaan:" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Tavallisia paketteja: " -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Nämä paketit päivitetään:" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Aitoja näennäispaketteja: " -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Nämä paketit VARHENNETAAN:" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Yksinkertaisia näennäispaketteja: " -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Seuraavat pysytetyt paketit muutetaan:" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Sekanäennäispaketteja: " -#: apt-private/private-output.cc:667 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (syynä %s) " +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Puuttuu: " -#: apt-private/private-output.cc:675 -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!" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Eri versioita yhteensä: " -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu päivitetty, %lu uutta asennusta, " +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Eri kuvauksia yhteensä: " -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu uudelleen asennettua, " +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Riippuvuuksia yhteensä: " -#: apt-private/private-output.cc:712 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu varhennettua, " +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Versio/tdsto suhteita yht: " -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Kuvaus/tdsto suhteita yht: " -#: apt-private/private-output.cc:718 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Tarjoamiskuvauksia yhteensä: " -#. 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:740 -msgid "[Y/n]" -msgstr "[K/e]" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Erilaisia merkkijonoja yhteensä: " -#. 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:746 -msgid "[y/N]" -msgstr "" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Versioriippuvuustila yhteensä: " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "K" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Löysää tilaa yhteensä: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Käytetty tila yhteensä: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Regex compilation error - %s" -msgstr "Käännösvirhe lausekkeessa - %s" +msgid "Package file %s is out of sync." +msgstr "Pakettitiedosto %s ei ole ajan tasalla." -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Komento update ei käytä parametreja" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "On annettava täsmälleen yksi lauseke" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." 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] "" - -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Pakettitiedostot:" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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-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ä." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Paketit joissa tunniste:" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(ei löydy)" -#: 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" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Asennettu: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Noudettavaa arkistoa %st/%st.\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Ehdokas: " -#. TRANSLATOR: The required space between number and unit 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 "Noudettavaa arkistoa %st.\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ei mitää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:167 -#, 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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Paketin tunnistenumero: " -#. TRANSLATOR: The required space between number and unit 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 "After this operation, %sB disk space will be freed.\n" -msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versiotaulukko:" -#: apt-private/private-install.cc:200 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." - -#: 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-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." - -#. 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!" +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-private/private-install.cc:222 -#, c-format +#: cmdline/apt-cache.cc:1801 +#, fuzzy msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\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 "" -"Olet aikeissa tehdä mahdollisesti vahingollisen toimenpiteen.\n" -"Jatka kirjoittamalla \"%s\"\n" -" ?] " +"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-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Keskeytä." +#: 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-install.cc:243 -msgid "Do you want to continue?" -msgstr "Haluatko jatkaa?" +#: 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-install.cc:313 -msgid "Some files failed to download" -msgstr "Joidenkin tiedostojen nouto ei onnistunut" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: apt-private/private-install.cc:320 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"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 "" -"Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " -"kokeile --fix-missing?" -#: 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 "" -"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 "" +#: 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/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ää" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametrit eivät ole pareittain" -#: apt-private/private-install.cc:499 +#: cmdline/apt-config.cc:89 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n" -"Tekisitkö vikailmoituksen apt:sta." +"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" -#. -#. 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:" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Pakettia %s ei löytynyt" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" +#: 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-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] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" -msgstr[1] "" -"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " -"vaadittuja:" +#: 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-private/private-install.cc:517 +#: cmdline/apt-get.cc:367 #, 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:" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: 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\"." +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: 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-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Pakettia %s ei löytynyt" -#: 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-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" + +#: 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-private/private-install.cc:638 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 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." +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." 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." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Rikkinäiset paketit" +#: 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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Noutokansiota ei saatu lukittua" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Ehdotetut paketit:" +#: 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-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Suositellut paketit:" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Paketin %s lähdekoodipakettia ei löytynyt" -#: apt-private/private-install.cc:825 +#: cmdline/apt-get.cc:786 #, 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" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: 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" +#: 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/private-install.cc:841 +#: cmdline/apt-get.cc:839 #, 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" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s on jo uusin versio.\n" +msgid "Couldn't determine free space in %s" +msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" -#: 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" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" -#: 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" +#. 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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" -#. 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" +#. TRANSLATOR: The required 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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: 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" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Nouda lähdekoodi %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 "" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Nouto on valmis ja määrätty vain nouto" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Varoitus varmistamisesta on ohitettu.\n" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" -#: 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" +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Asennetaanko nämä paketit ilman todennusta?" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Tiedoston %s nouto ei onnistunut %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nimen muuttaminen %s -> %s ei onnistunut" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Lapsiprosessi kaatui" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" msgstr "" +"On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:1056 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Löytyi " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Nouda:" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: 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" - -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:1126 #, c-format -msgid " [Working]" -msgstr " [Työskennellään]" +msgid "%s has no build depends.\n" +msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-get.cc:1296 +#, fuzzy, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" 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" +"riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: 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:1314 #, c-format -msgid "Unable to change to %s" -msgstr "Kansioon %s vaihto ei onnistu" +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" -#. 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:1337 #, c-format -msgid "No mirror file '%s' found " +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" -#. 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:1376 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Tiedostoa %s ei voitu avata" +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" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:1382 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Tiedostoa %s ei voitu avata" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +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" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "IPC-putken luominen aliprosessiin ei onnistunut" +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Yhteys katkesi ennenaikaisesti" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Oletusasetus ei kelpaa!" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: 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." +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Avataan yhteys %s (%s)" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Tuetut moduulit:" -#: dselect/install:102 +#: cmdline/apt-get.cc:1657 #, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" +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" -#: dselect/install:103 +#: cmdline/apt-helper.cc:35 #, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan" +msgid "Must specify at least one pair url/filename" +msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"tai tyydyttämättömät riippuvuudet aiheuttavat virheitä. Tämä ei haittaa" -#: dselect/install:105 +#: cmdline/apt-helper.cc:66 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"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" +#: 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-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hajautusalkiota ei löytynyt!" +#: 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-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Korvautuksen varaus ei onnistunut" +#: 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-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion: sisäinen virhe" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s on jo uusin versio.\n" -#: 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-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s on jo uusin versio.\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Korvautuksen kaksoislisäys %s -> %s" +#: 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-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Asetustiedoston kaksoiskappale %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Polku %s on liian pitkä" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Purettiin %s useammin kuin kerran" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Kansio %s on korvautunut" - -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Korvautuspolku on liian pitkä" - -#: 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 "Tiedostolle %s ei toimi stat" - -#: 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-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla" - -#: apt-inst/extract.cc: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 "Overwrite package match with no version for %s" -msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Tiedostolle %s ei toimi stat" - -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Tiedoston %s kirjoittaminen ei onnistunut" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Tiedoston %s sulkeminen ei onnistunut" - -#: 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 "Tämä ei ole kelvollinen DEB-arkisto, puuttuu tiedosto \"%s\"" - -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" -msgstr "Tapahtui sisäinen virhe, tiedostoa %s ei löydy" - -#: 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 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, 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 "Unknown TAR header type %u, member %s" -msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "stat %s ei onnistu." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -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" +msgid "Canceled hold on %s.\n" +msgstr "Tiedoston %s avaaminen ei onnistunut" -#: 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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa ja %i paritonta " -"tiedostoa\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %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." msgstr "" -#: apt-pkg/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Kohteen %s tarkistussumma ei täsmää" - -#: 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" - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Menetelmä %s ei käynnistynyt oikein" - -#: 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." - -#: 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 "" -"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" -#: 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" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "Tuntematon osoiteperhe %u (AF_*)" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Pistokkeen kytkeminen aikakatkaistiin" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Yhteyttä ei voitu hyväksyä" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Pulmia tiedoston hajautuksessa" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:890 #, 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ää" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Koko ei täsmää" +msgid "Unable to fetch file, server said '%s'" +msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Virheellinen toiminto %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Pistoke aikakatkaistiin" -#: 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 "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" -#: 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ää" +#. 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" -#: 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" +#: methods/connect.cc:76 +#, c-format +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" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Käytetään rompun liitoskohtaa %s\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:599 -msgid "Waiting for disc...\n" -msgstr "Odotetaan levyä...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Tapahtui virhe luettaessa palvelimelta" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Liitetään romppu...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Tunnistetaan... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Select ei toiminut" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Tallennettu nimio: %s \n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Yhteys aikakatkaistiin" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Etsitään levyltä hakemistotiedostoja...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: 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/server.cc:51 +msgid "Waiting for headers" +msgstr "Odotetaan otsikoita" -#: 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 "Virheellinen otsikkorivi" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Löytyi nimiö: \"%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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" +#: 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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Tämä levy on: \n" -"\"%s\"\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:819 -msgid "Copying package lists..." -msgstr "Kopioidaan pakettiluetteloita..." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP-palvelimen arvoaluetuki on rikki" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Kirjoitetaan uusi lähdeluettelo\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Tuntematon päiväysmuoto" -#: 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:496 +msgid "Bad header data" +msgstr "Virheellinen otsikkotieto" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Yhteys ei toiminut" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " -"paketit." -#: 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:692 +msgid "Internal error" +msgstr "Sisäinen virhe" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Muodostetaan riippuvuussuhteiden puu" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Käsitellään päivitystä ... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Mahdolliset versiot" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Valmis" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Luodaan riippuvuudet" +#: 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 "Luetaan tilatiedot" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Tilatiedoston %s avaaminen 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/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Korjataan riippuvuuksia..." -#: 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:96 +msgid " failed." +msgstr " ei onnistunut." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Riippuvuuksien korjaus ei onnistu" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Päivitysjoukon minimointi 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:104 +msgid " Done" +msgstr " Valmis" -#: 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: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:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Pakettia %s ei löytynyt" +#: 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-pkg/cacheset.cc:615 +#: apt-private/private-output.cc:233 #, 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Asennettu]" + +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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:612 +msgid "The following held packages will be changed:" +msgstr "Seuraavat pysytetyt paketit muutetaan:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, c-format -msgid "Opening %s" -msgstr "Avataan %s" +msgid "%lu downgraded, " +msgstr "%lu varhennettua, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, 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:718 #, 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:740 +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:746 +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:757 +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:763 +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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, c-format -msgid "Completely removed %s" -msgstr "%s poistettiin kokonaan" +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:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:212 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-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Tiedostoon %s kirjoittaminen ei onnistu" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Kyllä, tee kuten käsketään!" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:224 +#, 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:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Keskeytä." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Haluatko jatkaa?" + +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Joidenkin tiedostojen nouto ei onnistunut" + +#: apt-private/private-install.cc:322 +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/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "Puuttuvia paketteja ei voi korjata." + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Asennus keskeytetään." + +#: apt-private/private-install.cc:368 +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:372 +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:393 +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:1638 +#: apt-private/private-install.cc:501 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 "" +"Hmm, nähtävästi AutoRemover tuhosi jotain, mitä ei pitäisi tapahtua.\n" +"Tekisitkö vikailmoituksen apt:sta." + +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a disk full " -"error" -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-private/private-install.cc:519 +#, 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:" -#: 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:521 +#, 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/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:614 +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-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " +"ilmanpaketteja (tai ratkaise itse)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"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." -#: 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-install.cc:661 +msgid "Broken packages" +msgstr "Rikkinäiset paketit" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Ehdotetut paketit:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Suositellut paketit:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "" +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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:855 +#, 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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "" +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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "Valintaa %s ei löydy" +msgid "%s is already the newest version.\n" +msgstr "%s on jo uusin versio.\n" -#: 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-install.cc:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Valittiin versio %s (%s) paketille %s\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:925 +#, 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Lukitusta ei käytetä NFS-liitetylle tiedostolle %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Lukkoa %s ei saada" +#: apt-private/private-install.cc:973 +#, 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-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 "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" -#: 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 "Varoitus varmistamisesta on ohitettu.\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 "Joidenkin pakettien alkuperästä ei voitu varmistua" -#: 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:50 +msgid "Install these packages without verification?" +msgstr "Asennetaanko nämä paketit ilman todennusta?" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Aliprosessi %s aiheutti suojausvirheen." +msgid "Failed to parse %s. Edit again? " +msgstr "Nimen muuttaminen %s -> %s ei onnistunut" -#: 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 "Aliprosessi %s palautti virhekoodin (%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 "Aliprosessi %s lopetti odottamatta" +#: 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 "Pulmia tiedoston sulkemisessa" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Löytyi " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Tiedostoa %s ei voitu avata" +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Nouda:" -#: 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/acqprogress.cc:119 +msgid "Ign " +msgstr "Siv " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Prosessien välistä kommunikaatiota aliprosessiin ei saatu luotua" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Vrhe " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Pakkaajan käynnistäminen ei onnistunut" +#: apt-private/acqprogress.cc:147 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Noudettiin %st ajassa %s (%st/s)\n" -#: 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/acqprogress.cc:237 +#, c-format +msgid " [Working]" +msgstr " [Työskennellää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/acqprogress.cc:298 +#, c-format +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/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Pulmia tiedoston sulkemisessa" +#. 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 "Pulmia tehtäessä tiedostolle sync" +msgid "Can not read mirror file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Pulmia tehtäessä tiedostolle unlink" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Pulmia tehtäessä tiedostolle sync" - -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Virhe!" +msgid "No entry found in mirror file '%s'" +msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Valmis" - -#: 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... Valmis" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "IPC-putken luominen aliprosessiin ei onnistunut" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Yhteys katkesi ennenaikaisesti" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Putkea %s ei voitu avata" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Oletusasetus ei kelpaa!" -#: 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: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:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Tiedoston %s avaaminen ei onnistunut" +#: 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:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:102 #, 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" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Tiedoston typistäminen ei onnistunut" +#: dselect/install:103 +#, fuzzy +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:184 #, 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 =." -msgstr "Valitsin %s: Asetusarvon määrityksessä on oltava =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3181,12 +3194,7 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Tiedostolle %s ei toimi stat" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?" @@ -3306,17 +3314,17 @@ msgstr "Mitkään valinnat eivät täsmänneet" msgid "Some files are missing in the package file group `%s'" msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Tietokanta on turmeltunut, tiedosto nimetty %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Tietokanta on vanha, yritetään päivittää %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3325,105 +3333,105 @@ msgstr "" "Tietokannan muoto ei kelpaa. Jos tehtiin päivitys vanhasta apt:n versiosta, " "on tietokanta poistettava ja luotava uudelleen." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Tietokantatiedostoa %s ei saatu avattua: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "readlink %s ei onnistunut" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arkistolla ei ole ohjaustietuetta" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Kohdistinta ei saada" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Kansiota %s ei voi lukea\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Tdstolle %s ei toimi stat\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Tiedostossa virheitä " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Osoitteen %s selvitys ei onnistunut" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Puun läpikäynti ei onnistunut" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Tiedoston %s avaaminen ei onnistunut" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "readlink %s ei onnistunut" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "unlink %s ei onnistunut" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Linkin %s -> %s luonti ei onnistunut" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLinkin yläraja %st saavutettu.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arkistossa ei ollut pakettikenttää" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ylläpitäjä on %s eikä %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n" diff --git a/po/fr.po b/po/fr.po index aabcbd214..40b640005 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2013-08-17 07:57+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -19,3335 +19,3348 @@ msgstr "" "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Le fichier de cache des paquets est corrompu" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Le fichier de cache des paquets a une version incompatible" + +#: apt-pkg/pkgcache.cc:164 +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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +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:324 +msgid "Suggests" +msgstr "Suggère" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installé : " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recommande" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidat : " +#: apt-pkg/pkgcache.cc:325 +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:325 +msgid "Replaces" +msgstr "Remplace" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Épinglage de paquet : " +#: apt-pkg/pkgcache.cc:326 +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:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Améliore" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "important" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "nécessaire" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "optionnel" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "supplémentaire" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pour %s compilé sur %s %s\n" +msgid "Index file type '%s' is not supported" +msgstr "Le type de fichier d'index « %s » n'est pas accepté" -#: 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/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erreur de compilation de l'expression rationnelle - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Le cache possède un système de version incompatible" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Erreur apparue lors du traitement de %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." 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" +"Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " +"capable de traiter." -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" +"Vous avez dépassé le nombre de versions que cette version d'APT est capable " +"de traiter." -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -"Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" - -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Impossible de monter « %s » sur « %s »" +"Vous avez dépassé le nombre de descriptions que cette version d'APT est " +"capable de traiter." -#: 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." +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." 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." +"Vous avez dépassé le nombre de dépendances que cette version d'APT est " +"capable de traiter." -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" msgstr "" -"Veuillez répéter cette opération pour tous les disques de votre jeu de " -"cédéroms." +"Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " +"fichiers" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Les paramètres ne sont pas appariés" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Impossible de localiser la liste des paquets sources %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 "" -"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" +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Lecture des listes de paquets" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Assemblage des fichiers listés dans les champs Provides" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Impossible d'écrire sur %s" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" msgstr "" -"Impossible de trouver de paquet correspondant à l'expression rationnelle " -"« %s »" +"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" +#: 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: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-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Envoi d'une requête au solveur" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Impossible de trouver le paquet %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Préparation à la réception de la solution" -#: 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 passé en « installé manuellement ».\n" +#: 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:461 cmdline/apt-mark.cc:83 +#: 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" + +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s passé en « installé automatiquement ».\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "impossible de changer le nom, %s (%s -> %s)." -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Somme de contrôle de hachage incohérente" + +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Taille incohérente" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "L'opération %s n'est pas valable" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" -"mark manual »." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#: apt-pkg/acquire-item.cc:1697 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" msgstr "" -"Erreur interne, la tentative de résolution du problème a cassé certaines " -"parties" +"Impossible de trouver la comme de contrôle de « %s » dans le fichier Release" -#: 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/acquire-item.cc:1737 +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:726 -msgid "Must specify at least one package to fetch source for" -msgstr "Vous devez spécifier au moins un paquet source" +#: apt-pkg/acquire-item.cc:1775 +#, 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." -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossible de trouver une source de paquet pour %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"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 "" -"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" +"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:791 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -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" +msgid "GPG error: %s: %s" +msgstr "Erreur de GPG : %s : %s" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:1972 #, 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 "" +"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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Impossible de déterminer l'espace disponible sur %s" +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:882 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Pas assez d'espace disponible sur %s" +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." -#. 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/vendorlist.cc:85 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Nécessité de prendre %so/%so dans les sources.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" -#. TRANSLATOR: The required 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.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Nécessité de prendre %so dans les sources.\n" +msgid "List directory %spartial is missing." +msgstr "Le répertoire %spartial pour les listes n'existe pas." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:92 #, 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:314 -msgid "Download complete and in download only mode" -msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" +msgid "Archives directory %spartial is missing." +msgstr "Le répertoire d'archive %spartial n'existe pas." -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:100 #, 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 "Unable to lock directory %s" +msgstr "Impossible de verrouiller le répertoire %s" -#: cmdline/apt-get.cc:962 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "La commande de décompactage « %s » a échoué.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Téléchargement du fichier %li sur %li (%s restant)" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:927 #, 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 "Retrieving file %li of %li" +msgstr "Téléchargement du fichier %li sur %li" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "La commande de construction « %s » a échoué.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Impossible de récupérer %s %s\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Échec du processus fils" +#: 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." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -"Il faut spécifier au moins un paquet pour vérifier les dépendances de " -"construction" +"Vous devez insérer quelques adresses « sources » dans votre sources.list" -#: cmdline/apt-get.cc:1054 +#: 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 "" -"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)." +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossible d'obtenir les dépendances de construction pour %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Enregistrement non valable dans le fichier de préférences %s, aucune entrée " +"« Package »." -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s n'a pas de dépendance de construction.\n" +msgid "Did not understand pin type %s" +msgstr "Type d'épinglage %s inconnu" + +#: 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" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, 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 "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas " -"autorisé avec les paquets « %s »." +"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)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Impossible de configurer « %s »." -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:584 #, 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 "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne " -"peut être trouvé" +"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: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 "" -"Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " -"est trop récent" +msgid "Line %u too long in source list %s." +msgstr "La ligne %u du fichier des listes de sources %s est trop longue." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Démontage du cédérom...\n" + +#: 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" -#: cmdline/apt-get.cc:1351 +#: 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 "" -"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." +"%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " +"et %zu signatures\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 "" -"La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s " -"n'a pas de version disponible." +"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " +"ou bien l'architecture est-elle incorrecte." -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" +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" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Build-dependencies for %s could not be satisfied." +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." +"Ce disque s'appelle :\n" +"« %s »\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Impossible d'activer les dépendances de construction" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copie des listes de paquets..." -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Journal des modifications pour %s (%s)" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Écriture de la nouvelle liste de sources\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Modules reconnus :" +#: 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" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/algorithms.cc:265 +#, 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" +"The package %s needs to be reinstalled, but I can't find an archive for it." 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" - -#: 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" +"Le paquet %s doit être réinstallé, mais il est impossible de trouver son " +"archive." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: 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." -#: 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/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 »." -#: cmdline/apt-mark.cc:68 +#: 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:169 #, 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:269 #, 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:490 #, 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:493 #, 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:597 cmdline/apt-cache.cc:1567 #, 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:604 #, 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:610 +#, 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:616 +#, 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:627 +#, 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:634 apt-pkg/cacheset.cc:641 #, 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" +"Impossible de choisir une version installée ou candidate du paquet « %s » " +"qui n'en n'a aucune" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Mauvais cédérom" +#: apt-pkg/cacheset.cc:648 +#, 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" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -"Impossible de démonter le cédérom dans %s, il doit toujours être en cours " -"d'utilisation." +"Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disque non trouvé." +#: apt-pkg/cacheset.cc:664 +#, 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fichier non trouvé" +#: apt-pkg/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Impossible d'analyser le fichier Release %s" -#: 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:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Pas de sections dans 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 " - -#: 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:136 +#, 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:149 +#, 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:168 +#, 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" - -#: 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" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Le serveur a fermé la connexion" - -#: 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" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Une réponse a fait déborder le tampon." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corruption du protocole" - -#: 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" - -#: 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" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" 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 -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" - -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossible d'envoyer la commande PORT" +"Ligne %lu mal formée dans la liste des sources %s ([%s] la clé %s n'a pas de " +"valeur)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Famille d'adresses %u inconnue (AF_*)" +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:811 +#: apt-pkg/sourcelist.cc:208 #, 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é" +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:838 -msgid "Unable to accept connection" -msgstr "Impossible d'accepter une connexion" +#: 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:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problème de hachage du fichier" +#: 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:890 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" +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: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/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Ouverture de %s" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" +msgid "Malformed line %u in source list %s (type)" +msgstr "Ligne %u mal formée dans la liste des sources %s (type)" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Requête" +#: apt-pkg/sourcelist.cc:375 +#, 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" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossible d'invoquer " +#: 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/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Connexion à %s (%s)" +msgid "Installing %s" +msgstr "Installation de %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 "Configuration de %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 "Impossible de créer de connexion pour %s (f=%u t=%u p=%u)" +msgid "Removing %s" +msgstr "Suppression de %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." +msgid "Completely removing %s" +msgstr "Suppression complète de %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 "Connexion à %s: %s (%s) impossible, délai de connexion dépassé" +msgid "Noting disappearance of %s" +msgstr "Disparition de %s constatée" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Connexion à %s: %s (%s) impossible." +msgid "Running post-installation trigger %s" +msgstr "Exécution des actions différées (« trigger ») 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 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Connecting to %s" -msgstr "Connexion à %s" +msgid "Directory '%s' missing" +msgstr "Répertoire %s inexistant" -#: 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 "Ne parvient pas à résoudre « %s »" +msgid "Could not open file '%s'" +msgstr "Impossible d'ouvrir le fichier « %s »" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Erreur temporaire de résolution de « %s »" +msgid "Preparing %s" +msgstr "Préparation de %s" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Erreur système lors de la résolution de « %s:%s »" +msgid "Unpacking %s" +msgstr "Décompression de %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:995 #, 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 configure %s" +msgstr "Préparation de la configuration de %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossible de se connecter à %s:%s :" +msgid "Installed %s" +msgstr "%s installé" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Erreur interne : signature correcte, mais il est impossible de déterminer " -"l'empreinte de la clé." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Préparation de la suppression de %s" -#: 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:1004 +#, c-format +msgid "Removed %s" +msgstr "%s supprimé" -#: 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/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Préparation de la suppression complète de %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 complètement supprimé" + +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" 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:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Impossible d'écrire sur %s" -#: 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:1067 +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" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" 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" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/http.cc:509 -msgid "Error writing to the file" -msgstr "Erreur d'écriture sur le fichier" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "L'opération a été interrompue avant de se terminer" -#: 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:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erreur de lecture du serveur" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problème de dépendances : laissé non configuré" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erreur d'écriture sur un fichier" +#: apt-pkg/deb/dpkgpm.cc:1632 +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." -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Sélection défaillante" +#: apt-pkg/deb/dpkgpm.cc:1638 +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:626 -msgid "Connection timed out" -msgstr "Délai de connexion dépassé" +#: apt-pkg/deb/dpkgpm.cc:1645 +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:649 -msgid "Error writing to output file" -msgstr "Erreur d'écriture du fichier de sortie" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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/server.cc:51 -msgid "Waiting for headers" -msgstr "Attente des fichiers d'en-tête" +#: apt-pkg/deb/dpkgpm.cc:1679 +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/server.cc:109 -msgid "Bad header line" -msgstr "Mauvaise ligne d'en-tête" +#: 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: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: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:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Le serveur http a envoyé un en-tête « Content-Length » invalide" +#. 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: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/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non verrouillé" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ce serveur http possède un support des limites non-valide" +#. 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:220 -msgid "Unknown date format" -msgstr "Format de date inconnu" +#. 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:489 -msgid "Bad header data" -msgstr "Mauvais en-tête de donnée" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Échec de la connexion" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erreur interne" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "La sélection %s n'a pu être trouvée" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calcul de la mise à jour... " +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Verrou non utilisé pour le fichier %s en lecture seule" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Fait" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Impossible d'ouvrir le fichier verrou %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Impossible d'obtenir le verrou %s" + +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:164 +#: apt-pkg/contrib/fileutl.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 "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-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Correction des dépendances..." +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +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:96 -msgid " failed." -msgstr " a échoué." +#: apt-pkg/contrib/fileutl.cc:841 +#, 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:99 -msgid "Unable to correct dependencies" -msgstr "Impossible de corriger les dépendances" +#: apt-pkg/contrib/fileutl.cc:843 +#, 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:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossible de minimiser le nombre des paquets mis à jour" +#: apt-pkg/contrib/fileutl.cc:847 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:104 -msgid " Done" -msgstr " Fait" +#: apt-pkg/contrib/fileutl.cc:849 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: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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Erreur d'écriture" -#: 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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problème de fermeture du fichier gzip %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:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Impossible d'ouvrir le fichier %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Impossible d'ouvrir le descripteur de fichier %d" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Impossible de créer un sous-processus IPC" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Impossible d'exécuter la compression " -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Erreur de lecture" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installé]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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:248 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +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:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problème de fermeture du fichier %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "mais %s est installé" +msgid "Problem renaming the file %s to %s" +msgstr "Problème de renommage du fichier %s en %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "mais %s devra être installé" +msgid "Problem unlinking the file %s" +msgstr "Problème de suppression du lien %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "mais il n'est pas installable" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problème de synchronisation du fichier" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "mais c'est un paquet virtuel" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Impossible de statuer pour %s." -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "mais il n'est pas installé" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erreur !" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "mais ne sera pas installé" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Fait" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ou" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Les paquets suivants contiennent des dépendances non satisfaites :" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Les NOUVEAUX paquets suivants seront installés :" +#: 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:528 -msgid "The following packages will be REMOVED:" -msgstr "Les paquets suivants seront ENLEVÉS :" +#: 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:550 -msgid "The following packages have been kept back:" -msgstr "Les paquets suivants ont été conservé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:571 -msgid "The following packages will be upgraded:" -msgstr "Les paquets suivants seront mis à jour :" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Impossible de fermer la « mmap »" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" +#: 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:612 -msgid "The following held packages will be changed:" -msgstr "Les paquets retenus suivants seront changés :" +#: 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:667 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Échec de la troncature du fichier" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%s (due to %s) " -msgstr "%s (en raison de %s) " +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:675 +#: 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 "" -"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 la limite de %lu octets " +"est déjà atteinte." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/mmap.cc:449 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Impossible d'augmenter la taille de la « mmap » car l'augmentation " +"automatique a été désactivée par une option utilisateur." + +#: 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:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossible d'accéder au cédérom." + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu réinstallés, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Type d'abréviation non reconnue : « %c »" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu remis à une version inférieure, " +msgid "Opening configuration file %s" +msgstr "Ouverture du fichier de configuration %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu à enlever et %lu non mis à jour.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu partiellement installés ou enlevés.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erreur syntaxique %s:%u : balise mal formée" -#. 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:740 -msgid "[Y/n]" -msgstr "[O/n]" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" -#. 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:746 -msgid "[y/N]" -msgstr "[o/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "O" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Erreur de compilation de l'expression rationnelle - %s" +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: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:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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: Extra junk at end of file" +msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" -#: 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 "Pas de porte-clés installé dans %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/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." -#: 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/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 "L'option %s de la ligne de commande n'est pas reconnue" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Erreur interne. Le tri a été interrompu." +#: apt-pkg/contrib/cmndline.cc:168 +#, 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" -#: 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." +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +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 strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, 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 "Option %s: Configuration item specification must have an =." +msgstr "Option %s : l'item configuration doit être spécifiée avec un =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Il est nécessaire de prendre %so dans les archives.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'option %s prend un nombre entier en paramètre, et non « %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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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' is too long" +msgstr "L'option « %s » est trop longue" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, 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 "Sense %s is not understood, try true or false." +msgstr "La signification %s n'est pas comprise, veuillez essayer vrai ou faux." -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Pas assez d'espace disponible sur %s" +msgid "Invalid operation %s" +msgstr "L'opération %s n'est pas valable" -#: 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" +#: cmdline/apt-cache.cc:149 +#, 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" -#: 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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Nombre total de paquets : " -# 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 !" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Nombre total de structures de paquets : " -#: 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 "" -"Vous êtes sur le point de faire quelque chose de potentiellement dangereux\n" -"Pour continuer, tapez la phrase « %s »\n" -" ?]" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Paquets ordinaires : " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Annulation." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Paquets entièrement virtuels : " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Souhaitez-vous continuer ?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Paquets virtuels simples : " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Certains fichiers n'ont pu être téléchargés." +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Paquets virtuels mixtes : " -#: 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 ?" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Manquants : " -#: 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." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Nombre de versions distinctes : " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Impossible de corriger le fait que les paquets manquent." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Nombre de descriptions distinctes : " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Annulation de l'installation." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Nombre de dépendances : " -#: 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] "" -"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:372 +msgid "Total ver/file relations: " +msgstr "Nombre de relations version/fichier : " -#: apt-private/private-install.cc:370 -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:374 +msgid "Total Desc/File relations: " +msgstr "Nombre de relations description/fichier : " -#: apt-private/private-install.cc:391 -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:376 +msgid "Total Provides mappings: " +msgstr "Nombre de relations « Provides » : " -#: 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 "" -"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:388 +msgid "Total globbed strings: " +msgstr "Nombre de motifs rationnels : " -#. -#. 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 : " +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Espace occupé par les versions des dépendances : " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "" -"Erreur interne, l'outil de suppression automatique a cassé quelque chose." +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Espace disque gaspillé : " -#: 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] "" -"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:422 +msgid "Total space accounted for: " +msgstr "Total de l'espace attribué : " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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" +msgid "Package file %s is out of sync." +msgstr "Fichier %s désynchronisé." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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: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:1306 +msgid "You must give at least one search pattern" +msgstr "Vous devez fournir au moins un motif de recherche" -#: 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:1472 +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: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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Fichiers du paquet :" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquets défectueux" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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:712 -msgid "The following extra packages will be installed:" -msgstr "Les paquets supplémentaires suivants seront installés : " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Paquets épinglés :" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquets suggérés :" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(non trouvé)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquets recommandés :" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Installé : " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidat : " -#: apt-private/private-install.cc:829 -#, 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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(aucun)" -#: apt-private/private-install.cc:841 -#, 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:1672 +msgid " Package pin: " +msgstr " Épinglage de paquet : " -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s est déjà la plus récente version disponible.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Table de version :" -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 "Version choisie « %s » (%s) pour « %s »\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pour %s compilé sur %s %s\n" -#: apt-private/private-install.cc:899 -#, 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:1801 +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" -#. 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" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"Le paquet « %s » n'est pas installé, et ne peut donc être supprimé. Peut-" -"être vouliez-vous écrire « %s » ?\n" +"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" + +#: 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/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, 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 "Failed to mount '%s' to '%s'" +msgstr "Impossible de monter « %s » sur « %s »" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 +#, 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!" +"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 "" -"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" +"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-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" +#: 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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Faut-il installer ces paquets sans vérification ?" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Les paramètres ne sont pas appariés" -#: 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" +#: 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 "" +"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" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Impossible de changer le nom %s en %s" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Can not find a package for architecture '%s'" msgstr "" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" msgstr "" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %s »" -#: 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 -#, c-format -msgid " [Working]" -msgstr " [En cours]" - -#: 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-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" 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" +"Impossible de trouver de paquet correspondant à l'expression rationnelle " +"« %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:367 #, c-format -msgid "Unable to change to %s" -msgstr "Impossible d'accéder à %s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Choix de « %s » comme paquet source à la place de « %s »\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 "Aucun fichier miroir « %s » n'a été trouvé" +#: 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" -#. 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:454 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Impossible de lire le fichier de miroir « %s »." +msgid "Couldn't find package %s" +msgstr "Impossible de trouver le paquet %s" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Pas d'entrée trouvée dans le fichier de miroir « %s »." +msgid "%s set to manually installed.\n" +msgstr "%s passé en « installé manuellement ».\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, 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." - -#: 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 ?" - -#: 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 "" -"ont été installés vont être configurés . Il peut en résulter d'autres erreurs" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"ou des erreurs provoquées par les dépendances manquantes. C'est bénin, " -"seules les erreurs." +msgid "%s set to automatically installed.\n" +msgstr "%s passé en « installé automatiquement ».\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 "" -"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é !" +"Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" +"mark manual »." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Échec lors de l'allocation de la déviation" +#: 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/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erreur interne dans AddDiversion" +#: 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/filelist.cc:477 -#, 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" +#: 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/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Addition double d'une déviation %s -> %s" +msgid "Unable to find a source package for %s" +msgstr "Impossible de trouver une source de paquet pour %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fichier de configuration en double %s/%s" +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:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:791 #, c-format -msgid "The path %s is too long" -msgstr "Le chemin %s est trop long" +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:132 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Unpacking %s more than once" -msgstr "Veuillez décompresser %s plus d'une fois" +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:142 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "The directory %s is diverted" -msgstr "Le répertoire %s est détourné" +msgid "Couldn't determine free space in %s" +msgstr "Impossible de déterminer l'espace disponible sur %s" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:884 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Le paquet est en train d'essayer d'écrire sur la cible détournée %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Le chemin de déviation est trop long" +msgid "You don't have enough free space in %s" +msgstr "Pas assez d'espace disponible sur %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:893 #, c-format -msgid "Failed to stat %s" -msgstr "Impossible de statuer %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Nécessité de prendre %so/%so dans les sources.\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:898 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Impossible de changer le nom %s en %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Nécessité de prendre %so dans les sources.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:904 #, 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" +msgid "Fetch source %s\n" +msgstr "Récupération des sources %s\n" -#: 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" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Échec lors de la récupération de quelques archives." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Le chemin est trop long" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Écrase la correspondance de paquet sans version pour %s " +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/extract.cc:438 +#: cmdline/apt-get.cc:964 #, 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 "Unpack command '%s' failed.\n" +msgstr "La commande de décompactage « %s » a échoué.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Unable to stat %s" -msgstr "Impossible de statuer pour %s." +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to write file %s" -msgstr "Erreur d'écriture du fichier %s" +msgid "Build command '%s' failed.\n" +msgstr "La commande de construction « %s » a échoué.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Échec de clôture du fichier %s" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Échec du processus fils" -#: 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 "Ce n'est pas une archive DEB valide, partie « %s » manquante" +#: cmdline/apt-get.cc:1031 +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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1056 #, 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 "" +"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-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Signature d'archive invalide" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Impossible d'obtenir les dépendances de construction pour %s" -#: 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:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s n'a pas de dépendance de construction.\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Invalid archive member header %s" -msgstr "En-tête du membre d'archive %s non valable" +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-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "En-tête du membre d'archive non-valable" +#: cmdline/apt-get.cc:1314 +#, c-format +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-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'archive est trop petite" +#: cmdline/apt-get.cc:1337 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " +"est trop récent" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Échec de la lecture des en-têtes d'archive" +#: cmdline/apt-get.cc:1376 +#, 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." -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Échec de création de tubes" +#: cmdline/apt-get.cc:1382 +#, c-format +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-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Impossible d'exécuter gzip " +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archive corrompue" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "" +"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: 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:1425 +msgid "Failed to process build dependencies" +msgstr "Impossible d'activer les dépendances de construction" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" +msgid "Changelog for %s (%s)" +msgstr "Journal des modifications pour %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Impossible de localiser %s." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Modules reconnus :" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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 "" +"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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Exécution de dpkg" - -#: 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-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/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-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 "%i enregistrements écrits.\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 "%i enregistrements écrits avec %i fichiers manquants.\n" +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" -#: 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 "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s était déjà marqué comme installé manuellement.\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 "" -"%i enregistrements écrits avec %i fichiers manquants et %i qui ne " -"correspondent pas\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s était déjà marqué comme installé automatiquement.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" +msgid "%s was already set on hold.\n" +msgstr "%s était déjà marqué comme figé (« hold »).\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Somme de contrôle de hachage incohérente pour %s" +msgid "%s was already not hold.\n" +msgstr "%s était déjà marqué comme non figé.\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 "Le pilote pour la méthode %s n'a pu être trouvé." - -#: 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" +msgid "%s set on hold.\n" +msgstr "%s passé en figé (« hold »).\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 "La méthode %s n'a pas démarré correctement" +msgid "Canceled hold on %s.\n" +msgstr "Annulation de l'état figé pour %s.\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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" msgstr "" -"Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " -"touche Entrée." +"Échec de l'exécution de dpkg. Possédez-vous les privilèges du " +"superutilisateur ?" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: 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 "" -"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." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "La liste des sources ne peut être lue." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache des paquets vide" - -#: 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" +"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: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.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 "Cet APT ne supporte pas le système de version « %s »" - -#: 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" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Dépend" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Dépend" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggère" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recommande" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Est en conflit avec" +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 "Replaces" -msgstr "Remplace" +#: 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:323 -msgid "Obsoletes" -msgstr "Rend obsolète" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Mauvais cédérom" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Casse" +#: 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 "Enhances" -msgstr "Améliore" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disque non trouvé." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "important" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fichier non trouvé" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "nécessaire" +#: 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 "standard" -msgstr "standard" +#: 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:335 -msgid "optional" -msgstr "optionnel" +#: 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:335 -msgid "extra" -msgstr "supplémentaire" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Connexion en cours" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Le type de fichier d'index « %s » n'est pas accepté" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossible de déterminer le nom de la machine distante" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Le cache possède un système de version incompatible" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossible de déterminer le nom 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 "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." +msgid "The server refused the connection and said: %s" +msgstr "Le serveur a refusé notre connexion et a répondu : %s" -#: 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." +#: methods/ftp.cc:225 +#, c-format +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" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corruption du protocole" + +#: 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" + +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -"Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" +"Impossible de se connecter sur le port de données, délai de connexion dépassé" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Envoi du scénario au solveur" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Échec" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Envoi d'une requête au solveur" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Impossible de se connecter au port en mode passif." -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Préparation à la réception de la solution" +#: 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/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Échec du solveur externe sans message d'erreur adapté" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Impossible de se connecter à un port" -#: 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" +#: 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" + +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossible d'envoyer la commande PORT" -#: 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 "impossible de changer le nom, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Famille d'adresses %u inconnue (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Somme de contrôle de hachage incohérente" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT a échoué, le serveur a répondu : %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Taille incohérente" +#: 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:173 -#, fuzzy -msgid "Invalid file format" -msgstr "L'opération %s n'est pas valable" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossible d'accepter une connexion" -#: 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 "" -"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " -" ligne non valable dans sources.list ou fichier corrompu" +#: 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:1597 +#: methods/ftp.cc:890 #, 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 "Unable to fetch file, server said '%s'" +msgstr "Impossible de récupérer le fichier, 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: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: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 "" -"Le fichier « Release » pour %s a expiré (plus valable depuis %s). Les mises " -"à jour depuis ce dépôt ne s'effectueront pas." +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:1699 +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" +msgid "Connecting to %s (%s)" +msgstr "Connexion à %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 "" -"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 "[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 "Erreur de GPG : %s : %s" +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-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 "" -"Impossible de localiser un fichier du paquet %s. Cela signifie que vous " -"devrez corriger ce paquet vous-même (absence d'architecture)." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Impossible d'initialiser la connexion à %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 "" -"Impossible de trouver une source de téléchargement de la version « %s » de " -"« %s »" +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-item.cc:1991 +#: methods/connect.cc:126 #, 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 "Could not connect to %s:%s (%s)." +msgstr "Connexion à %s: %s (%s) impossible." -#: 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 "Le bloc de fournisseur %s ne comporte pas d'empreinte" +msgid "Connecting to %s" +msgstr "Connexion à %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 "Le répertoire %spartial pour les listes n'existe pas." +msgid "Could not resolve '%s'" +msgstr "Ne parvient pas à résoudre « %s »" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Le répertoire d'archive %spartial n'existe pas." +msgid "Temporary failure resolving '%s'" +msgstr "Erreur temporaire de résolution de « %s »" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:209 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossible de verrouiller le répertoire %s" +msgid "System error resolving '%s:%s'" +msgstr "Erreur système lors de la résolution de « %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 "Téléchargement du fichier %li sur %li (%s restant)" +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)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Téléchargement du fichier %li sur %li" +msgid "Unable to connect to %s:%s:" +msgstr "Impossible de se connecter à %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 "" -"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." +"Erreur interne : signature correcte, mais il est impossible de déterminer " +"l'empreinte de la clé." -#: 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/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: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 "" -"La valeur « %s » n'est pas valable pour APT::Default-Release car cette " -"version ne fait pas partie des sources disponibles." +"Impossible d'exécuter « gpgv » pour contrôler la signature (veuillez " +"vérifier si gpgv est installé)." -#: 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 "" -"Enregistrement non valable dans le fichier de préférences %s, aucune entrée " -"« Package »." +"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/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Type d'épinglage %s inconnu" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erreur inconnue à l'exécution de gpgv" -#: 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:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Les signatures suivantes ne sont pas valables :\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 "" -"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)" - -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Impossible de configurer « %s »." +"Les signatures suivantes n'ont pas pu être vérifiées car la clé publique " +"n'est pas disponible :\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." -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." +#: 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: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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erreur d'écriture sur le fichier" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Démontage du cédérom...\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: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:525 +msgid "Error reading from server" +msgstr "Erreur de lecture du serveur" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Attente du disque...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erreur d'écriture sur un fichier" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montage du cédérom...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Sélection défaillante" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identification..." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Délai de connexion dépassé" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Étiquette stockée : %s\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erreur d'écriture du fichier de sortie" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Examen du disque à la recherche de fichiers d'index...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Attente des fichiers d'en-tête" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Mauvaise ligne d'en-tête" -#: 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: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:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Étiquette « %s » trouvée\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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" +#: 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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ce disque s'appelle :\n" -"« %s »\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:819 -msgid "Copying package lists..." -msgstr "Copie des listes de paquets..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format de date inconnu" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Écriture de la nouvelle liste de sources\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Mauvais en-tête de donnée" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Échec de la connexion" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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 »." +#: methods/server.cc:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installé]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Installé]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "Les paquets suivants seront ENLEVÉS :" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Les paquets suivants ont été conservés :" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Les paquets suivants seront mis à jour :" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Les paquets suivants seront mis à une VERSION INFÉRIEURE :" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Les paquets retenus suivants seront changés :" + +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, 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:714 #, 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:718 #, 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:740 +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:746 +msgid "[y/N]" +msgstr "[o/N]" + +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "O" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "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)" +#: 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/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 "" -"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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +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:224 #, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Annulation." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:245 +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:315 +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:322 +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:326 +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:331 +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:332 +msgid "Aborting install." +msgstr "Annulation de l'installation." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:368 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] "" +"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-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -"Aucun rapport « apport » n'a été créé car le message d'erreur indique une " -"erreur consécutive à un échec précédent." +"Note : cette opération volontaire (effectuée par dpkg) est automatique." -#: 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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" +"Aucune suppression n'est censée se produire : impossible de lancer " +"« Autoremover »" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:501 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 "" -"Aucun « apport » n'a été créé car une erreur de dépassement de capacité " -"mémoire a été signalée" +"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:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy -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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -"Aucun rapport « apport » n'a été créé car un disque plein a été signalé" +"Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:515 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" +"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-private/private-install.cc:519 +#, 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" + +#: apt-private/private-install.cc:521 +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-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +#: apt-private/private-install.cc:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Impossible de verrouiller le répertoire d'administration (%s). Il est " -"possible qu'un autre processus l'utilise." +"Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +#: apt-private/private-install.cc:616 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les " -"privilèges du superutilisateur ?" +"Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" +"(ou indiquez une solution)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:640 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 a été interrompu. Il est nécessaire d'utiliser « %s » pour corriger le " -"problème." - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non verrouillé" +"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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Paquets recommandés :" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Connexion fermée prématurément" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Impossible de fermer la « mmap »" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Mauvais paramètre par défaut !" -#: 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: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: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: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:322 -msgid "Failed to truncate file" -msgstr "Échec de la troncature du fichier" +#: 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" -#: 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 "" -"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-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erreur interne dans 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 "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-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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "Option %s : l'item configuration doit être spécifiée avec un =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3371,12 +3384,7 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Impossible de statuer pour %s." - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?" @@ -3498,17 +3506,17 @@ msgid "Some files are missing in the package file group `%s'" msgstr "" "Quelques fichiers sont manquants dans le groupe de fichiers de paquets « %s »" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Base de données corrompue, fichier renommé en %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Base de données ancienne, tentative de mise à jour de %s\"" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3516,105 +3524,105 @@ msgstr "" "Le format de la base de données n'est pas valable. Si vous mettez APT à " "jour, veuillez supprimer puis recréer la base de données." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Impossible d'ouvrir le fichier de base de données %s : %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Impossible de lire le lien %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "L'archive n'a pas d'enregistrement de contrôle" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Impossible d'obtenir un curseur" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A : Impossible de lire le contenu du répertoire %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A : Impossible de statuer %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E : " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A : " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E : des erreurs sont survenues sur le fichier " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Impossible de résoudre %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Échec du parcours de l'arbre" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Impossible d'ouvrir %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Délier %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Impossible de lire le lien %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Impossible de délier %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Impossible de lier %s à %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Seuil de delink de %so atteint.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "L'archive ne possède pas de champ de paquet" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr "%s ne possède pas d'entrée « override »\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " le responsable de %s est %s et non %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s ne possède pas d'entrée « source override »\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ne possède pas également pas d'entrée « binary override »\n" diff --git a/po/gl.po b/po/gl.po index cd140fe1f..297a9a6a9 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: galician \n" @@ -22,3238 +22,3251 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: Galician\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Caché de paquetes baleira" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "O ficheiro de caché de paquetes está danado" + +#: apt-pkg/pkgcache.cc:161 +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:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "O ficheiro de caché de paquetes está danado" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "O ficheiro de paquete %s está sen sincronizar." +msgid "This APT does not support the versioning system '%s'" +msgstr "Este APT non admite o sistema de versionado «%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 "Non se atopou ningún paquete" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "A caché de paquetes construíuse para unha arquitectura diferente" -#: 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:324 +msgid "Depends" +msgstr "Depende" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "PreDepende" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Suxire" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomenda" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Conflitos" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Substitúe a" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Fai obsoleto a" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Estraga" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Mellora" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "requirido" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "estándar" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Non foi posíbel atopar o paquete %s" +msgid "Index file type '%s' is not supported" +msgstr "O tipo de ficheiros de índices «%s» non está admitido" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheiros de paquetes:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Produciuse un erro na compilación da expresión regular - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "A caché ten un sistema de versionado incompatíbel" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Produciuse un erro ao procesar %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " -"paquetes" +"Vaites!, superou o número de nomes de paquetes que este APT pode manexar." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Paquetes inmobilizados:" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non se atopou)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " +"ficheiros" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ningún)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Inmobilizado: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Lendo as listas de paquetes" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Táboa de versións:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Recollendo as provisións de ficheiros" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado en %s %s\n" +msgid "Unable to write to %s" +msgstr "Non é posíbel escribir en %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 [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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +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/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" -#: 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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Os argumentos non van en parellas" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "non foi posíbel cambiar o nome, %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 "" -"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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "A sumas «hash» non coinciden" -#: 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-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Os tamaños non coinciden" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operación incorrecta: %s" -#: 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/acquire-item.cc:1679 +#, 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)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" +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" -#: 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/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "Non foi posíbel atopar o paquete %s" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s cambiado a instalado manualmente.\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:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s está estabelecido para a súa instalación automática.\n" - -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Produciuse un erro interno, o solucionador interno estragou cousas" - -#: 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" - -#: 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" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Non sé posíbel atopar un paquete fonte para %s" +msgid "GPG error: %s: %s" +msgstr "Produciuse un erro de GPG: %s %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" -"%s\n" +"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: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/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" 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/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Omítese o ficheiro xa descargado «%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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Non foi posíbel determinar o espazo libre en %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "O bloque de provedor %s non contén unha pegada dixital" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Non hai espazo libre abondo en %s" +msgid "List directory %spartial is missing." +msgstr "Non se atopa a lista de directorios %sparcial." -#. 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.cc:92 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" +msgid "Archives directory %spartial is missing." +msgstr "Non se atopa a lista de arquivos %sparcial." -#. TRANSLATOR: The required 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.cc:100 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Ten que recibir %sB de arquivos de fonte.\n" +msgid "Unable to lock directory %s" +msgstr "Non é posíbel bloquear o directorio %s" -#: cmdline/apt-get.cc:902 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter fonte %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Non se puideron obter algúns arquivos." +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Obtendo o ficheiro %li de %li (restan %s)" -#: 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-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Obtendo o ficheiro %li de %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, 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 "Failed to fetch %s %s\n" +msgstr "Non foi posíbel obter %s %s\n" + +#: 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" -#: cmdline/apt-get.cc:962 +#: 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 "Unpack command '%s' failed.\n" -msgstr "Fallou a orde de desempaquetado «%s».\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:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Fallou a orde de construción de «%s».\n" +msgid "Did not understand pin type %s" +msgstr "Non se entendeu o tipo de inmobilización %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "O proceso fillo fallou" +#: 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" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Ten que especificar polo menos un paquete para comprobarlle as dependencias " -"de compilació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)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Non foi posíbel abrir o ficheiro «%s»" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "Liña %u longa de máis na lista de orixes %s." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Desmontando o CD-ROM...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s non ten dependencias de compilación.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Empregando o punto de montaxe de CD-ROM %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Agardando polo disco...\n" + +#: 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 "Stored label: %s\n" +msgstr "Etiqueta almacenada: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Buscando os ficheiros de índices no disco...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +"Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de " +"traducións e %zu sinaturas\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +"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-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Atopouse a etiqueta «%s»\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Ese non é un nome correcto, volva tentalo.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s " -"é novo de máis" +"Este disco chámase: \n" +"«%s»\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando as listas de paquetes..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Escribindo a nova lista de orixes\n" + +#: 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" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." 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" +"O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " +"arquivo." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " -"paquete %s" +"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " +"causado por paquetes retidos." + +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construindo a árbore de dependencias" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versións candidatas" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Xeración de dependencias" + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Non foi posíbel abrir o ficheiro de estado %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Non se puideron satisfacer as dependencias de construción de %s." +msgid "Failed to write temporary StateFile %s" +msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Non se puideron procesar as dependencias de construción" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Non é posíbel analizar o ficheiro de paquetes %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Rexistro de cambios de %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Non é posíbel analizar o ficheiro de paquetes %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos admitidos:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Non se atopou a publicación «%s» de «%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 "" -"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/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Non se atopou a versión «%s» de «%s»" -#: 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/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Non foi posíbel atopar o paquete %s" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Non foi posíbel atopar a tarefa «%s»" + +#: apt-pkg/cacheset.cc:610 +#, 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-pkg/cacheset.cc:616 +#, 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»" + +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" +"Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete " +"«%s» xa que non ten ningunha delas" -#: 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/cacheset.cc:648 +#, 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" -#: 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/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" +"Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten " +"candidata" -#: 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/cacheset.cc:664 +#, c-format +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" -#: 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/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Non se puido analizar o ficheiro de publicación %s" -#: 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/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Non hai seccións no ficheiro de publicación %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/indexrecords.cc:136 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Agardouse por %s pero non estaba alí" +msgid "No Hash entry in Release file %s" +msgstr "Non hai entrada de Hash no ficheiro de publicación %s" -#: 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/indexrecords.cc:149 +#, 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" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "A entrada «Date» no ficheiro de publicación %s non é válida" + +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Non foi posíbel abrir %s" +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)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: 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)" -#: 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/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)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Non é posíbel ler a base de datos do CD-ROM %s" +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/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/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" 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" +"Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten valor)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM incorrecto" +#: 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/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:208 #, 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" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Non é posíbel determinar o nome local" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Liña %lu mal construída na lista de orixes %s (dist)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor rexeitou a conexión e dixo: %s" +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/ftp.cc:225 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "USER failed, server said: %s" -msgstr "Fallou a orde USER, o servidor dixo: %s" +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/ftp.cc:232 +#: apt-pkg/sourcelist.cc:224 #, 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." -msgstr "" -"Especificouse un servidor proxy pero non un script de conexión, Acquire::" -"ftp::ProxyLogin está baleiro." +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/ftp.cc:280 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s" +msgid "Opening %s" +msgstr "Abrindo %s" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:371 #, 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" - -#: 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" - -#: methods/ftp.cc:716 methods/connect.cc:116 -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" +msgid "Malformed line %u in source list %s (type)" +msgstr "Liña %u mal construída na lista de orixes %s (tipo)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Non é posíbel determinar o nome do socket" +#: 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/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Non é posíbel enviar a orde PORT" +#: 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/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Familia de enderezos %u (AF_*) descoñecida" +msgid "Installing %s" +msgstr "Instalando %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 "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" +msgid "Configuring %s" +msgstr "Configurando %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 "Non é posíbel obter o ficheiro, o servidor dixo «%s»" +msgid "Removing %s" +msgstr "Retirando %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "O socket de datos esgotou o tempo" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s completamente retirado" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" +msgid "Noting disappearance of %s" +msgstr "Tomando nota da desaparición de %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Petición" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Executando o disparador de post-instalación %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Non é posíbel chamar a " +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Falta o directorio «%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 "Conectando a %s (%s)" +msgid "Could not open file '%s'" +msgstr "Non foi posíbel abrir o ficheiro «%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 "Preparando %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 "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)" +msgid "Unpacking %s" +msgstr "Desempaquetando %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "Preparandose 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 "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo" +msgid "Installed %s" +msgstr "Instalouse %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Non foi posíbel conectar a %s:%s (%s)." +msgid "Preparing for removal of %s" +msgstr "Preparándose para o retirado 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 "Conectando a %s" +msgid "Removed %s" +msgstr "Retirouse %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Non foi posíbel atopar «%s»" +msgid "Preparing to completely remove %s" +msgstr "Preparándose para retirar %s completamente" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Produciuse un fallo temporal ao buscar «%s»" +msgid "Completely removed %s" +msgstr "Retirouse %s completamente" -#: 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 "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 -#, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Non é posíbel conectar %s:%s:" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Non é posíbel escribir en %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -"Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " -"dixital da chave" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Atopouse polo menos unha sinatura incorrecta." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" msgstr "" -"Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " -"gpgv?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Agardouse por %s pero non estaba alí" + +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Produciuse un erro descoñecido ao executar gpgv" +#: apt-pkg/deb/dpkgpm.cc:1625 +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" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "As seguintes sinaturas non eran correctas:\n" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependencias - déixase sen configurar" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" -"Non se puideron verificar as seguintes sinaturas porque a chave pública non " -"está dispoñíbel:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" +"Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que " +"é un error provinte dun fallo anterior." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Produciuse un erro ao escribir no ficheiro" +#: apt-pkg/deb/dpkgpm.cc:1638 +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." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -"Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" +"Non se escribiu un informe de contribución porque a mensaxe de erro indica " +"un erro de falta de memoria" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Produciuse un erro ao ler do servidor" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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." -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Produciuse un erro ao escribir nun ficheiro" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Fallou a chamada a select" +#: 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?" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "A conexión esgotou o tempo" +#: 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?" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Produciuse un erro ao escribir no ficheiro de saída" +#. 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. " -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Agardando polas cabeceiras" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non está bloqueado" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Liña de cabeceira incorrecta" +#. 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:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta" +#. 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:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "" -"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: 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" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Non se atopou a selección %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de datos descoñecido" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Datos da cabeceira incorrectos" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Produciuse un fallo na conexión" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Produciuse un erro interno" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Non foi posíbel obter o bloqueo %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando a anovación... " +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Feito" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:422 +#, 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" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:841 #, 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 subproceso %s recibiu un fallo de segmento." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrixindo as dependencias..." +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "O subproceso %s recibiu o sinal %u." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " fallou." +#: apt-pkg/contrib/fileutl.cc:847 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Non foi posíbel corrixir as dependencias." +#: apt-pkg/contrib/fileutl.cc:849 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Non foi posíbel minimizar o conxunto de anovacións" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Produciuse un erro de escritura" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Feito" - -#: 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/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Produciuse un problema ao pechar o arquivo gzip %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependencias incumpridas. Probe a empregar -f." +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Non foi posíbel abrir o ficheiro %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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Non foi posíbel abrir o descritor de ficheiro %d" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Non foi posíbel crear o IPC do subproceso" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Non foi posíbel executar o compresor " -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Produciuse un erro de lectura" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Problem closing the file %s" +msgstr "Produciuse un problema ao pechar o ficheiro %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "mais %s está instalado" +msgid "Problem renaming the file %s to %s" +msgstr "Produciuse un problema ao renomear o ficheiro %s a %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "mais vaise instalar %s" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "mais non é instalábel" +msgid "Problem unlinking the file %s" +msgstr "Produciuse un problema ao desligar o ficheiro %s" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "mais é un paquete virtual" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Produciuse un problema ao sincronizar o ficheiro" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "mais non está instalado" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Non é posíbel determinar o estado %s" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "mais non se vai a instalar" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erro!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ou" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Feito" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Os seguintes paquetes teñen dependencias sen cumprir:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Os seguintes paquetes NOVOS hanse instalar:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Feito" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Vanse RETIRAR os paquetes seguintes:" +#: 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-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Consérvanse os seguintes paquetes:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Non foi posíbel duplicar o descritor de ficheiro %i" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Vanse anovar os paquetes seguintes:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Vanse REVERTER os seguintes paquetes :" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Non é posíbel pechar mmap" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Vanse modificar os paquetes retidos seguintes:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Non é posíbel sincronizar mmap" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por mor de %s) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "Non foi posíbel facer mmap de %lu bytes" -#: apt-private/private-output.cc:675 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Non foi posíbel truncar o ficheiro" + +#: 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 "" -"AVISO: Retiraranse os seguintes paquetes esenciais.\n" -"Isto NON se debe facer a menos que saiba exactamente o que está a facer!" +"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-output.cc:706 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu anovados, %lu instalados, " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi " +"acadado." -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +#: 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-output.cc:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "%lu revertidos, " +msgid "Unable to stat the mount point %s" +msgstr "Non é posíbel analizar o punto de montaxe %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Non foi posíbel analizar o CD-ROM" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviatura de tipo «%c» descoñecida" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu non instalados ou retirados de todo.\n" +msgid "Opening configuration file %s" +msgstr "Abrindo o ficheiro de configuración %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:740 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/configuration.cc:803 +#, 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." -#. 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:746 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Produciuse un erro na compilación da expresión regular - %s" +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-update.cc:31 -msgid "The update command takes no arguments" -msgstr "A orde «update» non toma argumentos" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, 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-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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: Extra junk at end of file" +msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña" -#: 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 "Non ha ningún chaveiro instalado en %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/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:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Hai que retirar paquetes mais o retirado está desactivado." +#: 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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Produciuse un erro interno; non rematou a ordenación" +#: 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: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" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "A opción %s precisa dun argumento." -#. 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Ten que recibir %sB/%sB de arquivos.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"Opción %s: A especificación de elemento de configuración debe ter un =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Ten que recibir %sB de arquivos.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "A opción %s precisa dun argumento enteiro, non «%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "A opción «%s» é longa de máis" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, 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 "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:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Non hai espazo libre abondo en %s." +msgid "Invalid operation %s" +msgstr "Operación incorrecta: %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 "Xurdiron problemas e empregouse -y sen --force-yes" +#: 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: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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Número total de nomes de paquetes : " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Estruturas de paquetes totais: " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Paquetes normais: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Interromper." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Paquetes virtuais puros: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Quere continuar?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Paquetes virtuais simples: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Non foi posíbel descargar algúns ficheiros" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Paquetes virtuais mixtos: " -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" -"missing." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Non atopados: " -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "" -"O emprego conxunto de --fix-missing e intercambio de discos non está admitido" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Número total de versións distintas: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Número total de descricións distintas: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Interrompendo a instalación." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Número total de dependencias: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Número total de relacións versión/ficheiro: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Número total de relacións descrición/ficheiro: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Non se agarda que eliminemos cousas, non se pode iniciar o Retirado " -"automático" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Número total de asignacións provistas: " -#: 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 "" -"Vaia, semella que o Retirado automático destruíu algo que realmente\n" -"non debería ter feito. Informe deste erro de apt." +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Número total de cadeas: " -#. -#. 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:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Espazo total de versións de dependencias: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Espazo de reserva total: " -#: 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] "" -"O seguinte paquete foi instalado automaticamente e xa non é necesario:" -msgstr[1] "" -"Os seguintes paquetes foron instalados automaticamente e xa non son " -"necesarios:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Espazo total contabilizado: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 paquete foi instalado automaticamente e xa non é necesario.\n" -msgstr[1] "" -"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n" +msgid "Package file %s is out of sync." +msgstr "O ficheiro de paquete %s está sen sincronizar." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Debe fornecer cando menos un patrón de busca" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " -"especifique unha solución)." -#: 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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Ficheiros de paquetes:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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." +"A caché está sen sincronizar, non se pode facer referencia a un ficheiro de " +"paquetes" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paquetes estragados" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Paquetes inmobilizados:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Instalaranse os seguintes paquetes extra:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(non se atopou)" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paquetes suxeridos:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalado: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paquetes recomendados:" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ningún)" -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Inmobilizado: " -#: apt-private/private-install.cc:841 -#, 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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Táboa de versións:" -#: apt-private/private-install.cc:846 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 xa é a versión máis recente.\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado en %s %s\n" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versión seleccionada «%s» (%s) para «%s»\n" +#: cmdline/apt-cache.cc:1801 +#, 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-private/private-install.cc:899 -#, 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" +#: 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»" -#. 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" +#: 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-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" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Produciuse un fallo ao montar «%s» en «%s»" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVISO: Non se poden autenticar os seguintes paquetes!" +#: 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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Ignórase o aviso de autenticación.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Os argumentos non van en parellas" -#: 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-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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes paquetes sen verificación?" +#: 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-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-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-private/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Non foi posíbel cambiar o nome de %s a %s" +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-private/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, 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 " -msgstr "Teño " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Rcb:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Obtivéronse %sB en %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Non foi posíbel atopar o paquete %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Traballando]" +msgid "%s set to manually installed.\n" +msgstr "%s cambiado a 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á estabelecido para a súa instalación automática.\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 "" -"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-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" -#: 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-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Non é posíbel bloquear o directorio de descargas" -#. 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» " +#: 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" -#. 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:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Non é posíbel ler o ficheiro de replica «%s»" - -#: 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»" +msgid "Unable to find a source package for %s" +msgstr "Non sé posíbel atopar un paquete fonte para %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:786 #, c-format -msgid "[Mirror: %s]" -msgstr "[Replica: %s]" - -#: 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" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "A conexión pechouse prematuramente" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configuración predeterminada incorrecta!" - -#: 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." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Quere borrar os ficheiros .deb descargados anteriormente?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -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" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"ou erros causados por dependencias incumpridas. Isto é normal, só os erros" +"AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" +"%s\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:791 +#, fuzzy, 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 "" -"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" +"Empregue:\n" +"bzr get %s\n" +"para obter as últimas actualizacións (posibelmente non publicadas) do " +"paquete.\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:839 #, 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" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Omítese o ficheiro xa descargado «%s»\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Desvío %s -> %s engadido dúas veces" +msgid "Couldn't determine free space in %s" +msgstr "Non foi posíbel determinar o espazo libre en %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Ficheiro de configuración %s/%s duplicado" +msgid "You don't have enough free space in %s" +msgstr "Non hai espazo libre abondo 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:893 #, c-format -msgid "The path %s is too long" -msgstr "A ruta %s é longa de máis" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\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:898 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempaquetando %s máis dunha vez" +msgid "Need to get %sB of source archives.\n" +msgstr "Ten que recibir %sB de arquivos de fonte.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is diverted" -msgstr "O directorio %s está desviado" +msgid "Fetch source %s\n" +msgstr "Obter fonte %s\n" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Non se puideron obter algúns arquivos." -#: 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:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Completouse a descarga no modo de só descargas" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "Non foi posíbel determinar o estado %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-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Non foi posíbel cambiar o nome de %s a %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Fallou a orde de desempaquetado «%s».\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:965 #, 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" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: 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" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Fallou a orde de construción de «%s».\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "A ruta é longa de máis" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "O proceso fillo fallou" -#: 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:1031 +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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "O ficheiro %s/%s sobrescribe o do paquete %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:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "Non é posíbel determinar o estado %s" +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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "Non foi posíbel escribir no ficheiro «%s»" +msgid "%s has no build depends.\n" +msgstr "%s non ten dependencias de compilación.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Non foi posíbel pechar o ficheiro %s" +#: cmdline/apt-get.cc:1296 +#, 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" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " +"paquete %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1337 #, 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" +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-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 "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" - -#: 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 "Unknown TAR header type %u, member %s" -msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Non é posíbel analizar %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1376 +#, 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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Executando dpkg" +#: cmdline/apt-get.cc:1382 +#, 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" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "O sistema de empaquetado «%s» non está admitido" - -#: 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" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Wrote %i records.\n" -msgstr "Escribíronse %i rexistros.\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Non se puideron satisfacer as dependencias de construción de %s." -#: 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-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Non se puideron procesar as dependencias de construción" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Wrote %i records with %i mismatched files\n" -msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" +msgid "Changelog for %s (%s)" +msgstr "Rexistro de cambios de %s (%s)" -#: 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:1616 +msgid "Supported modules:" +msgstr "Módulos admitidos:" + +#: cmdline/apt-get.cc:1657 +#, 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 "" -"Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non " -"coinciden\n" +"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/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-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/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Valor de hash non coincidente para: %s" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: 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-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 "Comprobe que o paquete «dpkg-dev» estea instalado.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "mais non está instalado" -#: 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-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s cambiado a instalado manualmente.\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-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/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-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/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-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/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Non foi posíbel ler a lista de orixes." +#: 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:155 -msgid "Empty package cache" -msgstr "Caché de paquetes baleira" +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "O ficheiro de caché de paquetes está danado" +#: 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 "O ficheiro de caché de paquetes é unha versión incompatíbel" +#: 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 "O ficheiro de caché de paquetes está danado" +#: 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 "Este APT non admite o sistema de versionado «%s»" - -#: 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" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PreDepende" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suxire" +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:322 -msgid "Recommends" -msgstr "Recomenda" +#: 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:322 -msgid "Conflicts" -msgstr "Conflitos" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM incorrecto" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitúe a" +#: 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:323 -msgid "Obsoletes" -msgstr "Fai obsoleto a" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Non se atopou o disco" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Estraga" +#: 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:323 -msgid "Enhances" -msgstr "Mellora" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "requirido" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "URI incorrecto, os URI locais non deben comezar por //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "estándar" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Identificándose" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Non é posíbel determinar o nome do outro extremo" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Non é posíbel determinar o nome 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 "O tipo de ficheiros de índices «%s» non está admitido" +msgid "The server refused the connection and said: %s" +msgstr "O servidor rexeitou a conexión e dixo: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "A caché ten un sistema de versionado incompatíbel" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Fallou a orde USER, o servidor dixo: %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 "Produciuse un erro ao procesar %s (FindPkg)" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Fallou a orde PASS, o servidor dixo: %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 "" -"Vaites!, superou o número de nomes de paquetes que este APT pode manexar." - -#: 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." - -#: 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." - -#: 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." +"Especificouse un servidor proxy pero non un script de conexión, Acquire::" +"ftp::ProxyLogin está baleiro." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "" -"Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " -"ficheiros" +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:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" +msgid "TYPE failed, server said: %s" +msgstr "Fallou a orde TYPE, 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: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:1316 -msgid "Collecting File Provides" -msgstr "Recollendo as provisións de ficheiros" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "O servidor pechou 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:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Unha resposta desbordou o búfer." -#: 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:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Dano no protocolo" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -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 "Non é posíbel crear un socket" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: 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 "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Fallou" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Non é posíbel conectar o socket pasivo." -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: 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: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:749 +msgid "Could not bind a socket" +msgstr "Non é posíbel ligar un socket" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "A sumas «hash» 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:168 -msgid "Size mismatch" -msgstr "Os tamaños non coinciden" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Non é posíbel determinar o nome do socket" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Operación incorrecta: %s" +#: 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" + +#: 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" -#: apt-pkg/acquire-item.cc:1677 +#: 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 "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%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:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" +msgid "Data transfer failed, server said '%s'" +msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»" -#: apt-pkg/acquire-item.cc:1729 +#. 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 " + +#: 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 "" -"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 "Connecting to %s (%s)" +msgstr "Conectando a %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 "Produciuse un erro de 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 "" -"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 "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-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 "Non é posíbel iniciar a conexión a %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 "" -"Os ficheiros de índices de paquetes están danados. Non hai un campo " -"Filename: para o paquete %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" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "O bloque de provedor %s non contén unha pegada dixital" +msgid "Could not connect to %s:%s (%s)." +msgstr "Non foi posíbel conectar a %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 "Non se atopa a lista de directorios %sparcial." +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Non se atopa a lista de arquivos %sparcial." +msgid "Could not resolve '%s'" +msgstr "Non foi posíbel atopar «%s»" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Non é posíbel bloquear o directorio %s" +msgid "Temporary failure resolving '%s'" +msgstr "Produciuse un fallo temporal ao buscar «%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 "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Obtendo o ficheiro %li de %li (restan %s)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Obtendo o ficheiro %li de %li" +msgid "Unable to connect to %s:%s:" +msgstr "Non é posíbel conectar %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 "" -"Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou " -"foron utilizados algúns antigos no seu lugar" +"Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada " +"dixital da chave" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Atopouse polo menos unha sinatura incorrecta." -#: 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 "" +"Non é posíbel executar «gpgv» para verificar a sinatura (Está instalado " +"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 "" -"Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package" -#: 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:184 +msgid "Unknown error executing gpgv" +msgstr "Produciuse un erro descoñecido ao executar gpgv" -#: 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" +#: 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/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 "" -"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)" +"Non se puideron verificar as seguintes sinaturas porque a chave pública non " +"está dispoñíbel:\n" -#: 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/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" -#: 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 "" -"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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Produciuse un erro ao escribir no ficheiro" -#: 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." +#: 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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Desmontando 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: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:561 +msgid "Error writing to file" +msgstr "Produciuse un erro ao escribir nun ficheiro" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Agardando polo disco...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Fallou a chamada a select" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando o CD-ROM...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "A conexión esgotou o tempo" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: 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:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etiqueta almacenada: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Agardando polas cabeceiras" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Buscando os ficheiros de índices no disco...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Liña de cabeceira incorrecta" -#: 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/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: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 "" -"Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa " -"un disco de Debian ou que a arquitectura sexa incorrecta." - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Atopouse a etiqueta «%s»\n" +"O servidor HTTP enviou unha cabeceira cunha lonxitude de contido 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: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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Este disco chámase: \n" -"«%s»\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:819 -msgid "Copying package lists..." -msgstr "Copiando as listas de paquetes..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de datos descoñecido" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Escribindo a nova lista de orixes\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Datos da cabeceira incorrectos" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Produciuse un fallo na conexión" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " -"causado por paquetes retidos." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "Vanse RETIRAR os paquetes seguintes:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Consérvanse os seguintes paquetes:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Vanse anovar os paquetes seguintes:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Vanse REVERTER os seguintes paquetes :" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Vanse modificar os paquetes retidos seguintes:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (por mor de %s) " + +#: apt-private/private-output.cc:675 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten valor)" +"AVISO: Retiraranse os seguintes paquetes esenciais.\n" +"Isto NON se debe facer a menos que saiba exactamente o que está a facer!" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Liña %lu mal construída na lista de orixes %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu anovados, %lu instalados, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Liña %lu mal construída na lista de orixes %s (dist)" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:712 #, 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 "%lu downgraded, " +msgstr "%lu revertidos, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:714 #, 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 to remove and %lu not upgraded.\n" +msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:718 #, 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 not fully installed or removed.\n" +msgstr "%lu non instalados ou retirados de todo.\n" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Abrindo %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:740 +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:746 +msgid "[y/N]" +msgstr "[s/N]" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "S" -#: 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" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "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" +#: 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:95 +#: apt-private/private-update.cc:90 #, c-format -msgid "Installing %s" -msgstr "Instalando %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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Configurando %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-show.cc:156 #, c-format -msgid "Removing %s" -msgstr "Retirando %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:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s completamente retirado" +#: 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 "Tomando nota da desaparición de %s" +#: apt-private/private-install.cc:84 +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:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando o disparador de post-instalación %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Hai que retirar paquetes mais o retirado está desactivado." -#. 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-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Produciuse un erro interno; non rematou a ordenación" -#: 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-install.cc:150 +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/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:157 #, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Ten que recibir %sB/%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:162 #, c-format -msgid "Unpacking %s" -msgstr "Desempaquetando %s" +msgid "Need to get %sB of archives.\n" +msgstr "Ten que recibir %sB de arquivos.\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:169 #, c-format -msgid "Preparing to configure %s" -msgstr "Preparandose para configurar %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: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:174 #, c-format -msgid "Installed %s" -msgstr "Instalouse %s" +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:1002 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparándose para o retirado de %s" +msgid "You don't have enough free space in %s." +msgstr "Non hai espazo libre abondo en %s." -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "Retirouse %s" +#: apt-private/private-install.cc:212 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:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparándose para retirar %s completamente" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Retirouse %s completamente" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Si, fai o que digo!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:224 +#, 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: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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Interromper." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Quere continuar?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Non foi posíbel descargar algúns ficheiros" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:322 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" +"missing." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" msgstr "" -"Non se escribiu ningún informe de Apport porque xa se acadou o nivel " -"MaxReports" +"O emprego conxunto de --fix-missing e intercambio de discos non está admitido" -#. 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:331 +msgid "Unable to correct missing packages." +msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." -#: 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-install.cc:332 +msgid "Aborting install." +msgstr "Interrompendo a instalación." -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:368 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] "" +"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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Isto será feito automaticamente por dpkg." + +#: apt-private/private-install.cc:393 +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:1651 +#: apt-private/private-install.cc:501 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 "" -"Non se escribiu un informe de contribución porque a mensaxe de erro indica " -"un erro de falta de memoria" +"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/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" + +#: apt-private/private-install.cc:515 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." +"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-private/private-install.cc:519 +#, 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" + +#: apt-private/private-install.cc:521 +#, 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/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-install.cc:614 +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/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:616 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-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +"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:640 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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Paquetes recomendados:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 +#, 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:973 +#, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Produciuse un erro interno en 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 "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-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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "" -"Opción %s: A especificación de elemento de configuración debe ter un =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3278,12 +3291,7 @@ msgstr "" " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Non é posíbel determinar o estado %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Non é posíbel obter a versión de debconf. Debconf está instalado?" @@ -3403,17 +3411,17 @@ msgstr "Non coincide ningunha selección" msgid "Some files are missing in the package file group `%s'" msgstr "Faltan ficheiros no grupo de ficheiros de paquetes «%s»" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "A base de datos estaba danada, cambiouse o nome do ficheiro a %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "A base de datos é antiga, tentando anovar %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3421,105 +3429,105 @@ msgstr "" "O formato da base de datos non é correcto. Se a anovou desde unha versión " "antiga de apt, retirea e volva a crear a base de datos" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Non é posíbel abrir o ficheiro de base de datos %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Non foi posíbel ler a ligazón %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "O arquivo non ten un rexistro de control" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Non é posíbel obter un cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: non é posíbel ler o directorio %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: non é posíbel atopar %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: os erros aplícanse ao ficheiro " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Non foi posíbel solucionar %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Fallou o percorrido da árbore" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Non foi posíbel abrir %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DesLig %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Non foi posíbel ler a ligazón %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Non foi posíbel desligar %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Non foi posíbel ligar %s con %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Acadouse o límite de desligado de %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "O arquivo non tiña un campo Package" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s non ten unha entrada de «override»\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " O mantedor de %s é %s, non %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ten unha entrada de «override» de código fonte\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampouco ten unha entrada de «override» de binarios\n" diff --git a/po/hu.po b/po/hu.po index 43472dc88..130bfabf8 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -21,3238 +21,3251 @@ msgstr "" "X-Poedit-Country: HUNGARY\n" "X-Poedit-Language: Hungarian\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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" + +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "A források listája olvashatatlan." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Üres csomaggyorsítótár" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "A csomaggyorsítótár fájl megsérült" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "A csomaggyorsítótár-fájl inkompatibilis verziójú" + +#: apt-pkg/pkgcache.cc:164 +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" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "%s csomagfájl nincs szinkronban." +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: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/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "A csomaggyorsítótár egy másik architektúrához készült" -#: 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:324 +msgid "Depends" +msgstr "Függ ettől" -#: 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:324 +msgid "PreDepends" +msgstr "Függ ettől (előfüggés)" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Javasolja" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Ajánlja" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Ütközik" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Kicseréli" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Elavulttá teszi" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Töri" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Bővíti" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "fontos" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "szükséges" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "szabványos" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcionális" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Ez a csomag nem található: %s" +msgid "Index file type '%s' is not supported" +msgstr "A(z) „%s” indexfájltípus nem támogatott" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Csomagfájlok:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex fordítási hiba - %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 gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Rögzített csomagok:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, 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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nem található)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Telepítve: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Jelölt: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nincs)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Csomagrögzítés: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " +"közben" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Verziótáblázat:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Csomaglisták olvasása" + +# FIXME +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "„Biztosítja” kapcsolatok összegyűjtése" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n" +msgid "Unable to write to %s" +msgstr "Nem lehet írni ebbe: %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 "" -"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" - -#: 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "IO hiba a forrás-gyorsítótár mentésekor" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "A helyzet elküldése a solvernek" -#: 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" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Kérés küldése a solvernek" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Felkészülés megoldás fogadására" -#: 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/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-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Az argumentumok nincsenek párban" +#: 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-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/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "sikertelen átnevezés, %s (%s -> %s)." -#: 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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "A Hash Sum nem megfelelő" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "A méret nem megfelelő" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "%s érvénytelen művelet" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1679 #, 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 "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"A(z) „%2$s” csomag el nem érhető „%1$s” verziójának figyelmen kívül hagyása" +"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)" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Couldn't find package %s" -msgstr "Az alábbi csomag nem található: %s" +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" -#: 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 kézi telepítésűre állítva.\n" +#: apt-pkg/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s megjelölve automatikusan telepítettként.\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." +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " -"auto” parancsokat." - -#: 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" +"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: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/acquire-item.cc:1797 +#, c-format +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:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1827 +#, 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 "" -"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" +"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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nem található forráscsomag ehhez: %s" +msgid "GPG error: %s: %s" +msgstr "GPG hiba: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van " -"karbantartva:\n" -"%s\n" +"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:791 +#: apt-pkg/acquire-item.cc:2038 +#, 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" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." 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" +"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "A már letöltött „%s” fájl kihagyása\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" +msgid "List directory %spartial is missing." +msgstr "A(z) %spartial listakönyvtár hiányzik." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nincs elég szabad hely itt: %s" +msgid "Archives directory %spartial is missing." +msgstr "A(z) %spartial archívumkönyvtár hiányzik." -#. 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.cc:100 #, 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 lock directory %s" +msgstr "%s könyvtár zárolása sikertelen" -#. TRANSLATOR: The required 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" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li/%li fájl letöltése (%s marad)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "Forrás letöltése: %s\n" +msgid "Retrieving file %li of %li" +msgstr "%li/%li fájl letöltése" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nem sikerült néhány archívumot letölteni." +#: 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" -#: 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-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." -#: cmdline/apt-get.cc:950 -#, 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" +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "„%s” kibontási parancs nem sikerült.\n" +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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, 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 "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:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "„%s” elkészítési parancs nem sikerült.\n" +msgid "Did not understand pin type %s" +msgstr "A(z) %s rögzítéstípus nem értelmezhető" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Hiba a gyermekfolyamatnál" +#: 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" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Legalább egy csomagot adjon meg, amelynek fordítási függőségeit ellenőrizni " -"kell" +"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:1054 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "A(z) „%s” beállítása sikertelen" + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" -"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." +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM leválasztása...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, 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 "Using CD-ROM mount point %s\n" +msgstr "%s CD-ROM csatolási pont használata\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Várakozás a lemezre...\n" -#: cmdline/apt-get.cc:1271 +#: 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 "Stored label: %s\n" +msgstr "Tárolt címke: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Indexfájlok keresése a lemezen...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" 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" +"%zu csomagindex, %zu forrásindex, %zu fordításindex és %zu aláírás " +"megtalálva\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem " -"található" +"Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem " +"megfelelő az architektúra?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, 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 "Found label '%s'\n" +msgstr "Talált címke: „%s”\n" + +#: 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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" 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" +"A lemez neve: \n" +"„%s”\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Csomaglisták másolása..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Új forráslista írása\n" -#: cmdline/apt-get.cc:1357 +#: 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" + +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." 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" +"A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." + +#: 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." + +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Függőségi fa építése" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Lehetséges verziók" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Függőséggenerálás" + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, 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 "Failed to open StateFile %s" +msgstr "%s állapotfájl megnyitása sikertelen" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, 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 "Failed to write temporary StateFile %s" +msgstr "%s átmeneti állapotfájl írása sikertelen" -#: 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/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Változási napló ehhez: %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Támogatott modulok:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "„%s” kiadás nem található ehhez: „%s”" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "„%s” verzió nem található ehhez: „%s”" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ez a csomag nem található: %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "„%s” feladat nem található" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" + +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"„%s” csomagból nem választható sem telepített, sem kiadásra jelölt verzió, " +"mert egyikkel sem rendelkezik" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" +"„%s” csomag legújabb verziója nem választható ki, mert teljesen virtuális" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +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" -#: 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/cacheset.cc:664 +#, c-format +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" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, 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" +msgid "Unable to parse Release file %s" +msgstr "A(z) %s Release fájl nem dolgozható fel" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, 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" +msgid "No sections in Release file %s" +msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s már meg van jelölve automatikusan telepítettként.\n" +msgid "No Hash entry in Release file %s" +msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s már be van állítva visszafogásra.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s eddig sem volt visszafogva.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban" -#: 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" +#: 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)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%s set on hold.\n" -msgstr "%s beállítva visszafogásra.\n" +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)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, 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." +msgid "Malformed line %lu in source list %s ([option] too short)" 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." +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] túl " +"rövid)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, 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" +msgid "Malformed line %lu in source list %s ([%s] has no key)" 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" +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " +"tartalmaz kulcsot)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Nem lehet leválasztani az itt lévő CD-ROM-ot: %s, még használatban lehet." +"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s kulcsnak " +"nincs értéke)" -#: 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" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nem lehet a helyi nevet megállapítani" - -#: 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 "A kiszolgáló visszautasította a kapcsolatot: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "USER failed, server said: %s" -msgstr "Hibás USER, a kiszolgáló üzenete: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:211 #, 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." +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/ftp.cc:280 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"A bejelentkezési parancsfájl „%s” parancsa sikertelen, a kiszolgáló üzenete: " -"%s" +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/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, 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" - -#: 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" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Sikertelen" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nem lehet kapcsolódni a passzív foglalathoz." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "A getaddrinfo nem talált figyelőfoglalatot" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nem lehet összekapcsolódni a foglalattal" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nem lehet figyelni a foglalaton" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nem lehet megállapítani a foglalat nevét" +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/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nem lehet PORT parancsot küldeni" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s megnyitása" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ismeretlen címcsalád: %u (AF_*)" +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/ftp.cc:811 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" +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" -#: 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/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" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nem lehet elfogadni a kapcsolatot" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s telepítése" -#: 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/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s konfigurálása" -#: 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 "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%s”" +msgid "Removing %s" +msgstr "%s eltávolítása" -#: 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/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s teljes eltávolítása" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%s”" +msgid "Noting disappearance of %s" +msgstr "„%s” eltűnése feljegyezve" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Lekérdezés" +#: 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/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nem lehet meghívni " +#. 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/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Csatlakozás: %s (%s)" +msgid "Could not open file '%s'" +msgstr "A(z) „%s” fájl megnyitása sikertelen" -#: 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 előkészítése" -#: 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 "Foglalat létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)" +msgid "Unpacking %s" +msgstr "%s kicsomagolása" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." +msgid "Preparing to configure %s" +msgstr "%s konfigurálásának előkészítése" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:997 #, 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 "Installed %s" +msgstr "%s telepítve" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." +msgid "Preparing for removal of %s" +msgstr "%s eltávolításának előkészítése" -#. 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 "Kapcsolódás: %s" +msgid "Removed %s" +msgstr "%s eltávolítva" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nem lehet feloldani a következőt: „%s”" +msgid "Preparing to completely remove %s" +msgstr "%s teljes eltávolításának előkészítése" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Átmeneti hiba „%s” feloldása közben" +msgid "Completely removed %s" +msgstr "%s teljesen eltávolítva" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" +msgid "Can not write log (%s)" +msgstr "Nem lehet írni ebbe: %s" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Nem lehet csatlakozni ehhez: %s:%s:" +msgid "Waited for %s but it wasn't there" +msgstr "Nem található a(z) %s, a várakozás után sem" -#: 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/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "A művelet megszakadt, mielőtt befejeződhetett volna" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Legalább egy aláírás érvénytelen." +#: apt-pkg/deb/dpkgpm.cc:1625 +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" -#: 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?)" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "függőségi hibák - a csomag beállítatlan maradt" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " +"egy korábbi hiba következménye." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Ismeretlen gpgv futtatási hiba" - -#: 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 +#: 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 a disk full " +"error" msgstr "" -"Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető " -"el:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Az üres fájlok biztosan nem érvényes csomagok" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Hiba a fájl írásakor" +"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a " +"lemez" -#: 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/deb/dpkgpm.cc:1645 +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" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Hiba a kiszolgálóról olvasáskor" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +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" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Hiba a fájl írásakor" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "A kiválasztás sikertelen" +#: 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?" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Időtúllépés a kapcsolatban" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +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?" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Hiba a kimeneti fájl írásakor" +#. 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. " -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Várakozás a fejlécekre" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nincs zárolva" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Rossz fejlécsor" +#. 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" -#: 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" +#. 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" -#: 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" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%lip %limp" -#: 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" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%limp" -#: 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/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "%s kiválasztás nem található" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ismeretlen dátumformátum" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Rossz fejlécadatok" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "%s zárolási fájl nem nyitható meg" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Sikertelen kapcsolódás" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Belső hiba" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Nem sikerült zárolni: %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Frissítés kiszámítása... " +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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-upgrade.cc:28 -msgid "Done" -msgstr "Kész" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +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-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"„%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-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:841 #, 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 alfolyamat szegmentálási hibát okozott." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Függőségek javítása..." +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "A(z) %s alfolyamat %u számú szignált kapott." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " sikertelen." +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s alfolyamat hibakóddal tért vissza (%u)" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nem lehet javítani a függőségeket" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s alfolyamat váratlanul kilépett" -#: 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/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Írási hiba" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Kész" - -#: 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-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-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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Hiba a(z) %s gzip fájl bezárásakor" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Telepítve]" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nem lehet megnyitni a(z) %s fájlt" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Telepítve]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nem lehet megnyitni a(z) %d fájlleírót" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Telepítve]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Nem sikerült elindítani a tömörítőt " -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Telepítve]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Olvasási hiba" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1552 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +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-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "but %s is installed" -msgstr "de %s van telepítve" +msgid "Problem closing the file %s" +msgstr "Hiba a(z) %s fájl bezárásakor" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is to be installed" -msgstr "de csak %s telepíthető" +msgid "Problem renaming the file %s to %s" +msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "de az nem telepíthető" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Hiba a(z) %s fájl törlésekor" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "de az egy virtuális csomag" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Hiba a fájl szinkronizálásakor" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "de az nincs telepítve" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s nem érhető el" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "de az nincs telepítésre megjelölve" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Hiba!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " vagy" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Kész" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Az alábbi ÚJ csomagok lesznek telepítve:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Kész" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:" +# FIXME +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nem lehet mmap-olni egy üres fájlt" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Az alábbi csomagok vissza lesznek tartva:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nem lehetett kettőzni a(z) %i fájlleírót" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Az alábbi csomagok frissítve lesznek:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nem sikerült %llu bájtot mmap-olni" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nem lehet bezárni az mmapot" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Az alábbi visszafogott csomagokat cserélem:" +#: 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-output.cc:667 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s miatt) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nem sikerült %lu bájtot mmap-olni" -#: apt-private/private-output.cc:675 +#: 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 "" -"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 "" -"FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n" -"NE tegye ezt, hacsak nem tudja pontosan, mit csinál!" +"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-output.cc:706 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu frissített, %lu újonnan telepített, " +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." -#: apt-private/private-output.cc:710 +#: 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-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu újratelepítendő, " +msgid "Unable to stat the mount point %s" +msgstr "%s csatolási pont nem érhető el" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nem sikerült elérni a CD-ROM-ot." + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu downgraded, " -msgstr "%lu visszafejlesztendő, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ismeretlen típusrövidítés: „%c”" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu eltávolítandó és %lu nem frissített.\n" +msgid "Opening configuration file %s" +msgstr "%s konfigurációs fájl megnyitása" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nincs teljesen telepítve/eltávolítva.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik." -#. 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:740 -msgid "[Y/n]" -msgstr "[I/n]" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke" -#. 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:746 -msgid "[y/N]" -msgstr "[i/N]" +#: apt-pkg/contrib/configuration.cc:839 +#, 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" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "I" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:886 +#, 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-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex fordítási hiba - %s" +msgid "Syntax error %s:%u: Included from here" +msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Az update parancsnak nincsenek argumentumai" +#: apt-pkg/contrib/configuration.cc:899 +#, 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-update.cc:90 +#: apt-pkg/contrib/configuration.cc:902 #, 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-private/private-update.cc:94 -msgid "All packages are up to date." +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" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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: 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-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 "Nincs kulcstartó telepítve ide: %s." -#: 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/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: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/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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Belső hiba, a rendezés nem fejeződött be" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "%s parancssori kapcsoló nem logikai" -#: 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" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s kapcsolóhoz argumentum szükséges." -#. 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Letöltendő adatmennyiség: %sB/%sB.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> ré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:160 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Letöltendő adatmennyiség: %sB.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s kapcsoló egész, és nem „%s” típusú argumentumot követel meg" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "Túl hosszú „%s” kapcsoló" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, 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 "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-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nincs elég szabad hely itt: %s." +msgid "Invalid operation %s" +msgstr "%s érvénytelen művelet" -#: 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" +#: cmdline/apt-cache.cc:149 +#, 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" -#: 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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Csomagnevek összesen : " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Csomagstruktúrák összesen: " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normális csomagok: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Megszakítva." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Teljesen virtuális csomagok: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Folytatni akarja?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Egyedi virtuális csomagok: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Néhány fájlt nem sikerült letölteni" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Vegyes virtuális csomagok: " -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update” " -"parancsot, vagy használja a --fix-missing kapcsolót." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Hiányzik: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Különböző verziók összesen: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nem lehet javítani a hiányzó csomagokat." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Összes különböző leírás: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Telepítés megszakítása." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Függőségek összesen: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Verzió/Fájl kapcsolatok összesen: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Leírás/Fájl kapcsolatok összesen: " -#: 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ó" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "„Biztosítja” kapcsolatok összesen: " -#: 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 "" -"Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n" -"Küldjön hibajelentést az apt csomaghoz." +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Minták összesen: " -#. -#. 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:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Függőségiverzió-terület összesen: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Belső hiba, az AutoRemover sérült" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Slack terület összesen: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Nyilvántartott terület összesen: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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 "Package file %s is out of sync." +msgstr "%s csomagfájl nincs szinkronban." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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/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:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Legalább egy keresési mintát meg kell adnia" -#: 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!)." +#: cmdline/apt-cache.cc:1472 +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-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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Csomagfájlok:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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." +"A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Törött csomagok" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Rögzített csomagok:" -#: 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:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nem található)" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Javasolt csomagok:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Telepítve: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Ajánlott csomagok:" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Jelölt: " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(nincs)" -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Csomagrögzítés: " -#: apt-private/private-install.cc:841 -#, 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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Verziótáblázat:" -#: apt-private/private-install.cc:846 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 már a legújabb verzió.\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n" +#: cmdline/apt-cache.cc:1801 +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-private/private-install.cc:899 -#, 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" +#: 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”" -#. 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 "" -"A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n" +#: 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-private/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, 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 "Failed to mount '%s' to '%s'" +msgstr "„%s” csatolása a(z) „%s” könyvtárba meghiúsult" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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-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-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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "A hitelesítési figyelmeztetés felülbírálva.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Az argumentumok nincsenek párban" -#: 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-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-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-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-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-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-private/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "„%s” átnevezése sikertelen erre: %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Találat " - -#: 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 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Letöltve %sB %s alatt (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Az alábbi csomag nem található: %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Folyamatban]" +msgid "%s set to manually installed.\n" +msgstr "%s kézi telepítésűre állítva.\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 megjelölve automatikusan telepítettként.\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 "" -"Helyezze be a(z)\n" -" „%s”\n" -"címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n" +"Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " +"auto” parancsokat." -#. 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-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Belső hiba, a problémamegoldó hibát okozott" -#: 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-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" -#. 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-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" -#. 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:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "A(z) „%s” tükörfájl nem olvasható" - -#: 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ó" +msgid "Unable to find a source package for %s" +msgstr "Nem található forráscsomag ehhez: %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:786 #, c-format -msgid "[Mirror: %s]" -msgstr "[Tükör: %s]" - -#: 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" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "A kapcsolat idő előtt lezárult" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Hibás alapértelmezett beállí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." - -#: 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?" - -#: 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" - -#: 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" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az " -"ezen üzenet" +"MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van " +"karbantartva:\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" -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" +"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/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "A hash elem nem található!" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "A már letöltött „%s” fájl kihagyása\n" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nem lehet eltérítést lefoglalni" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Belső hiba az AddDiversion hívásban" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Nincs elég szabad hely itt: %s" -#: apt-inst/filelist.cc:477 +#. 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:893 #, 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" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n" -#: apt-inst/filelist.cc:506 +#. TRANSLATOR: The required 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:898 #, 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" +msgid "Need to get %sB of source archives.\n" +msgstr "Letöltendő forrásadat-mennyiség: %sB.\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dupla %s/%s konfigurációs fájl" +msgid "Fetch source %s\n" +msgstr "Forrás letöltése: %s\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Nem sikerült néhány archívumot letölteni." + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "A letöltés befejeződött a „csak letöltés” módban" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" -msgstr "A(z) %s útvonal túl hosszú" +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-inst/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" -msgstr "A(z) %s többszöri kicsomagolása" +msgid "Unpack command '%s' failed.\n" +msgstr "„%s” kibontási parancs nem sikerült.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" -msgstr "A(z) %s könyvtár eltérítve" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, 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 "Build command '%s' failed.\n" +msgstr "„%s” elkészítési parancs nem sikerült.\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:1012 +msgid "Child process failed" +msgstr "Hiba a gyermekfolyamatnál" -#: 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 elérése sikertelen" +#: cmdline/apt-get.cc:1031 +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-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" -msgstr "„%s” átnevezése sikertelen erre: %s" +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-inst/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "A(z) %s könyvtár nem egy könyvtárral lesz helyettesítve" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban" +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-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Az útvonal túl hosszú" +#: cmdline/apt-get.cc:1126 +#, 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-inst/extract.cc:421 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Csomagtalálat felülírása %s verziója nélkül" +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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1314 #, 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" +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-inst/extract.cc:498 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unable to stat %s" -msgstr "%s nem érhető el" +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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Failed to write file %s" -msgstr "A(z) %s fájl írása sikertelen" +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-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Failed to close file %s" -msgstr "A(z) %s fájl bezárása sikertelen" +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-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1405 #, 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 "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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Belső hiba, %s tag 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-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" - -#: apt-inst/contrib/arfile.cc:96 -#, 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" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nem sikerült olvasni az archívumfejléceket" - -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Nem sikerült adatcsatornákat létrehozni" - -#: 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" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Nem sikerült az építési függőségeket feldolgozni" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag" +msgid "Changelog for %s (%s)" +msgstr "Változási napló ehhez: %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s nem érhető el." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Támogatott modulok:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "A dpkg futtatása" +#: 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" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "A(z) „%s” csomagrendszer nem támogatott" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: 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-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 rekord kiírva.\n" +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/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 "%i rekord kiírva, %i hiányzó fájllal.\n" +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/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 "%i rekord kiírva %i eltérő fájllal\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s már meg van jelölve automatikusan telepítettként.\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 "%i rekord kiírva %i hiányzó és %i eltérő fájllal\n" +msgid "%s was already set on hold.\n" +msgstr "%s már be van állítva visszafogásra.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "%s hitelesítési rekordja nem található" +msgid "%s was already not hold.\n" +msgstr "%s eddig sem volt visszafogva.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Hash mismatch for: %s" -msgstr "%s ellenőrzőösszege nem megfelelő" +msgid "%s set on hold.\n" +msgstr "%s beállítva visszafogásra.\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 "A(z) %s metódusvezérlő nem található." - -#: 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" +msgid "Canceled hold on %s.\n" +msgstr "Visszafogás törölve ezen: %s.\n" -#: 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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?" -#: 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 "" -"Helyezze be a(z) „%s” címkéjű lemezt a(z) „%s” meghajtóba, és nyomja meg az " -"Entert." +"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/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 "" -"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" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "A források listája olvashatatlan." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Üres csomaggyorsítótár" - -#: 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" - -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert" - -#: 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" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Függ ettől" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Függ ettől (előfüggés)" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Javasolja" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Ajánlja" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Ütközik" +msgid "Unable to read the cdrom database %s" +msgstr "%s CD-ROM adatbázis nem olvasható" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Kicseréli" +#: 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 "Obsoletes" -msgstr "Elavulttá teszi" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Hibás CD" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Töri" +#: 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:323 -msgid "Enhances" -msgstr "Bővíti" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "A lemez nem található." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "fontos" +#: 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 "required" -msgstr "szükséges" +#: 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:334 -msgid "standard" -msgstr "szabványos" +#: 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 "optional" -msgstr "opcionális" +#: 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/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 "Bejelentkezés" -#: 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" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nem lehet a partner nevét megállapítani" -#: 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:188 +msgid "Unable to determine the local name" +msgstr "Nem lehet a helyi nevet 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 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" - -#: 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." +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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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”" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Lekérdezés" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nem lehet meghívni " -#: 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 "Nem található forrás a(z) „%2$s” „%1$s” verziójának letöltéséhez" +msgid "Connecting to %s (%s)" +msgstr "Csatlakozás: %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 "" -"A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz." +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 "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot" +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:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:100 #, c-format -msgid "List directory %spartial is missing." -msgstr "A(z) %spartial listakönyvtár hiányzik." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:108 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "A(z) %spartial archívumkönyvtár hiányzik." +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:99 +#: methods/connect.cc:126 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s könyvtár zárolása sikertelen" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nem lehet kapcsolódni ehhez: %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 "%li/%li fájl letöltése (%s marad)" +msgid "Connecting to %s" +msgstr "Kapcsolódás: %s" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li" -msgstr "%li/%li fájl letöltése" +msgid "Could not resolve '%s'" +msgstr "Nem lehet feloldani a következőt: „%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." +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Átmeneti hiba „%s” feloldása közben" -#: 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:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Hiba történt „%s:%s” feloldásakor (%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 "" -"A(z) „%s” érték érvénytelen az APT::Default-Release beállításhoz, mert nincs " -"ilyen kiadás a forrásokban" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" -#: apt-pkg/policy.cc:422 +#: methods/connect.cc:258 #, 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 "Unable to connect to %s:%s:" +msgstr "Nem lehet csatlakozni ehhez: %s:%s:" -#: 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ő" +#: 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/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: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?)" -#: 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 "" -"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." +"Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető " +"el:\n" -#: 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." +#: 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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM leválasztása...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Hiba a fájl írásakor" -#: 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: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:599 -msgid "Waiting for disc...\n" -msgstr "Várakozás a lemezre...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Hiba a kiszolgálóról olvasáskor" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM csatolása...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Hiba a fájl írásakor" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Azonosítás... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "A kiválasztás sikertelen" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Tárolt címke: %s\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Időtúllépés a kapcsolatban" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Indexfájlok keresése a lemezen...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Hiba a kimeneti fájl írásakor" -#: 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/server.cc:51 +msgid "Waiting for headers" +msgstr "Várakozás a fejlécekre" -#: 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:109 +msgid "Bad header line" +msgstr "Rossz fejlécsor" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Talált címke: „%s”\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: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: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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"A lemez neve: \n" -"„%s”\n" +#: 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:819 -msgid "Copying package lists..." -msgstr "Csomaglisták másolá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/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Új forráslista írása\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ismeretlen dátumformátum" -#: 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:496 +msgid "Bad header data" +msgstr "Rossz fejlécadatok" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Sikertelen kapcsolódás" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " -"csomagok okozhatják." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:96 +msgid " failed." +msgstr " sikertelen." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Nem lehet javítani a függőségeket" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét" -#: 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:104 +msgid " Done" +msgstr " Kész" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "„%s” feladat nem található" +#: 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: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-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-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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Telepítve]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Telepítve]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Az alábbi ÚJ csomagok lesznek telepítve:" + +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:" + +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Az alábbi csomagok vissza lesznek tartva:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Az alábbi csomagok frissítve lesznek:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Az alábbi visszafogott csomagokat cserélem:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgid "%s (due to %s) " +msgstr "%s (%s miatt) " + +#: apt-private/private-output.cc:675 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem " -"érvényes hozzárendelés)" +"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:190 +#: apt-private/private-output.cc:706 #, 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)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu frissített, %lu újonnan telepített, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:710 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu újratelepítendő, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:712 #, 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)" +msgid "%lu downgraded, " +msgstr "%lu visszafejlesztendő, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:714 #, 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)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu eltávolítandó és %lu nem frissített.\n" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:718 #, 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)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nincs teljesen telepítve/eltávolítva.\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:740 +msgid "[Y/n]" +msgstr "[I/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:746 +msgid "[y/N]" +msgstr "[i/N]" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "I" -#: 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)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "N" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s megnyitása" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Az update parancsnak nincsenek argumentumai" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:90 #, 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 "%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 "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" +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 "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" +#: 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 telepítése" +#: apt-private/private-install.cc:84 +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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s konfigurálása" +#: apt-private/private-install.cc:93 +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:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s eltávolítása" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Belső hiba, a rendezés nem fejeződött be" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s teljes eltávolítása" +#: apt-private/private-install.cc:150 +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/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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "„%s” eltűnése feljegyezve" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Letöltendő adatmennyiség: %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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "A(z) %s telepítés utáni trigger futtatása" +msgid "Need to get %sB of archives.\n" +msgstr "Letöltendő adatmennyiség: %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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "A(z) „%s” könyvtár hiányzik" +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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "A(z) „%s” fájl megnyitása sikertelen" +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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "%s előkészítése" +msgid "You don't have enough free space in %s." +msgstr "Nincs elég szabad hely itt: %s." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s kicsomagolása" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s konfigurálásának előkészítése" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "%s telepítve" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Igen, tedd amit mondok!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s eltávolításának előkészítése" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "%s eltávolítva" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Megszakítva." -#: 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-install.cc:245 +msgid "Do you want to continue?" +msgstr "Folytatni akarja?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s teljesen eltávolítva" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Néhány fájlt nem sikerült letölteni" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" 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-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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Nem lehet javítani a hiányzó csomagokat." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Telepítés megszakítása." -#: 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:368 +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/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:372 +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." -#. 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:393 +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/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 "" -"Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba " -"egy korábbi hiba következménye." +"Ú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/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" +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Belső hiba, az AutoRemover sérült" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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" +"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-private/private-install.cc:519 +#, 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" -#: 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-install.cc:521 +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/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-install.cc:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Nem került kiírásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez" +"Próbálja futtatni az „apt-get -f install” parancsot az alábbiak javításához:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:616 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-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Az adminisztrációs könyvtár (%s) nem zárolható, rendszergazdaként próbálja?" +"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!)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:640 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 "" -"A dpkg megszakadt, saját kezűleg kell futtatnia a(z) „%s” parancsot a " -"probléma megoldásához. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nincs zárolva" +"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." -#. 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:661 +msgid "Broken packages" +msgstr "Törött csomagok" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Az alábbi extra csomagok kerülnek telepítésre:" -#. 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:828 +msgid "Suggested packages:" +msgstr "Javasolt csomagok:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%limp" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Ajánlott csomagok:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, c-format -msgid "Selection %s not found" -msgstr "%s kiválasztás nem található" +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/fileutl.cc:190 +#: apt-private/private-install.cc:855 #, 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 "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:195 +#: apt-private/private-install.cc:867 #, c-format -msgid "Could not open lock file %s" -msgstr "%s zárolási fájl nem nyitható meg" +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:218 +#: apt-private/private-install.cc:872 #, 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 "%s is already the newest version.\n" +msgstr "%s már a legújabb verzió.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:920 #, c-format -msgid "Could not get lock %s" -msgstr "Nem sikerült zárolni: %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:925 #, 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 "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:394 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 #, 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” figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nem szabályos fájl" +"A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/private-install.cc:973 #, c-format -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" +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-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” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert érvénytelen " -"fájlkiterjesztése van" +"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:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "%s alfolyamat szegmentálási hibát okozott." +#: 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-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "A(z) %s alfolyamat %u számú szignált kapott." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "A hitelesítési figyelmeztetés felülbírálva.\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 alfolyamat hibakóddal tért vissza (%u)" +#: 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-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 -#, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "%s alfolyamat váratlanul kilépett" +#: 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-pkg/contrib/fileutl.cc:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Hiba a(z) %s gzip fájl bezárásakor" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "„%s” átnevezése sikertelen erre: %s" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Nem lehet megnyitni a(z) %s fájlt" +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 "Nem lehet megnyitni a(z) %d fájlleírót" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nem sikerült az alfolyamat IPC-t létrehozni" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Találat " -#: 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/acqprogress.cc:88 +msgid "Get:" +msgstr "Letöltés:" -#: 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" +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Mellőz " -#: 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/acqprogress.cc:123 +msgid "Err " +msgstr "Hiba " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem closing the file %s" -msgstr "Hiba a(z) %s fájl bezárásakor" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Letöltve %sB %s alatt (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s" +msgid " [Working]" +msgstr " [Folyamatban]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:298 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Hiba a(z) %s fájl törlésekor" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Hiba a fájl szinkronizálásakor" +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/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... Hiba!" +msgid "No mirror file '%s' found " +msgstr "Nem található a(z) „%s” tükörfájl " -#: 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... Kész" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "A(z) „%s” tükörfájl nem olvasható" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Kész" - -# FIXME -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nem lehet mmap-olni egy üres fájlt" +msgid "No entry found in mirror file '%s'" +msgstr "A(z) „%s” tükörfájl nem olvasható" -#: apt-pkg/contrib/mmap.cc:111 +#: methods/mirror.cc:445 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nem lehetett kettőzni a(z) %i fájlleírót" +msgid "[Mirror: %s]" +msgstr "[Tükör: %s]" + +#: 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" + +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "A kapcsolat idő előtt lezárult" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nem sikerült %llu bájtot mmap-olni" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Hibás alapértelmezett beállítás!" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nem lehet bezárni az mmapot" +#: 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/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nem lehet szinkronizálni az mmapot" +#: 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/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nem sikerült %lu bájtot mmap-olni" +#: 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/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "A fájl csonkítása meghiúsult" +#: 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/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 "" -"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)" +"vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az " +"ezen üzenet" -#: 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." -msgstr "" -"Nem lehet növelni az MMap méretét, mert a(z) %lu bájt korlátot már elérte." +"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" -#: 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." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Elérhető információk egyesítése" -#: 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-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/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nem sikerült elérni a CD-ROM-ot." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "A hash elem nem található!" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Ismeretlen típusrövidítés: „%c”" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nem lehet eltérítést lefoglalni" -#: apt-pkg/contrib/configuration.cc:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "%s konfigurációs fájl megnyitása" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Belső hiba az AddDiversion hívásban" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:477 #, 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 "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/configuration.cc:820 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke" +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/configuration.cc:837 +#: apt-inst/filelist.cc:549 #, 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" +msgid "Duplicate conf file %s/%s" +msgstr "Dupla %s/%s konfigurációs fájl" -#: 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 "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások" +msgid "The path %s is too long" +msgstr "A(z) %s útvonal túl hosszú" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" +msgid "Unpacking %s more than once" +msgstr "A(z) %s többszöri kicsomagolása" -#: 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 "Szintaktikai hiba %s: %u: ugyaninnen include-olva" +msgid "The directory %s is diverted" +msgstr "A(z) %s könyvtár eltérítve" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Szintaktikai hiba %s:%u: „%s” nem támogatott előírás" +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "A csomag megpróbál írni a(z) %s/%s eltérített célpontba" + +#: apt-inst/extract.cc: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:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 stat %s" +msgstr "%s elérése sikertelen" -#: 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 "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" +msgid "Failed to rename %s to %s" +msgstr "„%s” átnevezése sikertelen erre: %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 "Nincs kulcstartó telepítve ide: %s." +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/cmndline.cc:121 +#: 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-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Az útvonal túl hosszú" + +#: apt-inst/extract.cc:421 #, 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." +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/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 parancssori kapcsoló értelmezhetetlen" +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/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "%s parancssori kapcsoló nem logikai" +msgid "Unable to stat %s" +msgstr "%s nem érhető el" -#: 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 kapcsolóhoz argumentum szükséges." +msgid "Failed to write file %s" +msgstr "A(z) %s fájl írása sikertelen" -#: 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 =." -msgstr "" -"%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész." +msgid "Failed to close file %s" +msgstr "A(z) %s fájl bezárása sikertelen" -#: 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 kapcsoló egész, és nem „%s” típusú argumentumot követel meg" +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" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Túl hosszú „%s” kapcsoló" +msgid "Internal error, could not locate member %s" +msgstr "Belső hiba, %s tag nem található" -#: apt-pkg/contrib/cmndline.cc:341 +#: 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" + +#: apt-inst/contrib/arfile.cc:96 #, 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." +msgid "Invalid archive member header %s" +msgstr "Érvénytelen archívumtag-fejléc: %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: 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" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Nem sikerült olvasni az archívumfejléceket" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Nem sikerült adatcsatornákat létrehozni" + +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3277,12 +3290,7 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s nem érhető el" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nem lehet megállapítani a debconf verziót. A debconf telepítve van?" @@ -3401,17 +3409,17 @@ msgstr "Nincs illeszkedő kiválasztás" msgid "Some files are missing in the package file group `%s'" msgstr "Néhány fájl hiányzik a(z) „%s” csomagfájlcsoportból" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "A DB megsérült, a fájl átnevezve %s.old-ra" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "A DB régi, kísérlet a következő frissítésére: %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3419,105 +3427,105 @@ msgstr "" "Az adatbázis-formátum érvénytelen. Ha az apt egy korábbi verziójáról " "frissített, akkor távolítsa el, és hozza létre újra az adatbázist." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "A(z) %s DB fájlt nem lehet megnyitni: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "readlink nem hajtható végre erre: %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Az archívumnak nincs vezérlő rekordja" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Nem sikerült egy mutatóhoz jutni" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "F: nem lehet a(z) %s könyvtárat olvasni\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "F: %s nem érhető el\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "H: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "F: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "H: Hibás a fájl " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Nem sikerült feloldani ezt: %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Fabejárás nem sikerült" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s megnyitása sikertelen" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "readlink nem hajtható végre erre: %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "%s törlése sikertelen" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s linkelése sikertelen ehhez: %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " a DeLink korlátja (%sB) elérve.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Az archívumnak nem volt csomag mezője" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s karbantartója %s, nem %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nem rendelkezik forrás-felülbíráló bejegyzéssel\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nem rendelkezik bináris-felülbíráló bejegyzéssel sem\n" diff --git a/po/it.po b/po/it.po index 77a878eed..9e015a76b 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2014-05-31 17:04+0100\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -20,3335 +20,3348 @@ msgstr "" "X-Launchpad-Export-Date: 2012-06-25 19:48+0000\n" "X-Generator: Poedit 1.6.5\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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." +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Il file della cache dei pacchetti è danneggiato" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "La versione del file della cache dei pacchetti è incompatibile" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Il file cache del pacchetto è danneggiato, è troppo piccolo" + +#: apt-pkg/pkgcache.cc:171 +#, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" msgstr "" -"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." +"Il file della cache dei pacchetti è stato generato per un'altra architettura" + +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Dipende" + +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Pre-dipende" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Consiglia" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Raccomanda" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Va in conflitto" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Sostituisce" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Rende obsoleto" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Rompe" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Migliora" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "richiesto" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opzionale" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Impossibile trovare il pacchetto %s" +msgid "Index file type '%s' is not supported" +msgstr "Il file indice di tipo \"%s\" non è supportato" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "File dei pacchetti:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Errore di compilazione dell'espressione regolare - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "La cache ha un sistema di gestione delle versioni incompatibile" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"La cache non è sincronizzata, impossibile referenziare un file di pacchetti" +"È stato superato il numero di nomi di pacchetti che questo APT può gestire." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacchetti con gancio:" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(non trovato)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Installato: " +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +# (ndt) il primo è il nome del pacchetto, il secondo la versione +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nessuno)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Gancio del pacchetto: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Lettura elenco dei pacchetti" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabella versione:" +# (ndt) non mi convince per niente, ma vediamo cosa salta fuori +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Il file fornisce" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s per %s compilato il %s %s\n" +msgid "Unable to write to %s" +msgstr "Impossibile scrivere in %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 "" -"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" - -#: 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\"" - -#: 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Errore di I/O nel salvare la cache sorgente" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Mount di \"%s\" su \"%s\" non riuscito" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Invia lo scenario al solver" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "Invia la richiesta al solver" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Preparazione alla ricezione della soluzione" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argomenti non in coppia" +#: 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-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 [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" +#: 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:245 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Impossibile trovare un pacchetto per l'architettura \"%s\"" +msgid "rename failed, %s (%s -> %s)." +msgstr "rename() non riuscita: %s (%s -> %s)." -#: 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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Somma hash non corrispondente" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Le dimensioni non corrispondono" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" +#: apt-pkg/acquire-item.cc:185 +msgid "Invalid file format" +msgstr "Formato file non valido" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Impossibile trovare la versione \"%s\" del pacchetto \"%s\"" +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)" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossibile trovare il pacchetto %s" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Impossibile trovare la somma hash per \"%s\" nel file Release" -#: 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" +#: apt-pkg/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s impostato automaticamente come installato.\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." +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" -"\" al suo posto." - -#: 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" +"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " +"questo repository non verranno applicati." -#: 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/acquire-item.cc:1797 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1827 +#, 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 "" -"È necessario specificare almeno un pacchetto di cui recuperare il sorgente" +"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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossibile trovare un pacchetto sorgente per %s" +msgid "GPG error: %s: %s" +msgstr "Errore GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"Nota: il processo di pacchettizzazione di \"%s\" è mantenuto\n" -"all'interno del sistema di controllo della versione \"%s\" presso:\n" -"%s\n" +"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " +"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 +#, 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\"" + +# (ndt) sarebbe da controllare se veramente possono esistere più file indice +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Utilizzare:\n" -"bzr branch %s\n" -"per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " -"pacchetto.\n" +"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " +"per il pacchetto %s." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Il blocco vendor %s non contiene impronte" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +# (ndt) sarebbe da controllare meglio assieme a quella dopo +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Impossibile determinare lo spazio libero in %s" +msgid "List directory %spartial is missing." +msgstr "Manca la directory di liste %spartial." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Lo spazio libero in %s è insufficiente" +msgid "Archives directory %spartial is missing." +msgstr "Manca la directory di archivio %spartial." -#. 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.cc:100 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" +msgid "Unable to lock directory %s" +msgstr "Impossibile bloccare la directory %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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "È necessario scaricare %sB di sorgenti.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Scaricamento file %li di %li (%s rimanente)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "Recupero sorgente %s\n" +msgid "Retrieving file %li of %li" +msgstr "Scaricamento file %li di %li" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Recupero di alcuni archivi non riuscito." +#: 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" -#: 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" +#: 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 "" +"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " +"usati quelli vecchi." -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comando di estrazione \"%s\" non riuscito.\n" +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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" +"\"" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comando \"%s\" di generazione non riuscito.\n" +msgid "Did not understand pin type %s" +msgstr "Impossibile comprendere il tipo di gancio %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Creazione processo figlio non riuscita" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Priorità per il gancio non specificata (o zero)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"È necessario specificare almeno un pacchetto di cui controllare le " -"dipendenze di generazione" +"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " +"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" +"Immediate-Configure\" (%d)." + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Impossibile configurare \"%s\". " -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" -"Informazioni sull'architettura non disponibili per %s. Consultare apt." -"conf(5) APT::Architectures per l'impostazione" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" +msgid "Line %u too long in source list %s." +msgstr "Riga %u troppo lunga nel file %s." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Smontaggio CD-ROM...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s non ha dipendenze di generazione.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Viene usato il punto di mount del CD-ROM %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "In attesa del disco...\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" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché %s non è " -"consentito su pacchetti \"%s\"" +"Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " +"traduzione e %zu firme\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " -"non può essere trovato" +"Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " +"disco Debian o potrebbe essere l'architettura errata." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " -"è troppo recente" +msgid "Found label '%s'\n" +msgstr "Trovata l'etichetta \"%s\"\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Questo non è un nome valido, riprovare.\n" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché la versione " -"candidata del pacchetto %s non può soddisfare i requisiti di versione" +"Questo disco è chiamato: \n" +"\"%s\"\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: 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 dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " -"non ha una versione candidata" +"Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " +"archivio." + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" +msgid "Failed to open StateFile %s" +msgstr "Apertura del file di stato %s non riuscita" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." +msgid "Failed to write temporary StateFile %s" +msgstr "Scrittura del file temporaneo di stato %s non riuscita" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Elaborazione delle dipendenze di generazione non riuscita" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Impossibile analizzare il file di pacchetto %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog per %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Impossibile analizzare il file di pacchetto %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Moduli supportati:" +# (ndt) dovrebbe essere inteso il file Release +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release \"%s\" per \"%s\" non trovato." -#: 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" - -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "È necessario specificare almeno una coppia URL/nome file" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "Scaricamento non riuscito" - -#: 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 "%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: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 "In attesa di %s ma non era presente" - -#: 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" - -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossibile leggere il database del 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 "" -"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" - -#: methods/cdrom.cc:249 -#, 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." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco non trovato" - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "File non trovato" - -#: 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" - -#: 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" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI non valido, gli URI locali non devono iniziare con //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Accesso in corso" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossibile determinare il nome del nodo" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossibile determinare il nome locale" - -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" -msgstr "Il server ha rifiutato la connessione e riporta: %s" - -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" -msgstr "USER non riuscito, il server riporta: %s" - -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS non riuscito, il server riporta: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" -"ftp::ProxyLogin è vuoto." - -#: methods/ftp.cc:280 +# (ndt) dovrebbe essere inteso il Version +#: apt-pkg/cacheset.cc:493 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" +msgid "Version '%s' for '%s' was not found" +msgstr "Version \"%s\" per \"%s\" non trovato" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE non riuscito, il server riporta: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Connessione scaduta" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Il server ha chiuso la connessione" - -#: 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" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Una risposta ha superato le dimensioni del buffer." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocollo danneggiato" - -#: 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" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Impossibile creare un socket" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "" -"Impossibile connettersi al socket dati, tempo esaurito per la connessione" - -#: methods/ftp.cc:716 methods/connect.cc:116 -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" +msgid "Unable to locate package %s" +msgstr "Impossibile trovare il pacchetto %s" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:604 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" +msgid "Couldn't find task '%s'" +msgstr "Impossibile trovare il task \"%s\"" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:610 #, 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 "Couldn't find any package by regex '%s'" +msgstr "" +"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:616 #, c-format -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" +msgid "Couldn't find any package by glob '%s'" +msgstr "Impossibile trovare alcun pacchetto tramite il glob \"%s\"" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Interrogazione" - -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossibile invocare " +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Impossibile selezionare le versioni dal pacchetto \"%s\" poiché è virtuale" -#: methods/connect.cc:76 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Connessione a %s (%s)" +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" -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:648 #, 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 "" +"Impossibile selezionare la versione più recente dal pacchetto \"%s\" poiché " +"è virtuale" -#: methods/connect.cc:94 +#: apt-pkg/cacheset.cc:656 #, 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 "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/connect.cc:100 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Impossibile iniziare la connessione a %s:%s (%s)." +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/connect.cc:108 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" +msgid "Unable to parse Release file %s" +msgstr "Impossibile analizzare il file Release %s" -#: methods/connect.cc:126 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Impossibile connettersi a %s:%s (%s)." +msgid "No sections in Release file %s" +msgstr "Nessuna sezione nel file 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:136 #, c-format -msgid "Connecting to %s" -msgstr "Connessione a %s" +msgid "No Hash entry in Release file %s" +msgstr "Nessuna voce Hash nel file Release %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Could not resolve '%s'" -msgstr "Impossibile risolvere \"%s\"" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Voce \"Valid-Until\" nel file Release %s non valida" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Voce \"Date\" nel file Release %s non valida" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "Errore di sistema nella risoluzione di \"%s:%s\"" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "La stanza %u nel file delle sorgenti %s non è corretta (analisi URI)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" +"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] non " +"analizzabile)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossibile connettersi a %s:%s:" - -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Errore interno: firma corretta, ma non è possibile determinare l'impronta " -"della chiave." - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "È stata trovata almeno una firma non valida." - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -"Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " -"installato)" +"La riga %lu nel file delle sorgenti %s non è corretta ([opzione] troppo " +"corta)" -#. 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 "" -"Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " -"richiede autenticazione?)" - -#: 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" +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non è " +"un'assegnazione)" -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" 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" +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] non ha una " +"chiave)" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Errore nello scrivere sul file" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"La riga %lu nel file delle sorgenti %s non è corretta ([%s] la chiave %s non " +"ha un valore)" -#: 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/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "La riga %lu nel file %s non è corretta (URI)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Errore nel leggere dal server" +#: 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/http.cc:561 -msgid "Error writing to file" -msgstr "Errore nello scrivere su file" +#: 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/http.cc:621 -msgid "Select failed" -msgstr "Select non riuscita" +#: 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/http.cc:626 -msgid "Connection timed out" -msgstr "Connessione terminata" +#: 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/http.cc:649 -msgid "Error writing to output file" -msgstr "Errore nello scrivere sul file di output" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Apertura di %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "In attesa degli header" +#: 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/server.cc:109 -msgid "Bad header line" -msgstr "Riga header non corretta" +#: 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/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/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" -#: 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/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Installazione di %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/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Configurazione di %s" -#: 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/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Rimozione di %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato della data sconosciuto" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "Rimozione completa di %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Header dati non corretto" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Notata la sparizione di %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Connessione non riuscita" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Esecuzione comando di post installazione %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Errore interno" +#. 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-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calcolo dell'aggiornamento... " +#: 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-upgrade.cc:28 -msgid "Done" -msgstr "Eseguito" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Preparazione di %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "Ordinamento" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Estrazione di %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "Elencazione" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Preparazione alla configurazione di %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] "C'è %i versione aggiuntiva: usare \"-a\" per visualizzarla" -msgstr[1] "Ci sono %i versioni aggiuntive: usare \"-a\" per visualizzarle" +msgid "Installed %s" +msgstr "Pacchetto %s installato" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Correzione delle dipendenze..." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Preparazione alla rimozione di %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " non riuscita." +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Pacchetto %s rimosso" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossibile correggere le dipendenze" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Preparazione alla rimozione completa di %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossibile minimizzare l'insieme da aggiornare" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Pacchetto %s rimosso completamente" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Fatto" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) non riuscita" -#: 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/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, c-format +msgid "Can not write log (%s)" +msgstr "Impossibile scrivere il registro (%s)" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dipendenze non trovate. Riprovare usando -f." +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "È /dev/pts montato?" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "sconosciuto" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "stdout è un terminale?" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[installato, aggiornabile a: %s]" +msgid "Waited for %s but it wasn't there" +msgstr "In attesa di %s ma non era presente" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[installato, locale]" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "L'operazione è stata interrotta prima di essere completata" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[installato, auto-rimovibile]" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Segnalazione apport non scritta poiché è stato raggiunto il valore massimo " +"di MaxReports" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[installato, automatico]" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "Problemi con le dipendenze - Viene lasciato non configurato" -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[installato]" +#: apt-pkg/deb/dpkgpm.cc:1632 +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-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "[aggiornabile da: %s]" +#: apt-pkg/deb/dpkgpm.cc:1638 +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-pkg/deb/dpkgpm.cc:1645 +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." + +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore nel sistema locale." -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[configurazione residua]" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Segnalazione apport non scritta poiché il messaggio di errore indica un " +"errore di I/O di dpkg." -#: apt-private/private-output.cc:434 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "but %s is installed" -msgstr "ma la versione %s è installata" +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." -#: apt-private/private-output.cc:436 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "but %s is to be installed" -msgstr "ma la versione %s sta per essere installata" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ma non è installabile" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " +"necessario essere root." -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ma è un pacchetto virtuale" +#. 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. " -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ma non è installato" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Non bloccato" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ma non sta per essere installato" +#. 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-output.cc:453 -msgid " or" -msgstr " oppure" +#. 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:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" +#. 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:502 -msgid "The following NEW packages will be installed:" -msgstr "I seguenti pacchetti NUOVI saranno installati:" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "I seguenti pacchetti saranno RIMOSSI:" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Selezione %s non trovata" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Blocco disabilitato per il file di blocco in sola lettura %s" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "I seguenti pacchetti saranno aggiornati:" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Impossibile aprire il file di blocco %s" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "I seguenti pacchetti saranno RETROCESSI:" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Blocco disabilitato per il file di blocco %s montato via nfs" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "I seguenti pacchetti bloccati saranno cambiati:" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Impossibile impostare il blocco %s" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 #, c-format -msgid "%s (due to %s) " -msgstr "%s (a causa di %s) " +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" -#: apt-private/private-output.cc:675 -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:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" 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." +"Viene ignorato \"%s\" nella directory \"%s\" poiché non è un file regolare" -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aggiornati, %lu installati, " +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" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstallati, " +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-output.cc:712 +#: apt-pkg/contrib/fileutl.cc:841 #, c-format -msgid "%lu downgraded, " -msgstr "%lu retrocessi, " +msgid "Sub-process %s received a segmentation fault." +msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/fileutl.cc:843 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu da rimuovere e %lu non aggiornati.\n" +msgid "Sub-process %s received signal %u." +msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu non completamente installati o rimossi.\n" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Il sottoprocesso %s ha restituito un codice d'errore (%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:740 -msgid "[Y/n]" -msgstr "[S/n]" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Il sottoprocesso %s è uscito inaspettatamente" -#. 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:746 -msgid "[y/N]" -msgstr "[s/N]" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Errore di scrittura" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Si è verificato un problema nel chiudere il file gzip %s" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Impossibile aprire il file %s" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 #, c-format -msgid "Regex compilation error - %s" -msgstr "Errore di compilazione dell'espressione regolare - %s" +msgid "Could not open file descriptor %d" +msgstr "Impossibile aprire il descrittore del file %d" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Il comando update non accetta argomenti" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Creazione di un sottoprocesso IPC non riuscita" -#: 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/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Esecuzione non riuscita del compressore " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Errore di lettura" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:1552 #, 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" +msgid "read, still have %llu to read but none left" +msgstr "lettura, ancora %llu da leggere, ma non è stato trovato nulla" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "non un vero pacchetto (virtuale)" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "scrittura, ancora %llu da scrivere, ma non è possibile" -#: 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." +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Si è verificato un problema nel chiudere il file %s" -#: 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/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Si è verificato un problema nel rinominare il file %s in %s" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Errore interno, l'ordinamento non è stato terminato" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Si è verificato un problema nell'eseguire l'unlink del file %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/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Si è verificato un problema nel sincronizzare il file" -#. 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 +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, c-format +msgid "Unable to mkstemp %s" +msgstr "Impossibile eseguire mkstemp %s" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "È necessario scaricare %sB/%sB di archivi.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Errore" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "È necessario scaricare %sB di archivi.\n" +msgid "%c%s... Done" +msgstr "%c%s... Fatto" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 #, 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 "%c%s... %u%%" +msgstr "%c%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:172 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Impossibile eseguire mmap su un file vuoto" + +#: apt-pkg/contrib/mmap.cc:111 #, 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 "Couldn't duplicate file descriptor %i" +msgstr "Impossibile duplicare il descrittore del file %i" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Spazio libero in %s insufficiente." +msgid "Couldn't make mmap of %llu bytes" +msgstr "Impossibile creare mmap di %llu byte" -#: 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/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Impossibile chiudere mmap" -#: 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/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Impossibile sincronizzare mmap" -#. 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/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Impossibile eseguire mmap di %lu byte" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Troncamento del file non riuscito" + +#: 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 "" -"Si sta per compiere un'azione potenzialmente pericolosa.\n" -"Per continuare scrivere la frase \"%s\"\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Interrotto." - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Continuare?" - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Scaricamento di alcuni file non riuscito" +"MMap dinamica esaurita. Aumentare la dimensione di APT::Cache-Start. Il " +"valore attuale è: %lu (man 5 apt.conf)." -#: apt-private/private-install.cc:320 +#: 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 "" -"Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" -"get update\" o provare l'opzione \"--fix-missing\"." - -#: 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" +"Impossibile incrementare la dimensione della MMap poiché il limite di %lu " +"byte è stato raggiunto." -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Impossibile correggere i pacchetti mancanti." +# (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-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Interruzione dell'installazione." +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Impossibile eseguire stat sul punto di mount %s" -#: 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] "" -"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/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Esecuzione di stat sul CD-ROM non riuscita" -#: 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-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Apertura file di configurazione %s" -#: 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 "" -"Sembra che AutoRemover abbia rovinato qualcosa e questo\n" -"non doveva accadere. Segnalare un bug riguardo apt." +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Errore di sintassi %s:%u: il blocco inizia senza 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: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-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Errore di sintassi %s:%u: tag non corretto" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" -#: 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] "" -"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/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/configuration.cc:886 #, 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" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" -#: 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-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Errore di sintassi %s:%u: incluso da qui" -#: 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:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +# (ndt) sarebbe da controllare meglio... +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " -"(o specificare una soluzione)." +"Errore di sintassi %s:%u: la direttiva clear richiede un albero di opzioni " +"come argomento" -#: 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." +#: apt-pkg/contrib/configuration.cc:952 +#, 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" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pacchetti danneggiati" +#. 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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "I seguenti pacchetti saranno inoltre installati:" +#: 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-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pacchetti suggeriti:" +#: 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:803 -msgid "Recommended packages:" -msgstr "Pacchetti raccomandati:" +#: 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" -#: apt-private/private-install.cc:825 +#: 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 "" -"Viene saltato %s poiché è già installato e l'aggiornamento non è impostato.\n" +msgid "Option %s requires an argument." +msgstr "L'opzione %s richiede un argomento." -#: apt-private/private-install.cc:829 +#: 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" +msgid "Option %s: Configuration item specification must have an =." msgstr "" -"Viene saltato %s poiché non è installato e sono richiesti solo gli " -"aggiornamenti.\n" +"Opzione %s: la specifica di configurazione dell'oggetto deve avere un " +"=." -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/cmndline.cc:278 #, 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" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "L'opzione %s richiede un argomento intero, non \"%s\"" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s è già alla versione più recente.\n" +msgid "Option '%s' is too long" +msgstr "Opzione \"%s\" troppo lunga" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versione \"%s\" (%s) selezionata per \"%s\"\n" +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:899 +#: apt-pkg/contrib/cmndline.cc:391 #, 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" +msgid "Invalid operation %s" +msgstr "Operazione %s non valida" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "" -"Il pacchetto \"%s\" non è installato e quindi non è stato rimosso: si " -"intendeva \"%s\"?\n" +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:947 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Il pacchetto \"%s\" non è installato e quindi non è stato rimosso\n" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Totale nomi dei pacchetti: " -#: 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:319 +msgid "Total package structures: " +msgstr "Totale strutture dei pacchetti: " -#: 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:359 +msgid " Normal packages: " +msgstr " Pacchetti normali: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avviso di autenticazione disabilitato.\n" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Pacchetti virtuali puri: " -#: 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:361 +msgid " Single virtual packages: " +msgstr " Pacchetti virtuali singoli: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installare questi pacchetti senza verificarli?" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Pacchetti virtuali misti: " -#: 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" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Mancante: " -#: apt-private/private-sources.cc:58 -#, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Analisi di %s non riuscita: modificare nuovamente?" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Totale versioni distinte: " -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" -"Il proprio file \"%s\" è stato modificato: eseguire \"apt-get update\"." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Totale descrizioni distinte: " -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "Ricerca sul testo" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Totale dipendenze: " -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Trovato " +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Totale relazioni ver/file: " -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Scaricamento di:" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Totale relazioni desc/file: " -# (ndt) questa non so cosa voglia dire -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Totale corrispondenze fornite: " -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Totale stringhe globalizzate: " -#: 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-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Totale spazio dipendenza di versione: " -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [In lavorazione]" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Totale spazio inutilizzato: " + +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Totale spazio occupato: " -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 "Il file dei pacchetti %s non è sincronizzato." + +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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" + +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "È necessario specificare almeno un modello per la ricerca" + +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Cambio disco: inserire il disco chiamato\n" -" \"%s\"\n" -"nell'unità \"%s\" e premere Invio\n" +"Questo comando è deprecato. Utilizzare \"apt-mark showauto\" al suo posto." -#. 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 "Impossibile leggere %s" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "File dei pacchetti:" -#: 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 "Impossibile passare a %s" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" +"La cache non è sincronizzata, impossibile referenziare un file di pacchetti" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pacchetti con gancio:" + +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(non trovato)" + +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Installato: " + +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidato: " + +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(nessuno)" + +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Gancio del pacchetto: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabella versione:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "No mirror file '%s' found " -msgstr "Nessun file mirror \"%s\" trovato " +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s per %s compilato il %s %s\n" + +#: cmdline/apt-cache.cc:1801 +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" -#. 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 "Impossibile leggere il file mirror \"%s\"" +#: 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\"" -#: methods/mirror.cc:315 -#, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nessuna voce trovata nel file mirror \"%s\"" +#: 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" -#: methods/mirror.cc:445 +#: cmdline/apt-cdrom.cc:139 #, 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 "Creazione di una pipe IPC verso il sottoprocesso non riuscita" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Connessione chiusa prematuramente" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Impostazione predefinita errata." - -#: 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." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Eliminare tutti i file .deb precedentemente scaricati?" +msgid "Failed to mount '%s' to '%s'" +msgstr "Mount di \"%s\" su \"%s\" non riuscito" -# 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: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 "" -"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la " -"configurazione" +"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\"." -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati" +#: 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." -#: 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-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argomenti non in coppia" -#: 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 "" -"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" +"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" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Errore interno in AddDiversion" +#: 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-inst/filelist.cc:477 +#: cmdline/apt-get.cc:327 #, 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 "Can not find a package '%s' with version '%s'" +msgstr "Impossibile trovare un pacchetto \"%s\" con versione \"%s\"" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:330 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Doppia aggiunta di deviazione %s -> %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Impossibile trovare un pacchetto \"%s\" con release \"%s\"" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "File di configurazione duplicato %s/%s" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:423 #, c-format -msgid "The path %s is too long" -msgstr "Il percorso %s è troppo lungo" +msgid "Can not find version '%s' of package '%s'" +msgstr "Impossibile trovare la versione \"%s\" del pacchetto \"%s\"" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Unpacking %s more than once" -msgstr "Estrazione di %s eseguita più di una volta" +msgid "Couldn't find package %s" +msgstr "Impossibile trovare il pacchetto %s" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid "The directory %s is diverted" -msgstr "La directory %s è deviata" +msgid "%s set to manually installed.\n" +msgstr "È stato impostato %s per l'installazione manuale.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" +msgid "%s set to automatically installed.\n" +msgstr "%s impostato automaticamente come installato.\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 "" -"Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s" +"Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" +"\" al suo posto." -#: 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:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Impossibile bloccare la directory di scaricamento" + +#: 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" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Failed to stat %s" -msgstr "Impossibile eseguire stat su %s" +msgid "Unable to find a source package for %s" +msgstr "Impossibile trovare un pacchetto sorgente per %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 "Rinomina di %s in %s non riuscita" +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-inst/extract.cc:249 +#: cmdline/apt-get.cc:791 #, 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 "" +"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/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:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Il percorso è troppo lungo" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Impossibile determinare lo spazio libero in %s" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" +msgid "You don't have enough free space in %s" +msgstr "Lo spazio libero in %s è insufficiente" -#: 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:893 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "È necessario recuperare %sB/%sB di sorgenti.\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:898 #, c-format -msgid "Unable to stat %s" -msgstr "Impossibile eseguire stat su %s" +msgid "Need to get %sB of source archives.\n" +msgstr "È necessario scaricare %sB di sorgenti.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Failed to write file %s" -msgstr "Scrittura del file %s non riuscita" +msgid "Fetch source %s\n" +msgstr "Recupero sorgente %s\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Recupero di alcuni archivi non riuscito." + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Scaricamento completato e in modalità solo scaricamento" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to close file %s" -msgstr "Chiusura del file %s non riuscita" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:964 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "Questo non è un archivio DEB valido: membro \"%s\" mancante" +msgid "Unpack command '%s' failed.\n" +msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Errore interno, impossibile trovare il membro %s" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "File \"control\" non analizzabile" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Firma dell'archivio non valida" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Creazione processo figlio non riuscita" -#: 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:1031 +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/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Invalid archive member header %s" -msgstr "Intestazione member dell'archivio %s non valida" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Intestazione member dell'archivio non valida" +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/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "L'archivio è troppo piccolo" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" -#: 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:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s non ha dipendenze di generazione.\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Creazione delle pipe non riuscita" +#: cmdline/apt-get.cc:1296 +#, c-format +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/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Esecuzione di gzip non riuscita " +#: cmdline/apt-get.cc:1314 +#, c-format +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/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Archivio danneggiato" +#: cmdline/apt-get.cc:1337 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " +"è troppo recente" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Checksum di tar non riuscito, archivio danneggiato" +#: cmdline/apt-get.cc:1376 +#, 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/extracttar.cc:308 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" +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-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Unable to stat %s." -msgstr "Impossibile eseguire stat su %s." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Progress: [%3i%%]" -msgstr "Avanzamento: [%3i%%]" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Esecuzione di dpkg" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Il sistema di pacchetti \"%s\" non è supportato" +msgid "Changelog for %s (%s)" +msgstr "Changelog per %s (%s)" -#: 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-get.cc:1616 +msgid "Supported modules:" +msgstr "Moduli supportati:" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Scritti %i record.\n" +#: cmdline/apt-get.cc:1657 +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" + +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "È necessario specificare almeno una coppia URL/nome file" + +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "Scaricamento non riuscito" -#: 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-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" -#: 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 "Scritti %i record con %i file senza corrispondenze\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s non può essere segnato perché non è installato.\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 "" -"Scritti %i record con %i file mancanti e %i file senza corrispondenze\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s è già stato impostato come installato manualmente.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Impossibile trovare il record di autenticazione per %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s è già stato impostato come installato automaticamente.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash non corrispondente per %s" +msgid "%s was already set on hold.\n" +msgstr "%s è già stato impostato come bloccato.\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "The method driver %s could not be found." -msgstr "Impossibile trovare un driver per il metodo %s." +msgid "%s was already not hold.\n" +msgstr "%s era già non bloccato.\n" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Is the package %s installed?" -msgstr "Il pacchetto %s è installato?" +msgid "%s set on hold.\n" +msgstr "%s impostato come bloccato.\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 "Il metodo %s non si è avviato correttamente" +msgid "Canceled hold on %s.\n" +msgstr "Blocco su %s annullato.\n" -#: 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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Esecuzione di dpkg non riuscita. È stato lanciato come 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 "" -"L'elenco dei pacchetti o il file di stato non può essere letto o aperto." +"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)." -#: 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 "" -"È 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" +"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/pkgcache.cc:174 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Questo APT non supporta il sistema di versione \"%s\"" +msgid "Unable to read the cdrom database %s" +msgstr "Impossibile leggere il database del CD-ROM %s" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: 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 "" -"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" +"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/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Va in conflitto" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM sbagliato" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Sostituisce" +#: methods/cdrom.cc:249 +#, 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." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Rende obsoleto" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco non trovato" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Rompe" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "File non trovato" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Migliora" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "richiesto" +#: 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/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 "Accesso in corso" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opzionale" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Impossibile determinare il nome del nodo" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossibile determinare il nome locale" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Il file indice di tipo \"%s\" non è supportato" +msgid "The server refused the connection and said: %s" +msgstr "Il server ha rifiutato la connessione e riporta: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "La cache ha un sistema di gestione delle versioni incompatibile" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER 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:232 #, c-format -msgid "Error occurred while processing %s (%s%d)" -msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" +msgid "PASS failed, server said: %s" +msgstr "PASS non riuscito, il server riporta: %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 "" -"È stato superato il numero di nomi di pacchetti che questo APT può gestire." - -#: 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." - -#: 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." - -#: 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." +"È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" +"ftp::ProxyLogin è vuoto." -# (ndt) il primo è il nome del pacchetto, il secondo la versione -#: 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 "" -"Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " -"dipendenze" +"Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" +msgid "TYPE failed, server said: %s" +msgstr "TYPE non riuscito, il server riporta: %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" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Connessione scaduta" -# (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:350 +msgid "Server closed the connection" +msgstr "Il server ha chiuso la connessione" -#: 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:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Una risposta ha superato le dimensioni del buffer." -#: 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:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocollo danneggiato" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Invia lo scenario al solver" +#: 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/edsp.cc:241 -msgid "Send request to solver" -msgstr "Invia la richiesta al solver" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" +"Impossibile connettersi al socket dati, tempo esaurito per la connessione" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Preparazione alla ricezione della soluzione" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Non riuscito" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Il solver esterno è terminato senza un errore di messaggio" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Impossibile connettersi alla socket passiva." -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Esecuzione solver esterno" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "rename() non riuscita: %s (%s -> %s)." +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Impossibile eseguire bind() su un socket" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Somma hash non corrispondente" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Impossibile eseguire listen() su un socket" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Le dimensioni non corrispondono" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Impossibile determinare il nome del socket" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "Formato file non valido" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossibile inviare il 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 "" -"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " -"errata o file danneggiato)" +msgid "Unknown address family %u (AF_*)" +msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" -#: apt-pkg/acquire-item.cc:1597 +#: methods/ftp.cc:811 #, 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 "EPRT failed, server said: %s" +msgstr "EPRT 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" +#: 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" -#: apt-pkg/acquire-item.cc:1677 +#: 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" + +#: 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 "" -"Il file Release per %s è scaduto (non valido dal %s). Gli aggiornamenti per " -"questo repository non verranno applicati." +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:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" +msgid "Data transfer failed, server said '%s'" +msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Interrogazione" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Impossibile invocare " -#: 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 "" -"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 "Connecting to %s (%s)" +msgstr "Connessione a %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 "Errore 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 "" -"Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " -"sistemare manualmente questo pacchetto (a causa dell'architettura mancante)." +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:1933 +#: methods/connect.cc:100 #, 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 "Cannot initiate the connection to %s:%s (%s)." +msgstr "Impossibile iniziare la connessione a %s:%s (%s)." -# (ndt) sarebbe da controllare se veramente possono esistere più file indice -#: 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 "" -"I file indice del pacchetto sono danneggiati. Manca il campo \"Filename:\" " -"per il pacchetto %s." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Il blocco vendor %s non contiene impronte" +msgid "Could not connect to %s:%s (%s)." +msgstr "Impossibile connettersi a %s:%s (%s)." -# (ndt) sarebbe da controllare meglio assieme a quella dopo -#: 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 "Manca la directory di liste %spartial." +msgid "Connecting to %s" +msgstr "Connessione a %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Manca la directory di archivio %spartial." +msgid "Could not resolve '%s'" +msgstr "Impossibile risolvere \"%s\"" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossibile bloccare la directory %s" +msgid "Temporary failure resolving '%s'" +msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:209 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Scaricamento file %li di %li (%s rimanente)" +msgid "System error resolving '%s:%s'" +msgstr "Errore di sistema nella risoluzione di \"%s:%s\"" + +#: methods/connect.cc:211 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "" +"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" -#: 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." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Impossibile scaricare alcuni file di indice: saranno ignorati o verranno " -"usati quelli vecchi." +"Errore interno: firma corretta, ma non è possibile determinare l'impronta " +"della chiave." -#: 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" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "È stata trovata almeno una firma non valida." -#: 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 "" -"Il valore \"%s\" non è valido per APT::Default-Release poiché tale release " -"non è disponibile dalle sorgenti" +"Impossibile eseguire \"gpgv\" per verificare la firma (forse gpgv non è " +"installato)" -#: 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 "" -"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" -"\"" +"Il file con la firma in chiaro non è valido, ottenuto \"%s\" (la rete " +"richiede autenticazione?)" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Impossibile comprendere il tipo di gancio %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Errore sconosciuto durante l'esecuzione di gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Priorità per il gancio non specificata (o zero)" +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Le seguenti firme non erano 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 "" -"Impossibile eseguire immediatamente la configurazione su \"%s\". Per " -"maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" -"Immediate-Configure\" (%d)." +"Le seguenti firme non sono state verificate perché la chiave pubblica non è " +"disponibile:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Impossibile configurare \"%s\". " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "File vuoti non possono essere archivi validi" -#: 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 "" -"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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Errore nello scrivere sul file" -#: 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." +#: 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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Smontaggio CD-ROM...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Errore nel leggere dal server" -#: 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:561 +msgid "Error writing to file" +msgstr "Errore nello scrivere su file" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "In attesa del disco...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Select non riuscita" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montaggio CD-ROM...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Connessione terminata" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificazione... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Errore nello scrivere sul file di output" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etichette archiviate: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "In attesa degli header" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Analisi del disco per file indice...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Riga header non corretta" -#: 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/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: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: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:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Trovata l'etichetta \"%s\"\n" +#: 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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Questo non è un nome valido, riprovare.\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:817 +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato della data sconosciuto" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Header dati non corretto" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Connessione non riuscita" + +#: methods/server.cc:572 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Questo disco è chiamato: \n" -"\"%s\"\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copia elenco pacchetti..." +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Errore interno" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Scrittura nuovo elenco sorgenti\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calcolo dell'aggiornamento... " -#: 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-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Eseguito" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "Ordinamento" + +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "Elencazione" + +#: apt-private/private-list.cc:156 #, 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." +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/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-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Correzione delle dipendenze..." -#: 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-private/private-cachefile.cc:96 +msgid " failed." +msgstr " non riuscita." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Generazione albero delle dipendenze" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossibile correggere le dipendenze" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versioni candidate" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossibile minimizzare l'insieme da aggiornare" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generazione delle dipendenze" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Fatto" -#: 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-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/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Apertura del file di stato %s non riuscita" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dipendenze non trovate. Riprovare usando -f." -#: 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-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "sconosciuto" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:233 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Impossibile analizzare il file di pacchetto %s (1)" +msgid "[installed,upgradable to: %s]" +msgstr "[installato, aggiornabile a: %s]" -#: 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-output.cc:237 +msgid "[installed,local]" +msgstr "[installato, locale]" -# (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-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "[installato, auto-rimovibile]" -# (ndt) dovrebbe essere inteso il Version -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Version \"%s\" per \"%s\" non trovato" +#: apt-private/private-output.cc:242 +msgid "[installed,automatic]" +msgstr "[installato, automatico]" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossibile trovare il task \"%s\"" +#: apt-private/private-output.cc:244 +msgid "[installed]" +msgstr "[installato]" -#: apt-pkg/cacheset.cc:609 +#: apt-private/private-output.cc:248 #, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "" -"Impossibile trovare alcun pacchetto tramite l'espressione regolare \"%s\"" +msgid "[upgradable from: %s]" +msgstr "[aggiornabile da: %s]" -#: 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:252 +msgid "[residual-config]" +msgstr "[configurazione residua]" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:434 #, 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" +msgid "but %s is installed" +msgstr "ma la versione %s è installata" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:436 #, 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 "but %s is to be installed" +msgstr "ma la versione %s sta per essere installata" -#: 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:443 +msgid "but it is not installable" +msgstr "ma non è installabile" -#: 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" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "ma è un pacchetto virtuale" -#: 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" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "ma non è installato" -#: 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:448 +msgid "but it is not going to be installed" +msgstr "ma non sta per essere installato" -#: 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:453 +msgid " or" +msgstr " oppure" -#: 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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "I seguenti pacchetti hanno dipendenze non soddisfatte:" -#: 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:502 +msgid "The following NEW packages will be installed:" +msgstr "I seguenti pacchetti NUOVI saranno installati:" -#: 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:528 +msgid "The following packages will be REMOVED:" +msgstr "I seguenti pacchetti saranno RIMOSSI:" -#: 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:550 +msgid "The following packages have been kept back:" +msgstr "I seguenti pacchetti sono stati mantenuti alla versione attuale:" -#: 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:571 +msgid "The following packages will be upgraded:" +msgstr "I seguenti pacchetti saranno aggiornati:" -#: 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:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "I seguenti pacchetti saranno RETROCESSI:" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "I seguenti pacchetti bloccati saranno cambiati:" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:667 #, 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)" +msgid "%s (due to %s) " +msgstr "%s (a causa di %s) " -#: 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:675 +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:706 #, 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:710 #, 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:712 #, 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:714 #, 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:718 #, 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:740 +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:746 +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:757 +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:763 +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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +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:224 #, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Interrotto." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout è un terminale?" +#: apt-private/private-install.cc:245 +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:315 +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:322 +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:326 +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:331 +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:332 +msgid "Aborting install." +msgstr "Interruzione dell'installazione." -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:368 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] "" +"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-private/private-install.cc:372 +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:393 +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 di memoria esaurita." +"Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:501 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 "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore nel sistema locale." +"Sembra che AutoRemover abbia rovinato qualcosa e questo\n" +"non doveva accadere. Segnalare un bug riguardo 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" + +#: apt-private/private-install.cc:515 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" -"Segnalazione apport non scritta poiché il messaggio di errore indica un " -"errore di I/O di 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] "" +"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:91 +#: apt-private/private-install.cc:519 #, 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 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:521 +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " -"altro processo potrebbe tenerla occupata." +"È utile eseguire \"apt-get -f install\" per correggere questi problemi:" -#: apt-pkg/deb/debsystem.cc:94 -#, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +#: apt-private/private-install.cc:616 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." msgstr "" -"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " -"necessario essere root." +"Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " +"(o specificare una soluzione)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:640 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 è stato interrotto. È necessario eseguire \"%s\" per correggere il " -"problema. " +"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." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Non bloccato" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Pacchetti danneggiati" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "I seguenti pacchetti saranno inoltre installati:" -#. 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:828 +msgid "Suggested packages:" +msgstr "Pacchetti suggeriti:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Pacchetti raccomandati:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:851 #, 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:1243 +#: apt-private/private-install.cc:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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-private/private-download.cc:36 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." -#: apt-pkg/contrib/fileutl.cc:412 +#: 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-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:88 +msgid "Get:" +msgstr "Scaricamento di:" + +# (ndt) questa non so cosa voglia dire +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Ign " + +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:824 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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," + +#: 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:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Errore" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Unione delle informazioni disponibili" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Fatto" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode invocata su un nodo ancora collegato" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Localizzazione dell'elemento hash non riuscita." -#. 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 "Allocazione della deviazione 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:464 +msgid "Internal error in AddDiversion" +msgstr "Errore interno in AddDiversion" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Impossibile duplicare il descrittore del file %i" +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:119 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Impossibile creare mmap di %llu byte" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Impossibile chiudere mmap" +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:184 #, 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 =." -msgstr "" -"Opzione %s: la specifica di configurazione dell'oggetto deve avere un " -"=." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3372,12 +3385,7 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, c-format -msgid "Unable to mkstemp %s" -msgstr "Impossibile eseguire mkstemp %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Impossibile trovare la versione di debconf. È installato?" @@ -3495,17 +3503,17 @@ msgstr "Nessuna selezione corrisponde" msgid "Some files are missing in the package file group `%s'" msgstr "Mancano alcuni file nel file group di pacchetti \"%s\"" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Il database era danneggiato, il file è stato rinominato in %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Il database è vecchio, tentativo di aggiornamento %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3513,108 +3521,108 @@ msgstr "" "Il formato del database non è valido. Se è stato eseguito l'aggiornamento da " "una vecchia versione di apt, rimuovere e ricreare il database." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Impossibile aprire il file del database %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Esecuzione di readlink su %s non riuscita" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "L'archivio non ha un campo \"control\"" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Impossibile ottenere un cursore" # (ndt) messo A per Avviso # Inizio con la maiuscola dopo i : perché mi sa che in molti # casi molte stringhe sono così -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Impossibile leggere la directory %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Impossibile eseguire stat su %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Gli errori si applicano al file " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Risoluzione di %s non riuscita" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Visita dell'albero non riuscita" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Apertura di %s non riuscita" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Delink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Esecuzione di readlink su %s non riuscita" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Esecuzione di unlink su %s non riuscita" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Collegamento di %s a %s non riuscito" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Raggiunto il limite di DeLink di %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "L'archivio non ha un campo \"package\"" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s non ha un campo override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " il responsabile di %s è %s non %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ha un campo source override\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s non ha neppure un campo binario override\n" diff --git a/po/ja.po b/po/ja.po index b91eb1d32..0292adfa2 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 \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2014-03-21 19:53+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" @@ -18,3263 +18,3276 @@ msgstr "" "Content-Transfer-Encoding: 8 bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "空のパッケージキャッシュ" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "パッケージキャッシュファイルが壊れています" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "このパッケージキャッシュファイルは互換性がないバージョンです" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "パッケージキャッシュファイルが壊れています。短かすぎます" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Package ファイル %s が同期していません。" +msgid "This APT does not support the versioning system '%s'" +msgstr "この APT はバージョニングシステム '%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 "パッケージが見つかりません" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "検索パターンはちょうど 1 つだけ指定してください" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +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:324 +msgid "PreDepends" +msgstr "先行依存" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "提案" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "推奨" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "競合" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "置換" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "廃止" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "破壊" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "拡張" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "重要" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "要求" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "標準" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "任意" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "特別" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "パッケージ %s が見つかりません" +msgid "Index file type '%s' is not supported" +msgstr "インデックスファイルのタイプ '%s' はサポートされていません" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "パッケージファイル:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +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 "キャッシュが同期しておらず、パッケージファイルを相互参照できません" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "キャッシュに非互換なバージョニングシステムがあります" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pin されたパッケージ:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s を処理中にエラーが発生しました (%s%d)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(見つかりません)" +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "この APT が対応している以上の数のパッケージが指定されました。" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " インストールされているバージョン: " +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "この APT が対応している以上の数のバージョンが要求されました。" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候補: " +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "この APT が対応している以上の数の説明が要求されました。" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(なし)" +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "この APT が対応している以上の数の依存関係が発生しました。" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " パッケージ Pin: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " バージョンテーブル:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "ソースパッケージリスト %s の状態を取得できません" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "パッケージリストを読み込んでいます" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "ファイル提供情報を収集しています" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s コンパイル日時: %s %s\n" +msgid "Unable to write to %s" +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 [オプション] 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "ソースキャッシュの保存中に IO エラーが発生しました" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "ソルバにシナリオを送信" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "ディスクをドライブに入れて Enter キーを押してください" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "ソルバにリクエストを送信" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "'%s' を '%s' にマウントできませんでした" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +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/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "" -"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "外部ソルバを実行" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "引数がペアではありません" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "名前の変更に失敗しました。%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-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "ハッシュサムが適合しません" -#: cmdline/apt-get.cc:245 -#, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "アーキテクチャ '%s' 用のパッケージは見つかりませんでした" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "サイズが適合しません" -#: cmdline/apt-get.cc:327 -#, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "パッケージ '%s' のバージョン '%s' は見つかりませんでした" +#: apt-pkg/acquire-item.cc:185 +msgid "Invalid file format" +msgstr "不正なファイル形式" -#: cmdline/apt-get.cc:330 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "リリース '%2$s' にはパッケージ '%1$s' は見つかりませんでした" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " +"sources.list エントリか、壊れたファイル)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Release ファイル中の '%s' のハッシュサムを見つけられません" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "パッケージ '%2$s' のバージョン '%1$s' は見つかりませんでした" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "パッケージ %s が見つかりません" +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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s は手動でインストールしたと設定されました。\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" +"ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" +"ました)" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s は自動でインストールしたと設定されました。\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." +"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 "" -"このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" -"に使用してください。" - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "内部エラー、問題リゾルバが何かを破壊しました" +"署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス" +"ファイルが使われます。GPG エラー: %s: %s\n" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "ダウンロードディレクトリをロックできません" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG エラー: %s: %s" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1972 +#, 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 "" -"ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" +"パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" +"で修正する必要があります (存在しないアーキテクチャのため)。" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s のソースパッケージが見つかりません" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"注意: '%s' パッケージは以下の場所の '%s' バージョン制御システムで保守されてい" -"ます:\n" -"%s\n" +"パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " +"フィールドがありません。" -#: cmdline/apt-get.cc:791 +#: apt-pkg/vendorlist.cc:85 #, 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 "Vendor block %s contains no fingerprint" +msgstr "ベンダブロック %s は鍵指紋を含んでいません" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" +msgid "List directory %spartial is missing." +msgstr "リストディレクトリ %spartial が見つかりません。" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s の空き領域を測定できません" +msgid "Archives directory %spartial is missing." +msgstr "アーカイブディレクトリ %spartial が見つかりません。" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s に充分な空きスペースがありません" +msgid "Unable to lock directory %s" +msgstr "ディレクトリ %s をロックできません" -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:891 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "ファイルを取得しています %li/%li (残り %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.cc:927 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB のソースアーカイブを取得する必要があります。\n" +msgid "Retrieving file %li of %li" +msgstr "ファイルを取得しています %li/%li" -#: cmdline/apt-get.cc:902 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Fetch source %s\n" -msgstr "ソース %s を取得\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "いくつかのアーカイブの取得に失敗しました。" +msgid "Failed to fetch %s %s\n" +msgstr "%s の取得に失敗しました %s\n" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" +#: 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:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "sources.list に 'ソース' URI を指定する必要があります" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "展開コマンド '%s' が失敗しました。\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"APT::Default-Release の 値 '%s' は、そのようなリリースをソース中から利用でき" +"ないため、無効です" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -"'dpkg-dev' パッケージがインストールされていることを確認してください。\n" +"不正なレコードがプリファレンスファイル %s に存在します。パッケージヘッダがあ" +"りません" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "ビルドコマンド '%s' が失敗しました。\n" +msgid "Did not understand pin type %s" +msgstr "pin タイプ %s を理解できませんでした" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子プロセスが失敗しました" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "pin で優先度 (または 0) が指定されていません" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" +"'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" +"Immediate-Configure の項を参照してください。(%d)" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' を設定できませんでした。" + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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." -"conf(5) の APT::Architectures を参照してください。" +"このインストールは、競合/先行依存のループが原因で、一時的に重要な不可欠パッ" +"ケージ %s を削除します。これは多くの場合に問題が起こる原因となります。本当に" +"これを行いたいなら、APT::Force-LoopBreak オプションを有効にしてください。" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s のビルド依存情報を取得できません" +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 "CD-ROM をアンマウントしています ...\n" + +#: apt-pkg/cdrom.cc:586 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM マウントポイント %s を使用します\n" + +#: 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 "確認しています... " -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s にはビルド依存情報が指定されていません。\n" +msgid "Stored label: %s\n" +msgstr "格納されたラベル: %s \n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "ディスクのインデックスファイルを走査しています ...\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " -"の依存関係を満たすことができません" +"%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" +"ス、%zu の署名を見つけました\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" -"ができません" +"パッケージファイルを配置できません。Debian のディスクではないか、誤ったアーキ" +"テクチャではないでしょうか?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" -"ケージは新しすぎます" +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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" -"め、%2$s に対する %1$s の依存関係を満たすことができません" +"このディスクは以下のように呼ばれます: \n" +"'%s'\n" -#: cmdline/apt-get.cc:1357 +#: 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 dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" -"係を満たすことができません" +"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" +"つけることができませんでした。" + +#: 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 "問題を解決することができません。壊れた変更禁止パッケージがあります。" -#: cmdline/apt-get.cc:1380 +#: 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 "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" +msgid "Failed to open StateFile %s" +msgstr "状態ファイル %s のオープンに失敗しました" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s のビルド依存関係を満たすことができませんでした。" +msgid "Failed to write temporary StateFile %s" +msgstr "一時状態ファイル %s の書き込みに失敗しました" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "ビルド依存関係の処理に失敗しました" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "パッケージファイル %s を解釈することができません (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) の変更履歴" +msgid "Unable to parse package file %s (2)" +msgstr "パッケージファイル %s を解釈することができません (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "サポートされているモジュール:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' のリリース '%1$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" -"ンドラインインタフェースです。もっともよく使われるコマンドは、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" - -#: cmdline/apt-helper.cc:35 -msgid "Must specify at least one pair url/filename" -msgstr "少なくとも URL / ファイル名を 1 組指定する必要があります" - -#: 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-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" - -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cacheset.cc:493 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s は手動でインストールしたとすでに設定されています。\n" +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s は自動でインストールしたとすでに設定されています。\n" +msgid "Unable to locate package %s" +msgstr "パッケージ %s が見つかりません" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cacheset.cc:604 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s はすでに保留に設定されています。\n" +msgid "Couldn't find task '%s'" +msgstr "タスク '%s' が見つかりません" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:610 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s はすでに保留されていません。\n" +msgid "Couldn't find any package by regex '%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/cacheset.cc:616 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s を待ちましたが、そこにはありませんでした" +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' に一致するパッケージは見つかりませんでした" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "%s set on hold.\n" -msgstr "%s は保留に設定されました。\n" +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "純粋な仮想パッケージのため、パッケージ '%s' のバージョンを選べません" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, 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 の実行に失敗しました。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." +"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:648 +#, 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:656 #, 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:664 +#, 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:83 #, 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 "ファイルが見つかりません" - -#: 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 "ログインしています" +msgid "Unable to parse Release file %s" +msgstr "Release ファイル %s を解釈することができません" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "ピアネームを決定することができません" +#: apt-pkg/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release ファイル %s にセクションがありません" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ローカルネームを決定することができません" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release ファイル %s に Hash エントリがありません" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "サーバから接続を拒絶されました。応答: %s" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" -#: methods/ftp.cc:225 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 失敗、サーバ応答: %s" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Release ファイル %s に無効な 'Date' エントリがあります" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:127 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 失敗、サーバ応答: %s" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "ソースリスト %2$s の %1$u 個目の区切りが不正です (URI parse)" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。" -"Acquire::ftp::ProxyLogin が空です。" +"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] を解釈できません)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] が短かすぎます)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:184 #, 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 -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 "ソケットをバインドできませんでした" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] は割り当てられていません)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -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 にキーがありません)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -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 に値がありません)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT コマンドを送信できません" +#: 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:802 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "未知のアドレスファミリ %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)" -#: 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 "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -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:838 -msgid "Unable to accept connection" -msgstr "接続を accept できません" +#: 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:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "ファイルのハッシュでの問題" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s をオープンしています" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ファイルを取得できません。サーバ応答 '%s'" +msgid "Malformed line %u in source list %s (type)" +msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -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:935 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "データ転送に失敗しました。サーバ応答 '%s'" +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "ソースリスト %3$s の %2$u 個目の節 '%1$s' は不明です" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "問い合わせ" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s をインストールしています" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "呼び出せません" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s を設定しています" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s (%s) へ接続しています" +msgid "Removing %s" +msgstr "%s を削除しています" -#: methods/connect.cc:87 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Completely removing %s" +msgstr "%s を完全に削除しています" -#: methods/connect.cc:94 +#: apt-pkg/deb/dpkgpm.cc:99 #, 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 "Noting disappearance of %s" +msgstr "%s の消失を記録しています" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s (%s) への接続を開始できません。" +msgid "Running post-installation trigger %s" +msgstr "インストール後トリガ %s を実行しています" -#: methods/connect.cc:108 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" +msgid "Directory '%s' missing" +msgstr "ディレクトリ '%s' が見つかりません" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s (%s) へ接続できませんでした。" +msgid "Could not open file '%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:989 #, c-format -msgid "Connecting to %s" -msgstr "%s へ接続しています" +msgid "Preparing %s" +msgstr "%s を準備しています" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' を解決できませんでした" +msgid "Unpacking %s" +msgstr "%s を展開しています" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' が一時的に解決できません" +msgid "Preparing to configure %s" +msgstr "%s の設定を準備しています" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "'%s:%s' の解決中にシステムエラーが発生しました" +msgid "Installed %s" +msgstr "%s をインストールしました" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" +msgid "Preparing for removal of %s" +msgstr "%s の削除を準備しています" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s:%s へ接続できません:" +msgid "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:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s を完全に削除する準備をしています" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "少なくとも 1 つの不正な署名が発見されました。" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely 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:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) に失敗しました" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" -"クリアサインされたファイルが有効ではなく、'%s' を得ました (認証にネットワーク" -"が必要?)" +msgid "Can not write log (%s)" +msgstr "ログを書き込めません (%s)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv の実行中に未知のエラーが発生" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "/dev/pts はマウントされていますか?" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "以下の署名が無効です:\n" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +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:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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" -msgstr "空のファイルは有効なアーカイブと認められません" +#: apt-pkg/deb/dpkgpm.cc:1563 +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:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "MaxReports にすでに達しているため、レポートは書き込まれません" -#: 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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "依存関係の問題 - 未設定のままにしています" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "サーバからの読み込みに失敗しました" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"エラーメッセージは前の失敗から続くエラーであることを示しているので、レポート" +"は書き込まれません。" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "ファイルへの書き込みでエラーが発生しました" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"エラーメッセージはディスクフルエラーであることを示しているので、レポートは書" +"き込まれません。" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select に失敗しました" +#: apt-pkg/deb/dpkgpm.cc:1645 +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:1652 apt-pkg/deb/dpkgpm.cc:1658 +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:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"エラーメッセージは dpkg I/O エラーであることを示しているので、レポートは書き" +"込まれません。" -#: 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 権限で実行していますか?" -#: 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 "" +"dpkg は中断されました。問題を修正するには '%s' を手動で実行する必要がありま" +"す。" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP サーバが不正な Content-Length ヘッダを送信してきました" +#: 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 サーバが不正な Content-Range ヘッダを送信してきました" +#. 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: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 "%li時間 %li分 %li秒" -#: 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 "%li分 %li秒" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "不正なヘッダです" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li秒" -#: 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:191 +#, 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:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "ロックファイル %s をオープンできません" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "完了" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs マウントされたロックファイル %s にはロックを使用しません" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "ソート中" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "ロック %s が取得できませんでした" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "一覧表示" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +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:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "ディレクトリ '%2$s' の '%1$s' が通常ファイルではないため、無視します" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "依存関係を解決しています ..." +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"ディレクトリ '%2$s' の '%1$s' がファイル名拡張子を持たないため、無視します" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 失敗しました。" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"ディレクトリ '%2$s' の '%1$s' が無効なファイル名拡張子を持っているため、無視" +"します" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "依存関係を訂正できません" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "アップグレードセットを最小化できません" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "子プロセス %s がシグナル %u を受け取りました。" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完了" +#: apt-pkg/contrib/fileutl.cc:847 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:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "" -"これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ" -"ん。" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子プロセス %s が予期せず終了しました" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "未解決の依存関係があります。-f オプションを試してください。" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "gzip ファイル %s のクローズ中に問題が発生しました" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1139 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[インストール済み、%s にアップグレード可]" +msgid "Could not open file %s" +msgstr "ファイル %s をオープンできませんでした" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[インストール済み、ローカル]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "ファイルデスクリプタ %d を開けませんでした" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[インストール済み、自動削除可]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "子プロセス IPC の生成に失敗しました" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[インストール済み、自動]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "以下の圧縮ツールの実行に失敗しました: " -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[インストール済み]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "読み込みエラー" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1552 #, c-format -msgid "[upgradable from: %s]" -msgstr "[%s からアップグレード可]" +msgid "read, still have %llu to read but none left" +msgstr "読み込みが %llu 残っているはずですが、何も残っていません" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[設定未完了]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "あと %llu 書き込む必要がありますが、書き込むことができませんでした" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "but %s is installed" -msgstr "しかし、%s はインストールされています" +msgid "Problem closing the file %s" +msgstr "ファイル %s のクローズ中に問題が発生しました" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is to be installed" -msgstr "しかし、%s はインストールされようとしています" +msgid "Problem renaming the file %s to %s" +msgstr "%s から %s へのファイル名変更中に問題が発生しました" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "しかし、インストールすることができません" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "ファイル %s の削除中に問題が発生しました" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "しかし、これは仮想パッケージです" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "ファイルの同期中に問題が発生しました" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "しかし、インストールされていません" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s の状態を取得できません" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "しかし、インストールされようとしていません" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... エラー!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " または" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... 完了" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "以下のパッケージには満たせない依存関係があります:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -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:528 -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:550 -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:571 -msgid "The following packages will be upgraded:" -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:592 -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:612 -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:667 +#: 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 "%lu バイトの mmap ができませんでした" -#: apt-private/private-output.cc:675 +#: 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:706 +#: 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 "%lu バイトの上限に達しているため、MMap のサイズを増やせません。" -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "再インストール: %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:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "ダウングレード: %lu 個、" +msgid "Unable to stat the mount point %s" +msgstr "マウントポイント %s の状態を取得できません" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM の状態を取得するのに失敗しました" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "削除: %lu 個、保留: %lu 個。\n" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "理解できない省略形式です: '%c'" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" +msgid "Opening configuration file %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:740 -msgid "[Y/n]" -msgstr "[Y/n]" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +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:746 -msgid "[y/N]" -msgstr "[y/N]" +#: apt-pkg/contrib/configuration.cc:822 +#, 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:757 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "正規表現の展開エラー - %s" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "文法エラー %s:%u: インクルードのネストが多すぎます" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update コマンドは引数をとりません" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "文法エラー %s:%u: ここからインクルードされています" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "文法エラー %s:%u: 未対応の命令 '%s'" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" +"文法エラー %s:%u: clear ディレクティブは、引数としてオプションツリーを必要と" +"します" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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 "Syntax error %s:%u: Extra junk at end of file" +msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" +#. 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:91 -msgid "Packages need to be removed but remove is disabled." -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:110 -msgid "Internal error, Ordering didn't finish" -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:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +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 strings, so %sB will be correctly translate in e.g. 1,5 MB -#: apt-private/private-install.cc:155 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%2$sB 中 %1$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:160 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB のアーカイブを取得する必要があります。\n" +msgid "Option %s: Configuration item specification must have an =." +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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\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:172 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "この操作後に %sB のディスク容量が解放されます。\n" +msgid "Option '%s' is too long" +msgstr "オプション '%s' は長すぎます" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s に充分な空きスペースがありません。" +msgid "Sense %s is not understood, try true or false." +msgstr "%s を解釈することができません。true か false を試してください。" -#: 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/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %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 が指定されましたが、これは簡単な操作ではありません。" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n" -#. 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!" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +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" -" ?] " +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "パッケージ構造総数: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "中断しました。" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " 通常パッケージ: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "続行しますか?" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " 純粋仮想パッケージ: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "いくつかのファイルの取得に失敗しました" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " 単一仮想パッケージ: " -#: 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 オプションを付けて試してみてください。" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " 複合仮想パッケージ: " -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " 欠落: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "足りないパッケージを直すことができません。" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "個別バージョン総数: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "インストールを中断します。" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +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" -"システムから消えました:" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "依存関係総数: " -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意: これは dpkg により自動でわざと行われれます。" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "バージョン/ファイル関係総数: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"一連のものを削除するようになっていないので、AutoRemover を開始できません" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "説明/ファイル関係総数: " -#: 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 "" -"AutoRemover が、本来起きるべきでない何かを壊したようです。\n" -"apt にバグ報告を送ってください。" +#: cmdline/apt-cache.cc:376 +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:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Glob 文字列の総数: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部エラー、AutoRemover が何かを破壊しました" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "総依存関係・バージョン容量: " -#: 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] "" -"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "総空き容量: " -#: 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" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +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] "これを削除するには 'apt-get autoremove' を利用してください。" +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 +#, c-format +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:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:1306 +msgid "You must give at least one search pattern" +msgstr "検索パターンはちょうど 1 つだけ指定してください" -#: 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." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"インストールすることができないパッケージがありました。おそらく、あり得\n" -"ない状況を要求したか、(不安定版ディストリビューションを使用しているの\n" -"であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" -"動されていないことが考えられます。" - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "壊れたパッケージ" +"このコマンドは時代遅れです。'apt-mark showauto' を代わりに使用してください。" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "以下の特別パッケージがインストールされます:" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "パッケージファイル:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "提案パッケージ:" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "キャッシュが同期しておらず、パッケージファイルを相互参照できません" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "推奨パッケージ:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pin されたパッケージ:" -#: 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" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(見つかりません)" -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " インストールされているバージョン: " -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " 候補: " -#: apt-private/private-install.cc:846 -#, fuzzy, c-format -msgid "%s is already the newest version.\n" -msgstr "%s はすでに保留に設定されています。\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(なし)" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " パッケージ Pin: " -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " バージョンテーブル:" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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:947 -#, 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:1801 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" -" ロックが非アクティブであることから、今この時点の状態に妥当性が\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-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 "ヒット " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "取得:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "無視 " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "エラー " +"CD-ROM が自動検出されなかったか、デフォルトで利用するマウントポイントに見当た" +"りませんでした。\n" +"CD-ROM のマウントポイントを設定するために --cdrom オプションを試すことができ" +"ます。\n" +"CD-ROM の自動検出およびマウントポイントの詳細については、'man apt-cdrom' を参" +"照してください。" -#: 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 "" +"あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" -#: 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" +"使用方法: 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" -#. 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 "%s を読み込むことができません" +msgid "Can not find a package for architecture '%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:327 #, c-format -msgid "Unable to change to %s" -msgstr "%s へ変更することができません" +msgid "Can not find a package '%s' with version '%s'" +msgstr "パッケージ '%s' のバージョン '%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 "ミラーファイル '%s' が見つかりません " +msgid "Can not find a package '%s' with release '%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:287 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "ミラーファイル '%s' を読み込めません" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "ミラーファイル '%s' のエントリが見つかりません" +msgid "Can not find version '%s' of package '%s'" +msgstr "パッケージ '%2$s' のバージョン '%1$s' は見つかりませんでした" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, 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 "展開中に何らかのエラーが発生しました。インストールされたパッケージを" +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:891 +#, 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 "が重要です。これを修正して「導入」を再度実行してください" - -#: 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-mark auto' および 'apt-mark manual' を代わり" +"に使用してください。" -#: 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 の diversion を上書きしようとしています" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "" +"ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "%s -> %s の diversion が二重に追加されています" +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 +#: 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 "" +"パッケージの最新の (まだリリースされていないかもしれない) 更新を取得するに" +"は、\n" +"bzr branch %s\n" +"を使用してください。\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:839 #, 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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "The directory %s is diverted" -msgstr "ディレクトリ %s は divert されています" +msgid "Couldn't determine free space in %s" +msgstr "%s の空き領域を測定できません" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:884 #, 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 "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:893 #, c-format -msgid "Failed to stat %s" -msgstr "%s の状態を取得するのに失敗しました" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%2$sB 中 %1$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:898 #, 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:904 #, 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:922 +msgid "Failed to fetch some archives." +msgstr "いくつかのアーカイブの取得に失敗しました。" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "パスが長すぎます" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:952 #, 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:964 #, 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:965 #, 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:993 #, 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:1012 +msgid "Child process failed" +msgstr "子プロセスが失敗しました" -#: 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 "'%s' メンバーがないため、正しい DEB アーカイブではありません" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1056 #, 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 "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt." +"conf(5) の APT::Architectures を参照してください。" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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 "Unable to get build-dependency information for %s" +msgstr "%s のビルド依存情報を取得できません" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "アーカイブヘッダの読み込みに失敗しました" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s にはビルド依存情報が指定されていません。\n" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "パイプの生成に失敗しました" +#: cmdline/apt-get.cc:1296 +#, c-format +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/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "gzip の実行に失敗しました" +#: cmdline/apt-get.cc:1314 +#, 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/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "壊れたアーカイブ" +#: cmdline/apt-get.cc:1337 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" +"ケージは新しすぎます" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "tar チェックサム検証が失敗しました。アーカイブが壊れています" +#: cmdline/apt-get.cc:1376 +#, 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/extracttar.cc:308 +#: cmdline/apt-get.cc:1382 #, 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:1405 #, 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:1420 #, 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:1425 +msgid "Failed to process build dependencies" +msgstr "ビルド依存関係の処理に失敗しました" -#: apt-pkg/init.cc:146 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Packaging system '%s' is not supported" -msgstr "パッケージングシステム '%s' はサポートされていません" +msgid "Changelog for %s (%s)" +msgstr "%s (%s) の変更履歴" + +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "サポートされているモジュール:" + +#: cmdline/apt-get.cc:1657 +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/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "適切なパッケージシステムタイプを特定できません" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "少なくとも URL / ファイル名を 1 組指定する必要があります" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i レコードを書き込みました。\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 "%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 helper は 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 "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s をインストールされていないものとしてマークできません\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 "" -"%i レコードを書き込みました。%i 個のファイルが見つからず、%i 個の適合しない" -"ファイルがあります。\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s は手動でインストールしたとすでに設定されています。\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:76 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "認証レコードが見つかりません: %s" +msgid "%s was already set to automatically installed.\n" +msgstr "%s は自動でインストールしたとすでに設定されています。\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:241 #, c-format -msgid "Hash mismatch for: %s" -msgstr "ハッシュサムが適合しません: %s" +msgid "%s was already set on hold.\n" +msgstr "%s はすでに保留に設定されています。\n" -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "The method driver %s could not be found." -msgstr "メソッドドライバ %s が見つかりません。" +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 #, c-format -msgid "Is the package %s installed?" -msgstr "パッケージ %s はインストールされていますか?" +msgid "%s set on hold.\n" +msgstr "%s は保留に設定されました。\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 "メソッド %s が正常に開始しませんでした" +msgid "Canceled hold on %s.\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' に入れて Enter キーを押してくだ" -"さい。" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "dpkg の実行に失敗しました。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 "" -"パッケージリストまたはステータスファイルを解釈またはオープンすることができま" -"せん。" +"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/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 "ソースのリストを読むことができません。" - -#: 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 "このパッケージキャッシュファイルは互換性がないバージョンです" - -#: apt-pkg/pkgcache.cc:169 -msgid "The package cache file is corrupted, it is too small" -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 "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-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-" +"ROM を追加するために apt-get update は使用できません。" -#: 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 +#: 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:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "ソルバにシナリオを送信" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "ソケットをバインドできませんでした" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "ソルバにリクエストを送信" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "ソケットをリスンできませんでした" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "解決を受け取る準備" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "ソケットの名前を特定できませんでした" -#: apt-pkg/edsp.cc:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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 +#: 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 "不明な日付フォーマットです" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "不正なヘッダです" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "接続失敗" + +#: methods/server.cc:572 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" -"ス、%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?" -msgstr "" -"パッケージファイルを配置できません。Debian のディスクではないか、誤ったアーキ" -"テクチャではないでしょうか?" +#: methods/server.cc:692 +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-private/private-list.cc:123 +msgid "Listing" +msgstr "一覧表示" + +#: apt-private/private-list.cc:156 +#, 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-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "アップグレードセットを最小化できません" + +#: 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-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "ラベル '%s' を見つけました\n" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "未解決の依存関係があります。-f オプションを試してください。" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "これは有効な名前ではありません。再試行してください。\n" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" +msgstr "不明" -#: apt-pkg/cdrom.cc:817 +#: apt-private/private-output.cc:233 #, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"このディスクは以下のように呼ばれます: \n" -"'%s'\n" +msgid "[installed,upgradable to: %s]" +msgstr "[インストール済み、%s にアップグレード可]" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "パッケージリストをコピーしています ..." +#: apt-private/private-output.cc:237 +msgid "[installed,local]" +msgstr "[インストール済み、ローカル]" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "新しいソースリストを書き込んでいます\n" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "[インストール済み、自動削除可]" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "このディスクのソースリストのエントリ:\n" +#: apt-private/private-output.cc:242 +msgid "[installed,automatic]" +msgstr "[インストール済み、自動]" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-output.cc:244 +msgid "[installed]" +msgstr "[インストール済み]" + +#: apt-private/private-output.cc:248 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." -msgstr "" -"パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" -"つけることができませんでした。" +msgid "[upgradable from: %s]" +msgstr "[%s からアップグレード可]" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." -msgstr "" -"エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" -"ジが原因です。" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "[設定未完了]" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" +#: apt-private/private-output.cc:434 +#, c-format +msgid "but %s is installed" +msgstr "しかし、%s はインストールされています" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "依存関係ツリーを作成しています" +#: apt-private/private-output.cc:436 +#, c-format +msgid "but %s is to be installed" +msgstr "しかし、%s はインストールされようとしています" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "候補バージョン" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "しかし、インストールすることができません" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "依存関係の生成" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "しかし、これは仮想パッケージです" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "状態情報を読み取っています" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "しかし、インストールされていません" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "状態ファイル %s のオープンに失敗しました" +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +msgstr "しかし、インストールされようとしていません" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "一時状態ファイル %s の書き込みに失敗しました" +#: apt-private/private-output.cc:453 +msgid " or" +msgstr " または" -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "パッケージファイル %s を解釈することができません (1)" +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "以下のパッケージには満たせない依存関係があります:" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "パッケージファイル %s を解釈することができません (2)" +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +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:528 +msgid "The following packages will be REMOVED:" +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:550 +msgid "The following packages have been kept back:" +msgstr "以下のパッケージは保留されます:" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "タスク '%s' が見つかりません" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "以下のパッケージはアップグレードされます:" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "正規表現 '%s' ではパッケージは見つかりませんでした" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "以下のパッケージは「ダウングレード」されます:" -#: apt-pkg/cacheset.cc:615 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "'%s' に一致するパッケージは見つかりませんでした" +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "以下の変更禁止パッケージは変更されます:" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:667 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "純粋な仮想パッケージのため、パッケージ '%s' のバージョンを選べません" +msgid "%s (due to %s) " +msgstr "%s (%s のため) " -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: apt-private/private-output.cc:675 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"パッケージ '%s' のインストール済みまたは候補のバージョンはいずれも存在しない" -"ので選べません" +"警告: 以下の不可欠パッケージが削除されます。\n" +"何をしようとしているか本当にわかっていない場合は、実行してはいけません!" -#: apt-pkg/cacheset.cc:647 +#: apt-private/private-output.cc:706 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" -"純粋な仮想パッケージのため、パッケージ '%s' の最新バージョンを選べません" +msgid "%lu upgraded, %lu newly installed, " +msgstr "アップグレード: %lu 個、新規インストール: %lu 個、" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:710 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "候補が存在しないので、パッケージ %s の候補バージョンを選べません" +msgid "%lu reinstalled, " +msgstr "再インストール: %lu 個、" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:712 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" -"インストールされていないので、パッケージ %s のインストール済みバージョンを選" -"べません。" +msgid "%lu downgraded, " +msgstr "ダウングレード: %lu 個、" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:714 #, c-format -msgid "Unable to parse Release file %s" -msgstr "Release ファイル %s を解釈することができません" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "削除: %lu 個、保留: %lu 個。\n" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:718 #, c-format -msgid "No sections in Release file %s" -msgstr "Release ファイル %s にセクションがありません" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release ファイル %s に Hash エントリがありません" +#. 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:740 +msgid "[Y/n]" +msgstr "[Y/n]" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "Release ファイル %s に無効な 'Valid-Until' エントリがあります" +#. 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:746 +msgid "[y/N]" +msgstr "[y/N]" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Release ファイル %s に無効な 'Date' エントリがあります" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "Y" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "ソースリスト %2$s の %1$u 個目の区切りが不正です (URI parse)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "N" -#: 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-update.cc:31 +msgid "The update command takes no arguments" +msgstr "update コマンドは引数をとりません" -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([オプション] が短かすぎます)" +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:184 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] は割り当てられていません)" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-show.cc:156 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$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:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "実際のパッケージではありません (仮想)" + +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" + +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。" + +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "内部エラー、調整が終わっていません" + +#: apt-private/private-install.cc:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" msgstr "" -"ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] キー %4$s に値がありません)" +"おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" -#: apt-pkg/sourcelist.cc:206 +#. 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:157 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI)" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n" -#: apt-pkg/sourcelist.cc:208 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:162 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist)" +msgid "Need to get %sB of archives.\n" +msgstr "%sB のアーカイブを取得する必要があります。\n" -#: apt-pkg/sourcelist.cc:211 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:169 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (URI parse)" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "この操作後に追加で %sB のディスク容量が消費されます。\n" -#: apt-pkg/sourcelist.cc:217 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:174 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-install.cc:202 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)" +msgid "You don't have enough free space in %s." +msgstr "%s に充分な空きスペースがありません。" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s をオープンしています" +#: apt-private/private-install.cc:212 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました" -#: apt-pkg/sourcelist.cc:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" -#: 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: 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:222 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/sourcelist.cc:416 +#: apt-private/private-install.cc:224 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ソースリスト %3$s の %2$u 個目の節 '%1$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:95 -#, c-format -msgid "Installing %s" -msgstr "%s をインストールしています" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +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:245 +msgid "Do you want to continue?" +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:315 +msgid "Some files failed to download" +msgstr "いくつかのファイルの取得に失敗しました" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s を完全に削除しています" +#: apt-private/private-install.cc:322 +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:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "%s の消失を記録しています" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "インストール後トリガ %s を実行しています" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +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:332 +msgid "Aborting install." +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:368 +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:989 -#, c-format -msgid "Preparing %s" -msgstr "%s を準備しています" +#: apt-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "注意: これは dpkg により自動でわざと行われれます。" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s を展開しています" +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "" +"一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s の設定を準備しています" +#: apt-private/private-install.cc:501 +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/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "%s の削除を準備しています" +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "内部エラー、AutoRemover が何かを破壊しました" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s を削除しました" +#: apt-private/private-install.cc:515 +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] "" +"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: apt-private/private-install.cc:519 #, c-format -msgid "Preparing to completely remove %s" -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" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s を完全に削除しました" +#: apt-private/private-install.cc:521 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "ioctl(TIOCGWINSZ) に失敗しました" +#: apt-private/private-install.cc:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" +"ません:" -#: 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:616 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" +"を明示してください)。" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "/dev/pts はマウントされていますか?" +#: apt-private/private-install.cc:640 +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 から移\n" +"動されていないことが考えられます。" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "標準出力はターミナルですか?" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "壊れたパッケージ" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "操作はそれが完了する前に中断されました" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "以下の特別パッケージがインストールされます:" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "MaxReports にすでに達しているため、レポートは書き込まれません" +#: apt-private/private-install.cc:828 +msgid "Suggested 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:829 +msgid "Recommended 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:851 +#, fuzzy, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: 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:855 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" 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:867 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" 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-private/private-install.cc:872 +#, fuzzy, c-format +msgid "%s is already the newest version.\n" +msgstr "%s はすでに保留に設定されています。\n" -#: 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:920 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" msgstr "" -"エラーメッセージは dpkg I/O エラーであることを示しているので、レポートは書き" -"込まれません。" -#: apt-pkg/deb/debsystem.cc:91 +#: apt-private/private-install.cc:925 #, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" msgstr "" -"管理用ディレクトリ (%s) をロックできません。これを使う別のプロセスが動いてい" -"ませんか?" -#: apt-pkg/deb/debsystem.cc:94 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 #, c-format -msgid "Unable to lock the administration directory (%s), are you root?" +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"管理用ディレクトリ (%s) をロックできません。root 権限で実行していますか?" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:973 +#, 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:1243 +#: 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:88 +msgid "Get:" +msgstr "取得:" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "ロック %s が取得できませんでした" +#: apt-private/acqprogress.cc:119 +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:123 +msgid "Err " +msgstr "エラー " -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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 "設定します。これにより、エラーが複数出るか、依存関係の欠如に" + +#: 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-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "ファイル %s のクローズ中に問題が発生しました" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "リンクされているノードで DropNode が呼ばれました" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s から %s へのファイル名変更中に問題が発生しました" +#: 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:184 #, 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 =." -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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3298,12 +3311,7 @@ msgstr "" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s の状態を取得できません" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "debconf のバージョンを取得できません。debconf はインストールされていますか?" @@ -3422,17 +3430,17 @@ msgstr "選択にマッチするものがありません" msgid "Some files are missing in the package file group `%s'" msgstr "パッケージファイルグループ `%s' に見当たらないファイルがあります" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB が壊れていたため、ファイル名を %s.old に変更しました" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB が古いため、%s のアップグレードを試みます" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3440,105 +3448,105 @@ msgstr "" "DB フォーマットが無効です。apt の古いバージョンから更新したのであれば、データ" "ベースを削除し、再作成してください。" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "DB ファイル %s を開くことができません: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "%s のリンク読み取りに失敗しました" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "アーカイブにコントロールレコードがありません" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "カーソルを取得できません" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "警告: ディレクトリ %s が読めません\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "警告: %s の状態を取得できません\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "エラー: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "警告: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "エラー: エラーが適用されるファイルは " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s の解決に失敗しました" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "ツリー内での移動に失敗しました" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s のオープンに失敗しました" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " リンク %s [%s] を外します\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "%s のリンク読み取りに失敗しました" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "%s のリンク解除に失敗しました" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s を %s にリンクするのに失敗しました" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " リンクを外す制限の %sB に到達しました。\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "アーカイブにパッケージフィールドがありませんでした" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s に override エントリがありません\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %1$s メンテナは %3$s ではなく %2$s です\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s にソース override エントリがありません\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s にバイナリ override エントリがありません\n" diff --git a/po/km.po b/po/km.po index 89c893057..a137863b9 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -21,3119 +21,3132 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: KBabel 1.11.2\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "​​ឯកសារ​ឃ្លាំង​កញ្ចប់​មិន​ត្រឹមត្រូវ​" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "ឯកសារ​ឃ្លាំងសម្ងាត់​​កញ្ចប់​ជាកំណែ​មិន​ត្រូវគ្នា​" + +#: apt-pkg/pkgcache.cc:164 +#, 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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +msgid "Depends" +msgstr "អាស្រ័យ​" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "កញ្ចប់​ដែល​បាន​ខ្ទាស់ ៖" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "អាស្រ័យជា​មុន" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(រក​មិន​ឃើញ)" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "ផ្ដល់យោបល់​" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " បាន​ដំឡើង ៖ " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "ផ្តល់​អនុសាសន៍​" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " សាកល្បង ៖ " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "ប៉ះទង្គិច" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(គ្មាន)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "ជំនួស​" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " ខ្ទាស់​កញ្ចប់ ៖ " +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "លែង​ប្រើ" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " តារាង​កំណែ ៖" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "សំខាន់​" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "បាន​ទាមទារ" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "គំរូ" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "ស្រេចចិត្ត" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "បន្ថែម" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" + +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex កំហុស​ការចងក្រង​ - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​​  ។" -#: cmdline/apt-cache.cc:1749 +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" + +#: apt-pkg/pkgcachegen.cc:286 #, 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" +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: 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/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទេ" +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %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:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%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:454 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Couldn't find package %s" -msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" +msgid "rename failed, %s (%s -> %s)." +msgstr "ប្តូរ​ឈ្មោះ​បានបរាជ័យ​, %s (%s -> %s) ។" -#: 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-pkg/acquire-item.cc:175 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" 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 "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" +#: apt-pkg/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Unable to find a source package for %s" -msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"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:843 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1972 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" +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:882 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "You don't have enough free space in %s" -msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" +msgid "Can't find a source to download version '%s' of '%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:2074 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %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 -#: cmdline/apt-get.cc:896 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្តិត​ម្រាម​ដៃ" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "ទៅប្រមូល​ប្រភព​ %s\n" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "ថត​ប័ណ្ណសារ​ %spartial គឺ​បាត់បង់​ ។" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" -#: cmdline/apt-get.cc:950 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:927 #, c-format -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 "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" +msgid "Retrieving file %li of %li" +msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" +msgid "Failed to fetch %s %s\n" +msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -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:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "អ្នកត្រូវតែដាក់ 'ប្រភព' URIs មួយចំនួន​នៅក្នុង sources.list របស់អ្នក" -#: cmdline/apt-get.cc:1054 +#: 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 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "កំណត់ត្រា​មិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិត្ត មិនមាន​បឋមកថា​កញ្ចប់ទេ" -#: 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 "%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:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " - -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -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 "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" + +#: apt-pkg/packagemanager.cc:584 +#, 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 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " +#: 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 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ ទេ..." -#: cmdline/apt-get.cc:1380 +#: 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" + +#: 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 "កំពុង​ធ្វើអត្តសញ្ញាណនា​... " -#: cmdline/apt-get.cc:1395 +#: 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 +#: apt-pkg/cdrom.cc:734 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង ហត្ថលេខា %i \n" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:744 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 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" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាម​ម្ដងទៀត ។\n" -#: cmdline/apt-helper.cc:66 +#: 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 "" +"ឌីស​នេះ​ត្រូវ​បាន​ហៅ​ ៖ \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 នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ្មី\n" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\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." +msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" +"ដែលបាន​ទុក ។" + +#: 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 +#, 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:169 #, 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:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់​ %s (2) បានឡើយ" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "មិន​អាច​កំណត់​ទីតាំង​កញ្ចប់ %s បានឡើយ" + +#: apt-pkg/cacheset.cc:604 #, 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:610 #, 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:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" + +#: apt-pkg/cacheset.cc:627 +#, 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:634 apt-pkg/cacheset.cc:641 +#, 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:648 +#, 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:656 #, 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:664 +#, 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:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" + +#: apt-pkg/indexrecords.cc:136 #, 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:149 +#, 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:168 +#, 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" - -#: 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 -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 "មិន​អាច​កំណត់​ឈ្មោះរបស់​រន្ធ​បានឡើយ" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "កំពុង​បើក​ %s" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" +msgid "Malformed line %u in source list %s (type)" +msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" -#: methods/ftp.cc:831 -msgid "Data socket connect 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:838 -msgid "Unable to accept connection" -msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" +#: 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 "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: 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:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, 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:1067 +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:1088 +msgid "Is stdout a terminal?" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:1563 +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:1625 +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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1632 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 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:1638 +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 "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" +#: apt-pkg/deb/dpkgpm.cc:1645 +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 "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +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 "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -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:626 -msgid "Connection timed out" -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:649 -msgid "Error writing to output 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 "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "កំពុង​រង់ចាំ​បឋមកថា" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +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 "" -#: 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 "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកថាប្រវែង​​​មាតិកា​មិនត្រឹមត្រូវ​" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកថា​ជួរ​មាតិកា​មិន​ត្រឹមត្រូវ​" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: 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:191 +#, 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:196 +#, 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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "កំហុស​ខាង​ក្នុង​" +#: apt-pkg/contrib/fileutl.cc:224 +#, 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:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "ធ្វើរួច​" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:413 +#, 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:422 +#, 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:841 #, 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:843 +#, 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:847 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:849 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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: 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:951 +#, 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:1139 +#, 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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ដំណើរការ​រង​ IPC" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "បរាជ័យ​ក្នុង​ការ​ប្រតិបត្តិ​កម្មវិធី​បង្ហាប់ " + +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "ការអាន​មានកំហុស" + +#: apt-pkg/contrib/fileutl.cc:1552 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [បានដំឡើង​]" +msgid "read, still have %llu to read but none left" +msgstr "អាន​, នៅតែ​មាន %lu ដើម្បី​អាន​ ប៉ុន្តែ​គ្មាន​អ្វី​នៅសល់" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [បានដំឡើង​]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "សរសេរ​, នៅតែមាន​ %lu ដើម្បី​សរសេរ​ ប៉ុន្តែ​មិន​អាច​" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [បានដំឡើង​]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [បានដំឡើង​]" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ​ឯកសារ" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" -#: apt-private/private-output.cc:434 +#: 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:436 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ប៉ុន្តែ​​វា​មិន​អាច​ដំឡើង​បាន​ទេ​" +msgid "%c%s... Done" +msgstr "%c%s... ធ្វើរួច​" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ប៉ុន្តែ​​វា​ជា​កញ្ចប់​និម្មិត​" - -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ប៉ុន្តែ​វា​មិន​បាន​ដំឡើង​ទេ​" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -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:453 -msgid " or" -msgstr " ឬ" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "មិនអាច mmap ឯកសារទទេ​បានឡើយ" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "កញ្ចប់​ខាងក្រោម​មាន​ភាពអាស្រ័យ​ដែល​ខុស​គ្នា ៖" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "មិន​អាច​បើក​បំពុង​សម្រាប់​ %s បានឡើយ" -#: apt-private/private-output.cc:502 -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:528 -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:550 -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:571 -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:592 -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:612 -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:667 +#: 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:675 +#: 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:706 +#: 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:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "បរាជ័យក្នុងការ​ថ្លែង ស៊ីឌីរ៉ូម" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu ត្រូវ​បាន​ដំឡើង​ឡើង​វិញ " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភេទ​អក្សរ​សង្ខេប ៖ '%c'" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu ​ត្រូវបានបន្ទាប់ " +msgid "Opening configuration file %s" +msgstr "កំពុង​បើ​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, 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:718 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចេញបានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" -#. 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:740 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:746 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:879 +#, 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:757 -msgid "Y" -msgstr "Y" +#: apt-pkg/contrib/configuration.cc:886 +#, 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:763 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនេះ​" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex កំហុស​ការចងក្រង​ - %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:902 +#, 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:952 #, 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-update.cc:94 -msgid "All packages are up to date." -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-show.cc:156 +#: apt-pkg/contrib/cmndline.cc:121 #, 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)" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "ជម្រើស​បន្ទាត់​ពាក្យបញ្ជា '%c' [from %s] មិនស្គាល់ឡើយ ។" -#: apt-private/private-install.cc:82 -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:91 -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:110 -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:148 -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 =." +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:155 +#: 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:160 +#: 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:167 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ថែម​​ទំហំ​ថាស​ត្រូវ​បាន​ប្រើ ។\n" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +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:172 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" -#: apt-private/private-install.cc:200 +#: 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:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" -msgstr "មាន​បញ្ហា​ ហើយ -y ត្រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" - -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -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-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-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "បោះបង់ ។" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "ឈ្មោះ​កញ្ចប់​សរុប ៖ " -#: apt-private/private-install.cc:243 +#: cmdline/apt-cache.cc:319 #, fuzzy -msgid "Do you want to continue?" -msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" - -#: 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-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" - -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" - -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" +msgid "Total package structures: " +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] "" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " កញ្ចប់​ធម្មតា ៖ " -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " កញ្ចប់​និម្មិត​សុទ្ធ ៖ " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " កញ្ចប់​និម្មិត​តែ​មួយ ៖ " -#: 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 "" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +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 "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " បាត់បង់ ៖ " -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "កំណែ​ផ្សេងៗ​សរុប ៖ " -#: apt-private/private-install.cc:513 +#: cmdline/apt-cache.cc:367 #, 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] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" - -#: 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] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" +msgid "Total distinct descriptions: " +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] "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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:372 +msgid "Total ver/file relations: " +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:374 +#, fuzzy +msgid "Total Desc/File relations: " +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 "" -"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ នេះ​មាន​ន័យ​ថា​អ្នក​\n" -"​បានស្នើរ​ស្ថានភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​" -"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" -" ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "ការផ្គូរផ្គង​ការផ្ដល់​សរុប ៖ " -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "កញ្ចប់​ដែល​បាន​ខូច​" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "ខ្សែ​អក្សរ​សរុប​ ៖ " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "ទំហំ​កំណែ​ភាព​អាស្រ័យ​សរុប ៖ " -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "ទំហំ slack សរុប ៖" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " -#: apt-private/private-install.cc:825 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" - -#: 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" +msgid "Package file %s is out of sync." +msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ខាងក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "អ្នក​ត្រូវ​តែ​ផ្ដល់​លំនាំ​មួយ​ដែល​ពិត​ប្រាកដ" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +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" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +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" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "ឃ្លាំង​សម្ងាត់​ឋិតនៅ​ក្រៅ​ការ​ធ្វើ​សមកាល​កម្ម ដែលមិន​អាច x-ref ឯកសារ​កញ្ចប់​បាន​ទេ" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +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 "" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(រក​មិន​ឃើញ)" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " បាន​ដំឡើង ៖ " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "បានបដិសេធ​ការព្រមាន​ការផ្ទៀងផ្ទាត់ភាព​ត្រឹមត្រូវ ។\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(គ្មាន)" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " តារាង​កំណែ ៖" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -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" -msgstr "" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s សម្រាប់ %s %s បាន​ចងក្រងនៅលើ​%s %s\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "វាយ​" +#: cmdline/apt-cache.cc:1801 +#, 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-private/acqprogress.cc:90 -msgid "Get:" -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-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" -#: 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: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:236 -#, c-format -msgid " [Working]" -msgstr " [កំពុង​ធ្វើការ​]" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "​អាគុយម៉ង់​មិន​មាន​គូ​ទេ" + +#: 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" +"ការ​ប្រើប្រាស់ ៖ ពាក្យ​បញ្ជា​ 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" -#. 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:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%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 បានឡើយ" +#: 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:280 +#: 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 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" + +#: cmdline/apt-get.cc:423 #, c-format -msgid "No mirror file '%s' found " +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:287 +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" + +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +msgid "%s set to manually installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: 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 "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +msgid "%s set to automatically installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: 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 សម្រាប់​ដំណើរ​ការ​រង​" +#: 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 "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: 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:766 cmdline/apt-get.cc:1091 +#, 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?" +#: cmdline/apt-get.cc:786 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -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 "" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ នេះ​ប្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %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 "ទម្លាក់​ថ្នាំង​ដែល​បាន​ហៅ​លើ​ថ្នាំងដែល​នៅតែតភ្ជាប់" - -#: 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 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "កំពុង​ព្យាយាម​សរសេរ​ជាន់​ពីលើ​ការបង្វែរ %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:893 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "ការបន្ថែម​ស្ទួន នៃការបង្វែរ​ %s -> %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\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:898 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ស្ទួន​ %s/%s" +msgid "Need to get %sB of source archives.\n" +msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:904 #, 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:922 +msgid "Failed to fetch some archives." +msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "ថត​ %s ត្រូវបាន​បង្វែរ" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:952 #, 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 "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:964 #, 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:965 #, 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:993 #, 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 "បរាជ័យ​ក្នុងការ​ដាក់ថ្នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" +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:1012 +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:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, 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:1103 cmdline/apt-get.cc:1106 #, 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:1126 #, 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 -#, c-format -msgid "Failed to close file %s" -msgstr "បរាជ័យ​ក្នុងការ​បិទឯកសារ %s" +#: cmdline/apt-get.cc:1296 +#, 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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, 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:1337 #, 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 "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1376 #, 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:1382 +#, 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:1405 +#, 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:1420 +#, 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:1425 +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:1518 cmdline/apt-get.cc:1530 +#, 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:1616 +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:1657 +#, 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/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 "មិនអាច​កំណត់​ប្រភេទ​ប្រព័ន្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" +#: 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:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "បានសរសេរ %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:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: 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:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\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" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "" +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "MD5Sum មិន​ផ្គួផ្គង​" +msgid "Canceled hold on %s.\n" +msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: 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 "" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\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/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 ដើម្បី​កែ​បញ្ហា​ទាំងនេះ" - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" +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-cdrom ដើម្បី​បង្កើត​ស៊ីឌី-រ៉ូម​នេះ​ ដែលបានរៀបចំ​តាម​ APT​ ។ 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 "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 មិនត្រឹមត្រូវ​ URIS មូលដ្ឋានមិនត្រូវ​ចាប់ផ្តើម​ជាមួយ​ // ឡើយ" -#: 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 "" +"ម៉ាស៊ីន​បម្រើ​ប្រូកស៊ី​ត្រូវ​បាន​បញ្ជាក់​ ប៉ុន្តែ​គ្មាន​ស្គ្រីប​ចូល​ទេ 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 "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​គ្នា​នឹង ប្រព័ន្ធ ធ្វើកំណែ" +#: 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 "មិន​អាច​បង្កើត​រន្ធបានឡើយ" -#: 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 -#, fuzzy -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 "មិនអាចតភ្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" -#: 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 "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" -#: 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 "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ 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" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័បានអស់ពេល​" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:890 #, 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 "ទំហំ​មិនបាន​ផ្គួផ្គង​" +msgid "Unable to fetch file, server said '%s'" +msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត្រូវ​ %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "រន្ធ​ទិន្នន័យ​បាន​អស់​ពេល​" -#: 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 "បរាជ័យក្នុងការ​ផ្ទេរ​ទិន្នន័យ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "សំណួរ​" -#: 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:1128 +msgid "Unable to invoke " +msgstr "មិន​អាច​ហៅ​ " -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" +#: methods/connect.cc:76 +#, c-format +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 "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %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." -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:496 +msgid "Bad header data" +msgstr "ទិន្នន័យ​បឋមកថា​ខូច" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, c-format msgid "" -"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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" -"ដែលបាន​ទុក ។" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" +#: methods/server.cc:692 +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 -#, fuzzy -msgid "Reading state information" -msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" +#: apt-private/private-list.cc:156 +#, 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:256 -#, fuzzy, 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:233 #, 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [បានដំឡើង​]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: 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 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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 "បន្ទាត់ Malformed %lu ក្នុង​ញ្ជី​ប្រភព​ %s (URI)" +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "កញ្ចប់​រង់ចាំ​ខាងក្រោម​នឹង​ត្រូវ​​បានផ្លាស់​​ប្តូរ​ ៖" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "បន្ទាត់ Malformed %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 "បន្ទាត់​ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (URI ញែក​)" +#: apt-private/private-output.cc:675 +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:706 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist លែងប្រើ)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu ត្រូវ​បាន​ធ្វើ​ឲ្យ​ប្រសើរ %lu ត្រូវ​បានដំឡើង​ថ្មី " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" +msgid "%lu reinstalled, " +msgstr "%lu ត្រូវ​បាន​ដំឡើង​ឡើង​វិញ " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:712 #, c-format -msgid "Opening %s" -msgstr "កំពុង​បើក​ %s" +msgid "%lu downgraded, " +msgstr "%lu ​ត្រូវបានបន្ទាប់ " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "បន្ទាត់​ Malformed %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:718 #, 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:740 +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:746 +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:757 +msgid "Y" +msgstr "Y" -#: 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:763 +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" +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 "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, fuzzy, c-format -msgid "Directory '%s' missing" -msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +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:93 +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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "កំពុង​ស្រាយ %s" +#: apt-private/private-install.cc:150 +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:157 #, 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:162 #, c-format -msgid "Installed %s" -msgstr "បាន​ដំឡើង %s" +msgid "Need to get %sB of archives.\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:169 +#, fuzzy, c-format +msgid "After this operation, %sB of additional disk space will be used.\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:174 +#, fuzzy, c-format +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:202 #, 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:212 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" -msgstr "" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:224 +#, 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:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "បោះបង់ ។" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:245 +#, fuzzy +msgid "Do you want to continue?" +msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " + +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" + +#: apt-private/private-install.cc:322 +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:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" + +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" + +#: apt-private/private-install.cc:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" + +#: apt-private/private-install.cc:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" + +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a disk full " -"error" -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-private/private-install.cc:519 +#, 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/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:521 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: 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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"មិនអាច​ដំឡើងកញ្ចប់​មួយចំនួន​បានឡើយ ។ នេះ​មាន​ន័យ​ថា​អ្នក​\n" +"​បានស្នើរ​ស្ថានភាព​ដែល​មិន​អាច​ធ្វើបានមួយ ឬ ​ប្រសិន​បើ​​អ្នក​កំពុង​ប្រើការចែកចាយ​ពុំ​មាន​លំនឹង​នោះ កញ្ចប់​" +"ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" +" ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#: 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:661 +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 "" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested 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 "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "" +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 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:855 +#, fuzzy, c-format +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:867 #, c-format -msgid "%lis" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "មិន​ប្រើប្រាស់​ការចាក់សោ សម្រាប់តែឯកសារចាក់សោ​ដែលបានតែអានប៉ុណ្ណោះ %s" +#: apt-private/private-install.cc:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "មិន​អាច​បើក​ឯកសារ​ចាក់សោ​ %s បានឡើយ" +#: apt-private/private-install.cc:925 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "មិនប្រើ​ការចាក់សោ សម្រាប់ nfs ឯកសារ​ចាក់សោដែលបានម៉ោន%s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" +#: apt-private/private-install.cc:973 +#, fuzzy, c-format +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 បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" +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 "វាយ​" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" +#: apt-private/acqprogress.cc:88 +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:119 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ដំណើរការ​រង​ IPC" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "បរាជ័យ​ក្នុង​ការ​ប្រតិបត្តិ​កម្មវិធី​បង្ហាប់ " +#: apt-private/acqprogress.cc:147 +#, 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:237 +#, 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:298 +#, 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" -#: 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 បៃបានឡើយ" +#: 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 -#, fuzzy -msgid "Unable to close mmap" -msgstr "មិន​អាចបើក​ %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 "មិន​អាច​ហៅ​ " - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" +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)" -msgstr "" +#: 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." -msgstr "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "នៅខាងលើ​សារ​នេះ​គឺ​សំខាន់​ណាស់​ ។ សូម​ជួសជុល​ពួកវា​ ហើយ​រត់​ការដំឡើង​ម្តងទៀត​" -#: 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 "កំហុស​ខាងក្នុង នៅក្នុង 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 ៖ ស្លាក​ដែលបាន Malformed" +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:184 #, 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' [from %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 =." -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 "បាន​បរាជ័យក្នុង​ការ​ប្រតិបត្តិ 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3157,12 +3170,7 @@ msgstr "" " -c=? អាន​ឯកសារ​ការ​កំណត់​រចនាស្ព័ន្ធ​នេះ\n" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "មិន​អាច​ទទួល​យក​កំណែ​ debconf  ។ តើ​ debconf បានដំឡើង​ឬ ?" @@ -3280,17 +3288,17 @@ msgstr "គ្មាន​ការ​ជ្រើស​​ដែល​ផ្គ msgid "Some files are missing in the package file group `%s'" msgstr "ឯកសារ​មួយ​ចំនួន​បាត់បងពី​ក្រុម​ឯកសារ​កញ្ចប់​ `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB បាន​ខូច​, ឯកសារ​បាន​ប្តូរ​ឈ្មោះ​ទៅ​ជា​ %s.old ។" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB ចាស់​, កំពុង​ព្យាយាម​ធ្វើ​ឲ្យ %s ប្រសើរ​ឡើង" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3299,105 +3307,105 @@ msgstr "" "ទ្រង់ទ្រាយ​មូលដ្ឋាន​ទិន្នន័យ​មិន​ត្រឹមត្រូវ ។ ប្រសិន​បើ​អ្នក​បាន​ធ្វើ​ឲ្យ​វា​ប្រសើឡើង​ពី​កំណែ​ចាស់​របស់ apt សូម​យក​" "មូលដ្ឋាន​ទិន្នន័យ​ចេញ និង​បង្កើត​មូលដ្ឋាន​ទិន្នន័យ​ឡើង​វិញ ។" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "មិន​អាច​បើក​ឯកសារ​ DB បានទេ %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​អាន​តំណ​ %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "ប័ណ្ណសារ​គ្មាន​កំណត់​ត្រា​ត្រួត​ពិនិត្យ​ទេ​" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "មិន​អាច​យក​ទស្សន៍ទ្រនិច​" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: មិន​អាច​អាន​ថត %s បាន​ឡើយ\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W ៖ មិន​អាច​ថ្លែង %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: កំហុស​អនុវត្ត​លើ​ឯកសារ​" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "បរាជ័យ​ក្នុង​ការ​ដោះស្រាយ %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "មែក​ធាង បាន​បរាជ័យ" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​អាន​តំណ​ %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ដាច់ %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** បាន​បរាជ័យ​ក្នុង​ការ​ត​ %s ទៅ %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink កំណត់​នៃ​ការ​វាយ %sB ។\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "ប័ណ្ណសារ​គ្មាន​វាល​កញ្ចប់​" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s គ្មាន​ធាតុធាតុបញ្ចូល​​បដិសេធឡើយ\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " អ្នក​ថែទាំ %s គឺ %s មិនមែន​ %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s គ្មាន​ធាតុ​បដិសេធ​ប្រភព\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s គ្មាន​ធាតុប​ដិសេធគោល​ពីរ​ដែរ\n" diff --git a/po/ko.po b/po/ko.po index e82008eea..f1e7a2076 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -15,3155 +15,3168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "패키지 캐시가 비어 있습니다" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "패키지 캐시 파일이 손상되었습니다" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "패키지 캐시 파일이 호환되지 않는 버전입니다" + +#: apt-pkg/pkgcache.cc:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "패키지 캐시 파일이 손상되었습니다" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." +msgid "This APT does not support the versioning system '%s'" +msgstr "이 APT는 '%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 "패키지가 없습니다" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "패키지 캐시가 다른 아키텍쳐용입니다." -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "최소 한 개의 검색어를 지정해야 합니다" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "의존" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "미리의존" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "제안" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "추천" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "충돌" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "대체" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "없앰" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "망가뜨림" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "향상" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "중요" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "필수" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "표준" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "옵션" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "별도" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "%s 패키지를 찾을 수 없습니다" +msgid "Index file type '%s' is not supported" +msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "패키지 파일:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +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 "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "캐시의 버전 시스템이 호환되지 않습니다" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(없음)" +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 설치: " +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 후보: " +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다." -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(없음)" +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 패키지 핀: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 버전 테이블:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "패키지 목록을 읽는 중입니다" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "파일에서 제공하는 것을 모으는 중입니다" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s(%s), 컴파일 시각 %s %s\n" +msgid "Unable to write to %s" +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 "드라이브에 디스크를 넣고 Enter를 누르십시오" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +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/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "인수가 두 개가 아닙니다" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" 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" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)." -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "해시 합이 맞지 않습니다" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "크기가 맞지 않습니다" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "잘못된 작업 %s" + +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "%s 패키지를 찾을 수 없습니다" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "다음 키 ID의 공개키가 없습니다:\n" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to manually installed.\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:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 패키지는 수동설치로 지정합니다.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1827 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"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: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 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s의 소스 패키지를 찾을 수 없습니다" +msgid "GPG error: %s: %s" +msgstr "GPG 오류: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" -"%s\n" +"%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" +"니다. (아키텍쳐가 빠졌기 때문입니다)" -#: cmdline/apt-get.cc:791 -#, fuzzy, c-format +#: apt-pkg/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc:2074 +#, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"패키지의 최근 (아마도 릴리스되지 않은) 업데이트를 받으려면\n" -"다음과 같이 하십시오:\n" -"bzr get %s\n" +"패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "벤더 블럭 %s의 핑거프린트가 없습니다" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" +msgid "List directory %spartial is missing." +msgstr "목록 디렉터리 %spartial이 빠졌습니다." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s에 충분한 공간이 없습니다" +msgid "Archives directory %spartial is missing." +msgstr "아카이브 디렉터리 %spartial이 빠졌습니다." -#. 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.cc:100 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" +msgid "Unable to lock directory %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 -#: cmdline/apt-get.cc:896 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "%s 소스를 가져옵니다\n" +msgid "Retrieving file %li of %li" +msgstr "파일 받아오는 중: %2$li 중 %1$li" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -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:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -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:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "sources.list에 '소스' URI를 써 넣어야 합니다" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "압축 풀기 명령 '%s' 실패.\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:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "기본 설정 파일 %s에 잘못된 데이터가 있습니다. Package 헤더가 없습니다" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "빌드 명령 '%s' 실패.\n" +msgid "Did not understand pin type %s" +msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "하위 프로세스가 실패했습니다" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에" +"서 APT::Immediate-Configure 항목을 보십시오. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' 파일을 열 수 없습니다" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" +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 "CD-ROM을 마운트 해제하는 중입니다...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM 마운트 위치 %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 "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +#: 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 "알아보는 중입니다... " -#: cmdline/apt-get.cc:1289 +#: 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 "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %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?" msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +"패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘" +"못된 것 같습니다?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +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 "" -"%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너" -"무 최근 버전입니다" +"이 디스크는 다음과 같습니다: \n" +"'%s'\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: 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 dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" -"전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" +"%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" -"다" +"오류, 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 "상태 정보를 읽는 중입니다" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" +msgid "Failed to open StateFile %s" +msgstr "상태파일 %s 여는데 실패했습니다" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." +msgid "Failed to write temporary StateFile %s" +msgstr "임시 상태파일 %s 쓰는데 실패했습니다" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "빌드 의존성을 처리하는데 실패했습니다" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (2)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "%s 패키지를 찾을 수 없습니다" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "'%s' 작업을 찾을 수 없습니다" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" + +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s(%s)에 연결하는 중입니다" +msgid "Couldn't find any package by glob '%s'" +msgstr "'%s' 정규식에 해당하는 패키지가 없습니다" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "지원하는 모듈:" +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "'%s' 패키지는 가상 패키지이므로 버전을 선택할 수 없습니다" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"'%s' 패키지에서 설치한 버전이나 후보 버전을 선택할 수 없습니다. 둘 다 아닙니" +"다." -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" -msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "'%s' 패키지에서 최신 버전을 선택할 수 없습니다. 가상 패키지입니다." -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +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/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다." -#: cmdline/apt-mark.cc:68 -#, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "하지만 설치하지 않았습니다" +#: apt-pkg/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" +#: apt-pkg/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Release 파일 %s에 섹션이 없습니다" -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s 패키지는 수동설치로 지정합니다.\n" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Release 파일 %s에 Hash 항목이 없습니다" -#: cmdline/apt-mark.cc:241 -#, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Release 파일 %s에 'Valid-Until' 항목이 잘못되었습니다" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Release 파일 %s에 'Date' 항목이 잘못되었습니다" + +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" -#: 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/sourcelist.cc:170 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 파싱 불가)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 -#, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s 패키지 수동설치로 지정합니다.\n" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 ([option] 너무 짧음)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s 파일을 여는데 실패했습니다" +#: 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] 대입이 아님)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -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] 키가 없음)" -#: 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/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 키에 값이 없음)" -#: 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/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist)" -#: 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/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (URI 파싱)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "잘못된 CD" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다." +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "디스크가 없습니다." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s 파일을 여는 중입니다" -#: 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 "파일 정보를 읽는데 실패했습니다" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -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/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다." +#: 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' 타입을 알 수 없습니다" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "로그인하는 중입니다" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s 설치하는 중입니다" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "상대방의 이름을 알 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s 설정 중입니다" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "로컬 이름을 알 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s 패키지를 지우는 중입니다" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s" +msgid "Completely removing %s" +msgstr "%s 패키지를 완전히 지우는 중입니다" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 실패, 서버에서는: %s" +msgid "Noting disappearance of %s" +msgstr "%s 사라짐 발견했습니다" -#: methods/ftp.cc:232 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 실패, 서버에서는: %s" +msgid "Running post-installation trigger %s" +msgstr "설치 후 트리거 %s 실행하는 중입니다" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" -"프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::" -"ProxyLogin 값이 비어 있습니다." +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "디렉터리 '%s' 없습니다." -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s" +msgid "Could not open file '%s'" +msgstr "'%s' 파일을 열 수 없습니다" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 실패, 서버에서는: %s" +msgid "Preparing %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/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "%s 푸는 중입니다" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "서버에서 연결을 닫았습니다" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %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/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s 설치" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "응답이 버퍼 크기를 넘어갔습니다." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "%s 패키지를 지울 준비하는 중입니다" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "프로토콜이 틀렸습니다" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %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:1009 +#, c-format +msgid "Preparing to completely remove %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:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s 패키지를 완전히 지웠습니다" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "실패" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s에 쓸 수 없습니다" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "수동(passive) 소켓을 연결할 수 없습니다." +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "소켓을 bind할 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "소켓에 listen할 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "소켓의 이름을 알아낼 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "보고서를 작성하지 않습니다. 이미 MaxReports 값에 도달했습니다." -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT 명령을 보낼 수 없습니다" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "의존성 문제 - 설정하지 않은 상태로 남겨둡니다" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 예전의 실패 때문에 생긴 부수" +"적인 오류입니다." -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT 실패, 서버에서는: %s" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "데이터 소켓 연결 시간 초과" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "보고서를 작성하지 않습니다. 오류 메시지에 따르면 메모리가 부족합니다." -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "연결을 받을 수 없습니다" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "파일 해싱에 문제가 있습니다" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"보고서를 작성하지 않습니다. 오류 메시지에 따르면 dpkg 입출력 오류입니다." -#: methods/ftp.cc:890 +#: apt-pkg/deb/debsystem.cc:91 #, 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 "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"관리 디렉터리를 (%s) 잠글 수 없습니다. 다른 프로세스가 사용하고 있지 않습니" +"까?" -#: methods/ftp.cc:935 +#: apt-pkg/deb/debsystem.cc:94 #, 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 "Unable to lock the administration directory (%s), are you root?" +msgstr "관리 디렉터리를 (%s) 잠글 수 없습니다. 루트 사용자가 맞습니까?" -#: methods/connect.cc:76 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Connecting to %s (%s)" -msgstr "%s(%s)에 연결하는 중입니다" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg가 중단되었습니다. 수동으로 '%s' 명령을 실행해 문제점을 바로잡으십시오." -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "잠기지 않음" -#: methods/connect.cc:94 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, 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 "%lid %lih %limin %lis" +msgstr "%li일 %li시간 %li분 %li초" -#: methods/connect.cc:100 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." +msgid "%lih %limin %lis" +msgstr "%li시간 %li분 %li초" -#: methods/connect.cc:108 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" +msgid "%limin %lis" +msgstr "%li분 %li초" -#: methods/connect.cc:126 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "%s:%s에 연결할 수 없습니다 (%s)." +msgid "%lis" +msgstr "%li초" -#. 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/contrib/strutl.cc:1243 #, c-format -msgid "Connecting to %s" -msgstr "%s에 연결하는 중입니다" +msgid "Selection %s not found" +msgstr "선택한 %s이(가) 없습니다" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s'의 주소를 알아낼 수 없습니다" +msgid "Not using locking for read only lock file %s" +msgstr "읽기 전용 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:196 #, 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 - %s)" +msgid "Could not open lock file %s" +msgstr "잠금 파일 %s 파일을 열 수 없습니다" -#: methods/connect.cc:211 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "NFS로 마운트된 잠금 파일 %s에 대해 잠금을 사용하지 않습니다" -#: methods/connect.cc:258 +#: apt-pkg/contrib/fileutl.cc:224 #, 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 "내부 오류: 서명은 올바르지만 키 핑거프린트를 확인할 수 없습니다?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "최소한 하나 이상의 서명이 잘못되었습니다." +msgid "Could not get lock %s" +msgstr "%s 잠금 파일을 얻을 수 없습니다" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"서명을 확인하는 'gpgv' 프로그램을 실행할 수 없습니다. (gpgv를 설치했습니까?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:395 #, 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 "" -#: 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/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format 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" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "해당 파일에 쓰는데 오류가 발생했습니다" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "하위 프로세스 %s 프로세스가 %u번 시그널을 받았습니다." -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "서버에서 읽는데 오류가 발생했습니다" +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "파일에 쓰는데 오류가 발생했습니다" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "select가 실패했습니다" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "쓰기 오류" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "연결 시간이 초과했습니다" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "%s gzip 파일을 닫는데 문제가 있습니다" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "출력 파일에 쓰는데 오류가 발생했습니다" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "%s 파일을 열 수 없습니다" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "헤더를 기다리는 중입니다" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "%d 파일 디스크립터를 열 수 없습니다" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "헤더 줄이 잘못되었습니다" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "하위 프로세스 IPC를 만드는데 실패했습니다" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "다음 압축 프로그램을 실행하는데 실패했습니다: " -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "읽기 오류" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다" +#: apt-pkg/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "데이터 형식을 알 수 없습니다" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "%s 파일을 닫는데 문제가 있습니다" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "헤더 데이터가 잘못되었습니다" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "연결이 실패했습니다" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "%s 파일을 삭제하는데 문제가 있습니다" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "내부 오류" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "파일을 동기화하는데 문제가 있습니다" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "업그레이드를 계산하는 중입니다... " +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s의 정보를 읽을 수 없습니다" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "완료" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... 오류!" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... 완료" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." 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] "" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 완료" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "의존성을 바로잡는 중입니다..." +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "빈 파일에 메모리 매핑할 수 없습니다" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " 실패." +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%i 파일 디스크립터를 복사할 수 없습니다" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "의존성을 바로잡을 수 없습니다" +#: apt-pkg/contrib/mmap.cc:119 +#, fuzzy, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%lu바이트를 메모리 매핑할 수 없습니다" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "업그레이드 집합을 최소화할 수 없습니다" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap을 닫을 수 없습니다" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 완료" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap을 동기화할 수 없습니다" -#: 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/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu바이트를 메모리 매핑할 수 없습니다" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오." +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "파일을 자르는데 실패했습니다" -#: 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: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:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [설치함]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -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 "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다." -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: 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:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [설치함]" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [설치함]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "CD-ROM의 정보를 읽을 수 없습니다" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "이 타입 줄임말을 알 수 없습니다: '%c'" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "하지만 %s 패키지를 설치했습니다" +msgid "Opening configuration file %s" +msgstr "설정 파일 %s 파일을 여는 중입니다" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "하지만 %s 패키지를 설치할 것입니다" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "하지만 설치할 수 없습니다" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "하지만 가상 패키지입니다" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "하지만 설치하지 않았습니다" +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "하지만 %s 패키지를 설치하지 않을 것입니다" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " 혹은" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "문법 오류 %s:%u: 여기서 include됩니다" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "다음 패키지의 의존성이 맞지 않습니다:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "다음 새 패키지를 설치할 것입니다:" +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "다음 패키지를 지울 것입니다:" +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -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-output.cc:571 -msgid "The following packages will be upgraded:" -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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -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-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "고정되었던 다음 패키지를 바꿀 것입니다:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "명령행 옵션 '%s' 옵션은 불리언이 아닙니다" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s때문에) " +msgid "Option %s requires an argument." +msgstr "%s 옵션에는 인수가 필요합니다." -#: apt-private/private-output.cc:675 -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/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "%s 옵션: 설정 항목 지정은 =<값> 형태여야 합니다." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu개 업그레이드, %lu개 새로 설치, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s 옵션에는 정수 인수가 필요합니다. '%s'이(가) 아닙니다" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu개 다시 설치, " +msgid "Option '%s' is too long" +msgstr "'%s' 옵션이 너무 깁니다" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu개 업그레이드, " +msgid "Sense %s is not understood, try true or false." +msgstr "%s 센스를 이해할 수 없습니다. 참 아니면 거짓으로 해 보십시오." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu개 제거 및 %lu개 업그레이드 안 함.\n" +msgid "Invalid operation %s" +msgstr "잘못된 작업 %s" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s 패키지의 %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:740 -msgid "[Y/n]" -msgstr "[Y/n]" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +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:746 -msgid "[y/N]" -msgstr "[y/N]" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "전체 패키지 구조: " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "Y" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " 일반 패키지: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " 순수 가상 패키지: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "정규식 컴파일 오류 - %s" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " 단일 가상 패키지: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "update 명령은 인수를 받지 않습니다" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +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] "" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " 빠짐: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +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] "" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "개별 설명 전체: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "전체 의존성: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "전체 버전/파일 관계: " -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "패키지를 제거해야 하지만 제거가 금지되어 있습니다." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "전체 설명/파일 관계: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "전체 제공 매핑: " -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" -"이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십" -"시오." +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +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:155 -#, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +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:160 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%s바이트 아카이브를 받아야 합니다.\n" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +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:167 -#, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +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:172 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" +msgid "Package file %s is out of sync." +msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "%s 안에 충분한 여유 공간이 없습니다." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:210 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:1306 +msgid "You must give at least one search pattern" +msgstr "최소 한 개의 검색어를 지정해야 합니다" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." 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:220 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +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" -" ?] " +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "캐시가 동기화되지 않았습니다. 패키지 파일을 상호 참조할 수 없습니다" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "중단." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "핀 패키지:" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "계속 하시겠습니까?" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(없음)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "일부 파일을 받는데 실패했습니다" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " 설치: " -#: 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 옵션을 줘서 실행해야 할 것입니다." +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " 후보: " -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(없음)" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "빠진 패키지를 바로잡을 수 없습니다." +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " 패키지 핀: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "설치를 중단합니다." +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " 버전 테이블:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-install.cc:366 +#: cmdline/apt-cache.cc:1801 +#, fuzzy 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" -"덮어썼기 때문에 사라졌습니다:" +"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/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." +#: 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-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오" + +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" -#: apt-private/private-install.cc:499 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -"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: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 "" -"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 -#, 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'을 실행해 보십시오:" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." -# 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-config.cc:48 +msgid "Arguments not in pairs" +msgstr "인수가 두 개가 아닙니다" -#: apt-private/private-install.cc:638 +#: 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" -"아직 Incoming에서 나오지 않은 경우일 수도 있습니다." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -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:712 -msgid "The following extra packages will be installed:" -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:802 -msgid "Suggested 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:803 -msgid "Recommended 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:825 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "%s 패키지를 건너 뜁니다. 설치되지 않았고 업그레이드만 요청합니다.\n" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." -#: apt-private/private-install.cc:841 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n" +msgid "Couldn't find package %s" +msgstr "%s 패키지를 찾을 수 없습니다" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 패키지는 이미 최신 버전입니다.\n" +msgid "%s set to manually installed.\n" +msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: apt-private/private-install.cc:894 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "'%3$s' 패키지의 '%1$s' (%2$s) 버전을 선택합니다\n" - -#: 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" - -#. 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" +msgid "%s set to automatically installed.\n" +msgstr "%s 패키지는 수동설치로 지정합니다.\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 "" -"알림: 시험 동작입니다!\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" +#: 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 -msgid "Install these packages without verification?" -msgstr "확인하지 않고 패키지를 설치하시겠습니까?" +#: 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:1091 #, 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 "" +"알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" +"%s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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-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 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid " [Working]" -msgstr " [작업중]" +msgid "Couldn't determine free space in %s" +msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:884 #, c-format -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" +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:893 #, c-format -msgid "Unable to read %s" -msgstr "%s을(를) 읽을 수 없습니다" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "소스 아카이브를 %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 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "Unable to change to %s" -msgstr "%s 디렉토리로 이동할 수 없습니다" +msgid "Need to get %sB of source archives.\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:904 #, c-format -msgid "No mirror file '%s' found " -msgstr "'%s' 미러 파일이 없습니다 " - -#. 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' 미러 파일이 없습니다 " - -#: 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 "연결이 너무 빨리 끊어졌습니다" - -#: 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 "오류만 중요합니다. 이 오류를 고친 다음에 설치(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 "해시 항목을 찾는데 실패했습니다" - -#: 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 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "전환된 파일을 덮어 쓰려고 합니다 (%s -> %s 및 %s/%s)" +msgid "Fetch source %s\n" +msgstr "%s 소스를 가져옵니다\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "전환된 파일을 두 번 추가합니다 (%s -> %s)" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "일부 아카이브를 가져오는데 실패했습니다." -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s 설정 파일이 중복되었습니다" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" -msgstr "경로 %s이(가) 너무 깁니다" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s을(를) 두 번 이상 풀었습니다" +msgid "Unpack command '%s' failed.\n" +msgstr "압축 풀기 명령 '%s' 실패.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" -msgstr "%s 디렉터리가 전환되었습니다" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)" +msgid "Build command '%s' failed.\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:1012 +msgid "Child process failed" +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의 정보를 읽는데 실패했습니다" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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 "경로가 너무 깁니다" +msgid "Unable to get build-dependency information for %s" +msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다" +msgid "%s has no build depends.\n" +msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다" +#: cmdline/apt-get.cc:1296 +#, 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/extract.cc:498 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Unable to stat %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:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Failed to write 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/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "%s 파일을 닫는데 실패했습니다" +#: cmdline/apt-get.cc:1376 +#, 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/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 "올바른 DEB 아카이브가 아닙니다. '%s' 멤버가 없습니다" +#: cmdline/apt-get.cc:1382 +#, 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/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1405 #, 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 "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1420 #, 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 "아카이브가 손상되었습니다" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +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:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "%s(%s)에 연결하는 중입니다" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s의 정보를 읽을 수 없습니다." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "지원하는 모듈:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +#, 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/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 "올바른 패키지 시스템 타입을 알아낼 수 없습니다" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "레코드 %i개를 썼습니다.\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 "레코드 %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:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "소켓을 bind할 수 없습니다" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "소켓에 listen할 수 없습니다" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "소켓의 이름을 알아낼 수 없습니다" -#: apt-pkg/edsp.cc:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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 "질의" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "다음을 실행할 수 없습니다: " -#: 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 "" -"디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\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 -#, 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이(가) 무엇인지 이해할 수 없습니다" - -#: 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 +#. 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 -#, fuzzy, 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." -msgstr "" -"이번에 설치할 때 충돌/선의존성이 루프가 걸렸기 때문에 꼭 필요한 %s 패키지를 " -"잠깐 제거해야 합니다. 이 패키지를 제거하는 건 좋지 않지만, 정말 지우려면 " -"APT::Force-LoopBreak 옵션을 켜십시오." +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "다음 서명들은 공개키가 없기 때문에 인증할 수 없습니다:\n" -#: 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/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 "select가 실패했습니다" -#: 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 "" -"패키지 파일이 하나도 없습니다. 아마도 데비안 디스크가 아니거나 아키텍처가 잘" -"못된 것 같습니다?" +#: 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 서버에서 잘못된 응답 헤더를 보냈습니다" -#: 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 서버에 범위 지원 기능이 잘못되어 있습니다" -#: 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:496 +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." -msgstr "" -"%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "연결이 실패했습니다" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" -"도 있습니다." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." +#: methods/server.cc:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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] "" -#: 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 "%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 "%2$s 패키지의 '%1$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-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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +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:244 +#, fuzzy +msgid "[installed]" +msgstr " [설치함]" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:248 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "'%s' 패키지에서 설치한 버전을 선택할 수 없습니다. 설치하지 않았습니다." +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Release 파일 %s 파일을 파싱할 수 없습니다" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/indexrecords.cc:86 +#: apt-private/private-output.cc:434 #, c-format -msgid "No sections in Release file %s" -msgstr "Release 파일 %s에 섹션이 없습니다" +msgid "but %s is installed" +msgstr "하지만 %s 패키지를 설치했습니다" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:436 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "Release 파일 %s에 Hash 항목이 없습니다" +msgid "but %s is 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:443 +msgid "but it is not installable" +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:445 +msgid "but it is a virtual package" +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:448 +msgid "but it is not 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:448 +msgid "but it is not going to be installed" +msgstr "하지만 %s 패키지를 설치하지 않을 것입니다" -#: 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:453 +msgid " or" +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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +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:502 +msgid "The following NEW packages will be installed:" +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:528 +msgid "The following packages will be REMOVED:" +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:550 +msgid "The following packages have been kept back:" +msgstr "다음 패키지를 과거 버전으로 유지합니다:" -#: 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:571 +msgid "The following packages will be upgraded:" +msgstr "다음 패키지를 업그레이드할 것입니다:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "다음 패키지를 다운그레이드할 것입니다:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "고정되었던 다음 패키지를 바꿀 것입니다:" + +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu개 업그레이드, %lu개 새로 설치, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" +msgid "%lu reinstalled, " +msgstr "%lu개 다시 설치, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:712 #, c-format -msgid "Opening %s" -msgstr "%s 파일을 여는 중입니다" +msgid "%lu downgraded, " +msgstr "%lu개 업그레이드, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, 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:718 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$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 "소스 목록 %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:740 +msgid "[Y/n]" +msgstr "[Y/n]" -#: 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:746 +msgid "[y/N]" +msgstr "[y/N]" -#: 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:757 +msgid "Y" +msgstr "Y" -#: 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:763 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, 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" -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: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] "" -#: 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:84 +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:93 +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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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" +#: apt-private/private-install.cc:212 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다" + +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" +"사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " +"아닙니다." -#: apt-pkg/deb/dpkgpm.cc:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%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:222 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:224 +#, 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:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "중단." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "계속 하시겠습니까?" + +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "일부 파일을 받는데 실패했습니다" + +#: apt-private/private-install.cc:322 +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 값에 도달했습니다." +#: apt-private/private-install.cc:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "빠진 패키지를 바로잡을 수 없습니다." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "설치를 중단합니다." + +#: apt-private/private-install.cc:368 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -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-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." + +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:501 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 "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." +"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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" + +#: apt-private/private-install.cc:515 msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -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] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:" + +#: apt-private/private-install.cc:519 +#, 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-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:521 #, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "" -"보고서를 작성하지 않습니다. 오류 메시지에 따르면 디스크가 가득 찼습니다." +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "이들을 지우려면 'apt-get autoremove'를 사용하십시오." -#: 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-install.cc:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +# FIXME: specify a solution? 무슨 솔루션? +#: apt-private/private-install.cc:616 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:640 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:661 +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:738 +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:828 +msgid "Suggested packages:" +msgstr "제안하는 패키지:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%li초" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "추천하는 패키지:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 +#, 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:967 +#, 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:973 +#, 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을 실행할 때 루트 권한이 필요합니다.\n" +" 또 잠금 기능을 사용하지 않는 상태이므로, 현재 상황에 의존하지\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 "%s gzip 파일을 닫는데 문제가 있습니다" +#: 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:88 +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:119 +msgid "Ign " +msgstr "무시" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "%s 파일을 닫는데 문제가 있습니다" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "오류 " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "%s 파일을 %s(으)로 이름을 바꾸는데 문제가 있습니다" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "내려받기 %s바이트, 소요시간 %s (%s바이트/초)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Problem unlinking the file %s" -msgstr "%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:298 #, 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 "" +"미디어 바꾸기: '%2$s' 드라이브에 다음 레이블이 달린\n" +"디스크를 넣고 enter를 누르십시오\n" +" '%1$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... 완료" +msgid "No mirror file '%s' found " +msgstr "'%s' 미러 파일이 없습니다 " -#: 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 +#, fuzzy, c-format +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... 완료" +msgid "No entry found in mirror file '%s'" +msgstr "'%s' 미러 파일이 없습니다 " -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "빈 파일에 메모리 매핑할 수 없습니다" +#: 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 파이프를 만드는데 실패했습니다" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "%i 파일 디스크립터를 복사할 수 없습니다" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "연결이 너무 빨리 끊어졌습니다" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%lu바이트를 메모리 매핑할 수 없습니다" +#: 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 "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?" -#: 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." -msgstr "mmap 크기를 늘릴 수 없습니다. 이미 %lu 바이트 한계에 도달했습니다." +"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 "" -"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 "CD-ROM의 정보를 읽을 수 없습니다" +#: 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 "diversion을 할당하는데 실패했습니다" -#: 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-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:184 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" -msgstr "문법 오류 %s:%u: clear 지시어는 인수로 option 트리를 지정해야 합니다" +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 =." -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 "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 센스를 이해할 수 없습니다. 참 아니면 거짓으로 해 보십시오." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3187,12 +3200,7 @@ msgstr "" " -c=? 설정 파일을 읽습니다\n" " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s의 정보를 읽을 수 없습니다" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf 버전을 알 수 없습니다. debconf가 설치되었습니까?" @@ -3310,17 +3318,17 @@ msgstr "맞는 패키지가 없습니다" msgid "Some files are missing in the package file group `%s'" msgstr "`%s' 패키지 파일 그룹에 몇몇 파일이 빠졌습니다" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB가 망가졌습니다. 파일 이름을 %s.old로 바꿉니다" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB가 오래되었습니다. %s의 업그레이드를 시도합니다" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3328,107 +3336,107 @@ msgstr "" "DB 형식이 잘못되었습니다. APT 예전 버전에서 업그레이드했다면, 데이터베이스를 " "지우고 다시 만드십시오." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "DB 파일, %s 파일을 열 수 없습니다: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "%s 파일에 readlink하는데 실패했습니다" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "아카이브에 컨트롤 기록이 없습니다" # FIXME: 왠 커서?? -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "커서를 가져올 수 없습니다" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "경고: %s 디렉터리를 읽을 수 없습니다\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "경고: %s의 정보를 읽을 수 없습니다\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "오류: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "경고: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "오류: 다음 파일에 적용하는데 오류가 발생했습니다: " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s의 경로를 알아내는데 실패했습니다" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "트리에서 이동이 실패했습니다" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s 파일을 여는데 실패했습니다" # FIXME: ?? -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " 링크 %s [%s] 없애기\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "%s 파일에 readlink하는데 실패했습니다" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "%s 파일을 지우는데 실패했습니다" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s 파일을 %s에 링크하는데 실패했습니다" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink 한계값 %s바이트에 도달했습니다.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "아카이브에 패키지 필드가 없습니다" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s에는 override 항목이 없습니다\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 관리자가 %s입니다 (%s 아님)\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s에는 source override 항목이 없습니다\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s에는 binary override 항목이 없습니다\n" diff --git a/po/ku.po b/po/ku.po index ab2d40331..589bb7c73 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@ -19,3010 +19,3023 @@ msgstr "" "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural= n != 1;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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 "" +msgid "Unable to read %s" +msgstr "Nikare %s bixwîne" -#: cmdline/apt-cache.cc:277 -msgid "Total package names: " -msgstr "Navên paketan bi giştî :" +#: apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Navên paketan bi giştî :" +#: apt-pkg/clean.cc:61 +#, fuzzy, c-format +msgid "Unable to stat %s." +msgstr "Nivîsandin ji bo %s ne pêkane" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " Pakêtên normal:" +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " Pakêtên farazî yên safî:" +#: 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 " Pakêta tenê ya farazî:" +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " Pakêtên hevbeş yên farazî:" +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " Winda: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i tomar hatin nivîsîn.\n" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Guhertoyên vekirî yên giştî:" +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Guhertoyên vekirî yên giştî:" +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Bindestên giştî:" +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#, 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: " +#: 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 "Guhertoyên vekirî yên giştî:" +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "Hash Sum li hev nayên" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +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:161 +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:164 +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:171 +#, 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:181 +#, c-format +msgid "The package cache was built for different architectures: %s vs %s" msgstr "" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nehate dîtin)" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Bindest" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Sazkirî: " +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "PêşBindest" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Berendam: " +#: apt-pkg/pkgcache.cc:324 +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:325 +msgid "Recommends" +msgstr "Tawsiye dike" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Destika pakêtê:" +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Nakokî" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabloya guhertoyan:" +#: apt-pkg/pkgcache.cc:325 +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: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-pkg/pkgcache.cc:326 +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:326 +msgid "Breaks" +msgstr "Dişkîne" + +#: apt-pkg/pkgcache.cc:326 +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:337 +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:337 +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:337 +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." +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opsiyonel" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "ekstra" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" 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" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Dema şixulandina naveroka %s çewtî" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." 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 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nikarî pakêta %s bibîne" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: 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:286 +msgid "Wow, you exceeded the number of descriptions 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:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:598 #, 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:1233 #, 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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Lîsteya pakêtan tê xwendin" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "Couldn't find package %s" -msgstr "Nikarî pakêta %s bibîne" +msgid "Unable to write to %s" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: 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 "lê %s dê were sazkirin" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +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 "lê %s dê were sazkirin" +#: 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 "Pelrêça daxistinê nayê quflekirin" +#: 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" +#: 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:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Unable to find a source package for %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "nav guherandin biserneket, %s (%s -> %s)" + +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash Sum li hev nayên" + +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Mezinahî li hev nayên" + +#: apt-pkg/acquire-item.cc:185 +msgid "Invalid file format" msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1679 #, 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:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Pakêt nehate dîtin %s" + +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" + +#: apt-pkg/acquire-item.cc:1775 #, 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:1797 #, c-format -msgid "Skipping already downloaded file '%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:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nikarî cihê vala li %s tesbît bike" +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:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Cihê vala li %s têre nake" +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:1972 #, c-format -msgid "Need to get %sB/%sB of source archives.\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:2038 #, c-format -msgid "Need to get %sB of source archives.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Fetch source %s\n" -msgstr "Çavkanîna %s bîne\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Anîna çend arşîvan biserneket." - -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" +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:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Peldanka '%s' kêm e" + +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Peldanka '%s' kêm e" + +#: apt-pkg/acquire.cc:100 +#, 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:925 #, c-format -msgid "Unpack command '%s' failed.\n" +msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "" +msgid "Retrieving file %li of %li" +msgstr "Pel tê anîn %li ji %li" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "" +msgid "Failed to fetch %s %s\n" +msgstr "Anîna %s %s biserneket\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process 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 "" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" msgstr "" -#: cmdline/apt-get.cc:1054 +#: 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" +msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" +msgid "Did not understand pin type %s" +msgstr "" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, 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 "" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/packagemanager.cc:584 #, 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 "" -#: 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" +msgid "Line %u too long in source list %s." 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" +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" msgstr "" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +msgid "Using CD-ROM mount point %s\n" msgstr "" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" msgstr "" -#: cmdline/apt-get.cc:1395 -#, c-format -msgid "Build-dependencies for %s could not be satisfied." +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " 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/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#: 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 "" - -#: cmdline/apt-helper.cc:35 -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 "" -#: 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 "lê ne sazkirî ye" - -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "lê %s dê were sazkirin" - -#: cmdline/apt-mark.cc:76 -#, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "lê %s dê were sazkirin" - -#: 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" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\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 "" - -#: 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" - -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 -#, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s venebû" - -#: 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 "" - -#: methods/cdrom.cc:203 -#, fuzzy, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Pakêt nehate dîtin %s" +msgid "Found label '%s'\n" +msgstr "Etîketa '%s' hatiye dîtin\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 "CD-ROM a şaş" - -#: 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 "" - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Dîsk nehate dîtin." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Pel nehate dîtin" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -#, fuzzy -msgid "Failed to stat" -msgstr "%s venebû" - -#: 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 "" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Têketin" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" +"Navê dîskê: \n" +"'%s'\n" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nikare navê herêmî tesbît bike" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Lîsteyên pakêtan tên jibergirtin..." -#: methods/ftp.cc:219 methods/ftp.cc:247 -#, c-format -msgid "The server refused the connection and said: %s" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" msgstr "" -#: methods/ftp.cc:225 -#, c-format -msgid "USER failed, server said: %s" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/algorithms.cc:265 #, c-format -msgid "PASS failed, server said: %s" -msgstr "" - -#: methods/ftp.cc:252 msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "" - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" - -#: methods/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "" - -#: 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 "Çewiya xwendinê" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." 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/algorithms.cc:1088 +msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Serneket" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Guhartoyên berendam" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Vekirina StateFile %s biserneket" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "" +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "%s ji hev nehate veçirandin" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "" +#: apt-pkg/tagfile.cc:169 +#, fuzzy, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Pakêt nehate dîtin %s" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "" +#: apt-pkg/tagfile.cc:269 +#, fuzzy, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Pakêt nehate dîtin %s" -#: methods/ftp.cc:802 +#: apt-pkg/cacheset.cc:490 #, c-format -msgid "Unknown address family %u (AF_*)" +msgid "Release '%s' for '%s' was not found" msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/cacheset.cc:493 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" +msgid "Version '%s' for '%s' was not found" msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Pakêt nehate dîtin %s" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "" +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Peywira %s nehate dîtin" -#: methods/ftp.cc:890 +#: apt-pkg/cacheset.cc:610 #, fuzzy, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Danegira %s nehate vekirin: %s" +msgid "Couldn't find any package by regex '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "" +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: methods/ftp.cc:935 +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "Can't select versions from package '%s' as it is purely virtual" 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û" - -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "Girêdan bi %s (%s) re pêk tê" - -#: methods/connect.cc:87 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, c-format -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)" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -#: methods/connect.cc:100 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "Could not connect to %s:%s (%s)." +msgid "Can't select installed version from package %s as it is not installed" 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 -#, c-format -msgid "Connecting to %s" -msgstr "Bi %s re tê girêdan" - -#: methods/connect.cc:180 methods/connect.cc:199 -#, c-format -msgid "Could not resolve '%s'" -msgstr "Nikarî '%s' çareser bike" +#: apt-pkg/indexrecords.cc:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Pakêt nehate dîtin %s" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "Temporary failure resolving '%s'" +msgid "No sections in Release file %s" msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "System error resolving '%s:%s'" +msgid "No Hash entry in Release file %s" msgstr "" -#: methods/connect.cc:211 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgid "Invalid 'Valid-Until' entry in Release file %s" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/indexrecords.cc:168 #, 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 "" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "" - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Pakêt nehate dîtin %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/sourcelist.cc:127 #, 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 "Di xebitandina gpgv de çewtiya nenas" - -#: 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 "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -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" +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" 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/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" 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/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" msgstr "" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Girêdan pêk nehatiye" - -#: 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-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s tê vekirin" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-private/private-list.cc:164 +#: apt-pkg/sourcelist.cc:416 #, 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..." +msgid "Type '%s' is not known on stanza %u in source list %s" +msgstr "" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " neserketî." +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "%s hatine sazkirin" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nikare bindestiyan rast kirin" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s tê mîhengkirin" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "%s tê rakirin" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Temam" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s bi tevahî hatine rakirin" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" msgstr "" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" msgstr "" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" -msgstr "" +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Peldanka '%s' kêm e" -#: apt-private/private-output.cc:233 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Sazkirî]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Sazkirî]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" - -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Sazkirî]" +msgid "Could not open file '%s'" +msgstr "Nikarî pelê %s veke" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Sazkirî]" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "%s tê amadekirin" -#: apt-private/private-output.cc:248 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Unpacking %s" +msgstr "%s tê derxistin" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Mîhengkirina %s tê amadekirin" -#: apt-private/private-output.cc:434 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "but %s is installed" -msgstr "lê %s sazkirî ye" +msgid "Installed %s" +msgstr "%s hatine sazkirin" -#: apt-private/private-output.cc:436 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "but %s is to be installed" -msgstr "lê %s dê were sazkirin" +msgid "Preparing for removal of %s" +msgstr "Rakirina %s tê amadekirin" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "lê sazkirina wê ne gengaz e" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s hatine rakirin" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "lê paketeke farazî ye" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Bi tevahî rakirina %s tê amadekirin" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "lê ne sazkirî ye" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s bi tevahî hatine rakirin" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "lê dê neyê sazkirin" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " û" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Ev pakêtên NÛ dê werine sazkirin:" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Ev pakêt dê werine RAKIRIN:" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:550 -msgid "The following packages have been kept back:" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Ev paket dê werine bilindkirin:" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: apt-private/private-output.cc:667 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (ji ber %s)" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: apt-private/private-output.cc:675 +#: apt-pkg/deb/dpkgpm.cc:1645 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 out of memory " +"error" msgstr "" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu ji nû ve sazkirî," +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: apt-private/private-output.cc:712 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "%lu downgraded, " -msgstr "%lu hatine nizmkirin." +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" +#: 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" -#: apt-private/private-output.cc:718 +#. 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" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " 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:740 -#, fuzzy -msgid "[Y/n]" -msgstr "[E/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:746 -msgid "[y/N]" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "E" +#. 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 "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "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-output.cc:785 apt-pkg/cachefilter.cc:35 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, c-format -msgid "Regex compilation error - %s" +msgid "%limin %lis" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" msgstr "" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/strutl.cc:1243 #, 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 "Selection %s not found" +msgstr "Hilbijartina %s nehatiye dîtin" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:196 #, 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 "Nikarî qufila pelê %s veke" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" msgstr "" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" 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:155 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Anîna %sB/%sB ji arşîvan pêwist e.\n" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +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:160 +#: apt-pkg/contrib/fileutl.cc:841 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Anîna %sB ji arşîvan pêwist e.\n" +msgid "Sub-process %s received a segmentation fault." +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:167 +#: apt-pkg/contrib/fileutl.cc:843 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\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:172 +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" +msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Cihê vala li %s têre nake." +msgid "Sub-process %s exited unexpectedly" +msgstr "" -#: apt-private/private-install.cc:210 apt-private/private-download.cc:59 -msgid "There are problems and -y was used without --force-yes" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Çewtiya nivîsînê" + +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" + +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nikarî pelê %s veke" + +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" msgstr "" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: apt-pkg/contrib/fileutl.cc:1411 +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:220 -msgid "Yes, do as I say!" -msgstr "Erê, wusa bike!" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Çewiya xwendinê" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/fileutl.cc:1552 #, 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:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Betal." +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Dixwazî bidomînî?" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Daxistina çend pelan biserneket" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Di girtina pelî de pirsgirêkek derket" -#: 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/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Sazkirin tê betalkirin." +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Çewtî!" -#: 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/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Çêbû" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/progress.cc:181 +msgid "..." msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Çêbû" -#: 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." +#: 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:502 apt-private/private-install.cc:653 -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:506 -msgid "Internal Error, AutoRemover broke stuff" -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-install.cc:513 +#: 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] "Ev pakêtên NÛ dê werine sazkirin:" -msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" +msgid "Unable to close mmap" +msgstr "%s venebû" -#: 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] "Ev pakêtên NÛ dê werine sazkirin:" -msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "%s venebû" -#: 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/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "" -#: apt-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: 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 +#, 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: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 "" -#: apt-private/private-install.cc:638 +#: 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 "" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Paketên şikestî" +#: 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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Paketên tên pêşniyaz kirin:" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Paketên tên tawsiyê kirin:" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/configuration.cc:839 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/configuration.cc:879 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s jixwe guhertoya nûtirîn e.\n" +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" -#: apt-private/private-install.cc:894 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" +msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-private/private-install.cc:899 +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 #, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgid "Syntax error %s:%u: Included from here" msgstr "" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-private/private-install.cc:947 +#: apt-pkg/contrib/configuration.cc:902 #, c-format -msgid "Package '%s' is not installed, so not removed\n" +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" 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:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" +#. 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 +#, c-format +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: 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-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" msgstr "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." msgstr "" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Anîna %s %s biserneket\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "%s ji hev nehate veçirandin" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "" -#: apt-private/private-sources.cc:70 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Option '%s' is too long" +msgstr "Opsiyona '%s' zêde dirêj e" + +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" msgstr "" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Anîn:" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Navên paketan bi giştî :" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Navên paketan bi giştî :" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Çewt" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Pakêtên normal:" -#: apt-private/acqprogress.cc:146 -#, fuzzy, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%s hatine anîn..." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Pakêtên farazî yên safî:" -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Dixebite]" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Pakêta tenê ya farazî:" -#: 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 "" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Pakêtên hevbeş yên farazî:" -#. 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" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Winda: " -#: 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 "Nikarî derbasa %s bike" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Guhertoyên vekirî yên giştî:" -#. 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:367 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Guhertoyên vekirî yên giştî:" + +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Bindestên giştî:" + +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " 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 "Nikarî pelê %s veke" +#: cmdline/apt-cache.cc:374 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Guhertoyên vekirî yên giştî:" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Nikarî pelê %s veke" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " msgstr "" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " msgstr "" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Girêdan zû hatiye girtin" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Cihê giştî yê sist:" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Cihê giştî yê veqetandî: " -#: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95 -#: dselect/install:106 dselect/update:45 -msgid "Press enter to continue." +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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." + +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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" + +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Pêwist e tu mînakekê bidî" + +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Pelgehên Pakêt:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" msgstr "" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nehate dîtin)" + +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Sazkirî: " + +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Berendam: " -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ne tiştek)" -#: dselect/install:105 -msgid "" -"above this message are important. Please fix them and run [I]nstall again" -msgstr "" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Destika pakêtê:" -#: dselect/update:30 -msgid "Merging available information" -msgstr "" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabloya guhertoyan:" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "" +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" +#: cmdline/apt-cache.cc:1801 +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-inst/filelist.cc:459 +#: cmdline/apt-cdrom.cc:76 #, fuzzy -msgid "Failed to allocate diversion" -msgstr "%s venebû" +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-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "" +#: 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-inst/filelist.cc:477 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "" +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Anîna %s %s biserneket\n" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %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-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." msgstr "" -#: 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-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" msgstr "" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" +#: 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-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" +#: 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-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:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nikarî pakêta %s bibîne" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: 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" + +#: cmdline/apt-get.cc:367 #, c-format -msgid "Failed to stat %s" +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Failed to rename %s to %s" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:454 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" +msgid "Couldn't find package %s" +msgstr "Nikarî pakêta %s bibîne" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "lê %s dê were sazkirin" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Rêç zêde dirêj e" +#: 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-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %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:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" 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" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Pelrêça daxistinê nayê quflekirin" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Girtina pelê %s biserneket" +#: 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:1091 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" +msgid "Unable to find a source package for %s" msgstr "" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Internal error, could not locate member %s" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" +#: 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:76 -msgid "Invalid archive signature" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Nikarî cihê vala li %s tesbît bike" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Invalid archive member header %s" -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "Cihê vala li %s têre nake" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#. 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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" 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" +#. TRANSLATOR: The required 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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:124 -#, fuzzy -msgid "Failed to create pipes" -msgstr "%s ji hev nehate veçirandin" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Çavkanîna %s bîne\n" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Xebitandina gzip biserneket" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Anîna çend arşîvan biserneket." -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" msgstr "" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Unpack command '%s' failed.\n" 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:965 #, 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:993 +#, 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:1012 +msgid "Child process failed" msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" +#: cmdline/apt-get.cc:1031 +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:1056 #, c-format -msgid "Wrote %i records.\n" -msgstr "%i tomar hatin nivîsîn.\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:1103 cmdline/apt-get.cc:1106 #, 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:1126 #, 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:1296 #, 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:1314 #, 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 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum li hev nayên" - -#: apt-pkg/acquire-worker.cc:116 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "The method driver %s could not be found." +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Is the package %s installed?" +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:169 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Method %s did not start correctly" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" msgstr "" -#: 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" - -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: apt-pkg/cachefile.cc:98 -msgid "You may want to run apt-get update to correct these problems" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" msgstr "" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Girêdan bi %s (%s) re pêk tê" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" msgstr "" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" +#: cmdline/apt-get.cc:1657 +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:169 -msgid "The package cache file is corrupted, it is too small" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" msgstr "" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: 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:321 -msgid "Depends" -msgstr "Bindest" +#: 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/pkgcache.cc:321 -msgid "PreDepends" -msgstr "PêşBindest" +#: 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/pkgcache.cc:321 -msgid "Suggests" -msgstr "Pêşniyaz dike" +#: 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/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tawsiye dike" +#: 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/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Nakokî" +#: 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/pkgcache.cc:322 -msgid "Replaces" -msgstr "Dikeve şunve" +#: 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/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Kevin dike" +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s venebû" + +#: 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:323 -msgid "Breaks" -msgstr "Dişkîne" +#: 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:323 -msgid "Enhances" +#: 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:334 -msgid "important" -msgstr "girîng" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM a şaş" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "pêwist" +#: 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:334 -msgid "standard" -msgstr "standard" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Dîsk nehate dîtin." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opsiyonel" +#: 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:335 -msgid "extra" -msgstr "ekstra" +#: 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/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" 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î" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Têketin" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nikare navê herêmî tesbît bike" -#: apt-pkg/pkgcachegen.cc:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." +#: methods/ftp.cc:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:225 #, c-format -msgid "Package %s %s was not found while processing file dependencies" +msgid "USER failed, server said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:232 #, c-format -msgid "Couldn't stat source package list %s" +msgid "PASS failed, server said: %s" 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" - -#: 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 "" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:280 #, c-format -msgid "Unable to write to %s" -msgstr "Nivîsandin ji bo %s ne pêkane" +msgid "Login script command '%s' failed, server said: %s" +msgstr "" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" msgstr "" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: methods/ftp.cc:350 +msgid "Server closed the connection" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." msgstr "" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "nav guherandin biserneket, %s (%s -> %s)" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash Sum li hev nayên" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Serneket" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Mezinahî li hev nayên" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" 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:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Pakêt nehate dîtin %s" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" 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:792 +msgid "Unable to send PORT command" msgstr "" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:802 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +msgid "Unknown address family %u (AF_*)" msgstr "" -#: apt-pkg/acquire-item.cc:1729 +#: methods/ftp.cc:811 #, 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 "EPRT 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" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" msgstr "" -#: 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:838 +msgid "Unable to accept connection" msgstr "" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" 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:890 +#, 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 "" -#: apt-pkg/vendorlist.cc:85 +#: methods/ftp.cc:935 #, c-format -msgid "Vendor block %s contains no fingerprint" +msgid "Data transfer failed, server said '%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" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Lêpirsîn" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Peldanka '%s' kêm e" +#: methods/ftp.cc:1128 +#, fuzzy +msgid "Unable to invoke " +msgstr "%s venebû" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "W: pelrêça %s nayê xwendin\n" +#: methods/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Girêdan bi %s (%s) re pêk tê" -#. 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 "" +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 "Pel tê anîn %li ji %li" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "" -#: 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:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" +#: methods/connect.cc:108 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: 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" +msgid "Could not connect to %s:%s (%s)." msgstr "" -#: apt-pkg/policy.cc:422 +#. 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 "Invalid record in the preferences file %s, no Package header" -msgstr "" +msgid "Connecting to %s" +msgstr "Bi %s re tê girêdan" -#: apt-pkg/policy.cc:444 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Did not understand pin type %s" +msgid "Could not resolve '%s'" +msgstr "Nikarî '%s' çareser bike" + +#: methods/connect.cc:205 +#, c-format +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 "Nikarî pelê %s veke" +msgid "Unable to connect to %s:%s:" +msgstr "Nikare bi %s re girêdan pêk bîne %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" +#: 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" +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 "" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Di xebitandina gpgv de çewtiya nenas" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -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:" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " +#: methods/gpgv.cc:231 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -#: 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 "Dema li pelî dihate nivîsîn çewtî" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" 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:525 +msgid "Error reading from server" 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: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:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Etîketa '%s' hatiye dîtin\n" +#: methods/http.cc:649 +#, fuzzy +msgid "Error writing to output file" +msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\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" +#: methods/server.cc:109 +msgid "Bad header line" 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:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\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:496 +msgid "Bad header data" msgstr "" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Girêdan pêk nehatiye" + +#: methods/server.cc:572 +#, c-format +msgid "" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Guhartoyên berendam" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Çewtiya hundirîn" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" +#: 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/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" +#: apt-private/private-list.cc:123 +msgid "Listing" msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Vekirina StateFile %s biserneket" +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 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "%s ji hev nehate veçirandin" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Bindestî tên serrastkirin..." -#: 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-cachefile.cc:96 +msgid " failed." +msgstr " neserketî." -#: 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-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nikare bindestiyan rast kirin" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" +#: 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" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Temam" + +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Peywira %s nehate dîtin" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "" -#: 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: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:233 #, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nikarî pakêta %s bibîne" +msgid "[installed,upgradable to: %s]" +msgstr " [Sazkirî]" + +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Sazkirî]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "" + +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Sazkirî]" -#: 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:244 +#, fuzzy +msgid "[installed]" +msgstr " [Sazkirî]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is installed" +msgstr "lê %s sazkirî ye" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:436 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" - -#: apt-pkg/indexrecords.cc:78 -#, fuzzy, c-format -msgid "Unable to parse Release file %s" -msgstr "Pakêt nehate dîtin %s" +msgid "but %s is to be installed" +msgstr "lê %s dê were sazkirin" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "lê sazkirina wê ne gengaz e" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "lê paketeke farazî ye" -#: apt-pkg/indexrecords.cc:130 -#, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "lê ne sazkirî ye" -#: apt-pkg/indexrecords.cc:149 -#, fuzzy, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Pakêt nehate dîtin %s" +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +msgstr "lê dê neyê sazkirin" -#: apt-pkg/sourcelist.cc:127 -#, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" +#: apt-private/private-output.cc:453 +msgid " or" +msgstr " û" -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" msgstr "" -#: apt-pkg/sourcelist.cc:173 -#, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: 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:528 +msgid "The following packages will be REMOVED:" +msgstr "Ev pakêt dê werine RAKIRIN:" -#: apt-pkg/sourcelist.cc:190 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" 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:571 +msgid "The following packages will be upgraded:" +msgstr "Ev paket dê werine bilindkirin:" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" msgstr "" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" msgstr "" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (ji ber %s)" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#: apt-private/private-output.cc:675 +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:224 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu hatine bilindkirin, %lu nû hatine sazkirin." -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:710 #, c-format -msgid "Opening %s" -msgstr "%s tê vekirin" +msgid "%lu reinstalled, " +msgstr "%lu ji nû ve sazkirî," -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "" +msgid "%lu downgraded, " +msgstr "%lu hatine nizmkirin." -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:714 #, 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 werin rakirin û %lu neyên bilindkirin. \n" -#: apt-pkg/sourcelist.cc:416 +#: apt-private/private-output.cc:718 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +msgid "%lu not fully installed or removed.\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "%s hatine sazkirin" +#. 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:740 +#, fuzzy +msgid "[Y/n]" +msgstr "[E/n]" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s tê mîhengkirin" +#. 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:746 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s tê rakirin" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "E" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s bi tevahî hatine rakirin" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 +#: 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" -msgstr "Peldanka '%s' kêm e" +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 "Nikarî pelê %s veke" +#: 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 tê amadekirin" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s tê derxistin" +#: apt-private/private-install.cc:93 +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 "Mîhengkirina %s tê amadekirin" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +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:157 #, c-format -msgid "Installed %s" -msgstr "%s hatine sazkirin" +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: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:162 #, c-format -msgid "Preparing for removal of %s" -msgstr "Rakirina %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: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:169 #, c-format -msgid "Removed %s" -msgstr "%s hatine rakirin" +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "" -#: 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:174 #, c-format -msgid "Preparing to completely remove %s" -msgstr "Bi tevahî rakirina %s tê amadekirin" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1010 +#: apt-private/private-install.cc:202 #, c-format -msgid "Completely removed %s" -msgstr "%s bi tevahî hatine rakirin" +msgid "You don't have enough free space in %s." +msgstr "Cihê vala li %s têre nake." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:212 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" 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-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: 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:222 +msgid "Yes, do as I say!" +msgstr "Erê, wusa bike!" + +#: apt-private/private-install.cc:224 +#, 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:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Betal." + +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Dixwazî bidomînî?" + +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Daxistina çend pelan biserneket" + +#: apt-private/private-install.cc:322 +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:326 +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:331 +msgid "Unable to correct missing packages." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Sazkirin tê betalkirin." + +#: apt-private/private-install.cc:368 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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:501 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:515 +#, 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:519 #, 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:521 +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" + +#: apt-private/private-install.cc:616 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:640 +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:661 +msgid "Broken packages" +msgstr "Paketên şikestî" + +#: apt-private/private-install.cc:738 +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:828 +msgid "Suggested packages:" +msgstr "Paketên tên pêşniyaz kirin:" + +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Paketên tên tawsiyê kirin:" + +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, c-format -msgid "%lis" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Anîn:" + +#: apt-private/acqprogress.cc:119 +msgid "Ign " msgstr "" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Çewt" + +#: apt-private/acqprogress.cc:147 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Di girtina pelî de pirsgirêkek derket" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s hatine anîn..." -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Could not open file %s" +msgid " [Working]" +msgstr " [Dixebite]" + +#: apt-private/acqprogress.cc:298 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +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 "" + +#. 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" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Could not open file descriptor %d" +msgid "No entry found in mirror file '%s'" msgstr "Nikarî pelê %s veke" -#: 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 "" - -#: apt-pkg/contrib/fileutl.cc:1514 +#: methods/mirror.cc:445 #, c-format -msgid "read, still have %llu to read but none left" +msgid "[Mirror: %s]" 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" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" msgstr "" -#: 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" +#: 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:184 #, 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 =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3036,12 +3049,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nivîsandin ji bo %s ne pêkane" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?" @@ -3120,121 +3128,121 @@ msgstr "" msgid "Some files are missing in the package file group `%s'" msgstr "Di koma pelgehên pakêta '%s' de hin pelgeh kêm in" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB xerabe ye, navê dosyeyê weke %s.old hate guherandin" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Danegir kevn e, ji bo bilindkirina %s hewl dide" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Danegira %s nehate vekirin: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Rakirina %s biserneket" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Tomara kontrola arşîvê tuneye" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: pelrêça %s nayê xwendin\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s ji hev nehate veçirandin" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s venebû" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Di arşîvê de qada pakêtê tuneye" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr "" diff --git a/po/lt.po b/po/lt.po index 4b6561356..7a81ebb09 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -20,3040 +20,3053 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2008-08-02 05:04+0000\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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 "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n" +msgid "Unable to read %s" +msgstr "Nepavyko perskaityti %s" -#: cmdline/apt-cache.cc:277 -#, fuzzy -msgid "Total package names: " -msgstr "Visi paketų pavadinimai: " +#: apt-pkg/clean.cc:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:279 -#, fuzzy -msgid "Total package structures: " -msgstr "Visi paketų pavadinimai: " +#: apt-pkg/clean.cc:61 +#, c-format +msgid "Unable to stat %s." +msgstr "" -#: cmdline/apt-cache.cc:319 -msgid " Normal packages: " -msgstr " NormalÅ«s paketai: " +#: apt-pkg/install-progress.cc:57 +#, c-format +msgid "Progress: [%3i%%]" +msgstr "" -#: cmdline/apt-cache.cc:320 -msgid " Pure virtual packages: " -msgstr " VirtualÅ«s paketai: " +#: 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 " Pavieniai virtualÅ«s paketai: " +#: apt-pkg/init.cc:146 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "" -#: cmdline/apt-cache.cc:322 -msgid " Mixed virtual packages: " -msgstr " MiÅ¡rÅ«s virtualÅ«s paketai: " +#: apt-pkg/init.cc:162 +msgid "Unable to determine a suitable packaging system type" +msgstr "" -#: cmdline/apt-cache.cc:323 -msgid " Missing: " -msgstr " TrÅ«ksta: " +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775 +#, c-format +msgid "Wrote %i records.\n" +msgstr "" -#: cmdline/apt-cache.cc:325 -msgid "Total distinct versions: " -msgstr "Viso skirtingų versijų: " +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "" -#: cmdline/apt-cache.cc:327 -#, fuzzy -msgid "Total distinct descriptions: " -msgstr "Viso skirtingų apraÅ¡ymų: " +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "" -#: cmdline/apt-cache.cc:329 -msgid "Total dependencies: " -msgstr "Viso priklausomybių: " +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783 +#, 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 "Viso versijų/failų santykių yra: " +#: 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 "Viso apraÅ¡ymų/failų santykių yra: " +#: apt-pkg/indexcopy.cc:521 +#, fuzzy, c-format +msgid "Hash mismatch for: %s" +msgstr "MaiÅ¡os sumos nesutapimas" -#: cmdline/apt-cache.cc:336 -msgid "Total Provides mappings: " +#: 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: " -msgstr "" +#: 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: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:460 +#, 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" msgstr "" +"Greičiausiai norėsite paleisti „apt-get update“, kad Å¡ios problemos bÅ«tų " +"iÅ¡taisytos" -#: cmdline/apt-cache.cc:375 -msgid "Total space accounted for: " +#: 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:150 +msgid "Empty package cache" 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." +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" 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/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" msgstr "" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:171 +#, c-format +msgid "This APT does not support the versioning system '%s'" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:181 #, c-format -msgid "Unable to locate package %s" -msgstr "Nepavyko rasti paketo %s" +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paketų failai:" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Priklauso" -#: 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:324 +msgid "PreDepends" +msgstr "PrieÅ¡priklauso" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "SuriÅ¡ti paketai:" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "SiÅ«lo" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nerasta)" +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Rekomenduoja" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Ä®diegta: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Konfliktuoja" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidatas: " +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Pakeičia" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nėra)" +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Pakeičia" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketo susiejimai: " +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Sugadina" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versijų lentelė:" +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +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 +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "Svarbu" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "privaloma" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standartinis" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "nebÅ«tinas" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "papildomas" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" +msgid "Index file type '%s' is not supported" 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/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" msgstr "" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" 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" - -#: 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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nepavyko pervadinti %s į %s" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Klaida apdorojant turinį %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." +#: apt-pkg/pkgcachegen.cc:280 +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 "Pakartokite Å¡itą procesą su kitais CD savo rinkinyje." +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Parametrai nurodyti ne poromis" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions 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:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." 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" - -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nepavyko rasti paketo %s" - -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Nepavyko rasti paketo %s" - -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nepavyko rasti paketo %s" -#: cmdline/apt-get.cc:367 +#: apt-pkg/pkgcachegen.cc:598 #, 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:1233 #, 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 -#, c-format -msgid "Couldn't find package %s" -msgstr "Nepavyko rasti paketo %s" +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Skaitomi paketų sąraÅ¡ai" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" +msgid "Unable to write to %s" +msgstr "Nepavyko įraÅ¡yti į %s" -#: 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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +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 "Vidinė klaida, problemos sprendimas kažką sugadino" +#: 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 "Nepavyko užrakinti parsiuntimų aplanko" +#: 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 "BÅ«tina nurodyti bent vieną paketą, kad parsiųsti jo iÅ¡eities tekstą" +#: 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 "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nepavyko surasti iÅ¡eities teksto paketo, skirto %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "MaiÅ¡os sumos nesutapimas" + +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Neatitinka dydžiai" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Klaidingas veiksmas %s" + +#: apt-pkg/acquire-item.cc:1679 #, 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:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Nepavyko atverti DB failo %s: %s" + +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" + +#: apt-pkg/acquire-item.cc:1775 #, 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:1797 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Praleidžiama jau parsiųsta byla „%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:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nepavyko nustatyti %s laisvos vietos" +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:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Neturite pakankamai laisvos vietos %s" +msgid "GPG error: %s: %s" +msgstr "GPG klaida: %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:1972 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Reikia parsiųsti %sB/%sB iÅ¡eities archyvų.\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:2038 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Reikia parsiųsti %sB iÅ¡eities archyvų.\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Fetch source %s\n" -msgstr "Parsiunčiamas archyvas %s\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nepavyko gauti kai kurių arhcyvų." +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "" -#: 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" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "TrÅ«ksta aplanko „%s“" -#: 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/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "TrÅ«ksta aplanko „%s“" + +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Nepavyko užrakinti sąraÅ¡o aplanko" -#: cmdline/apt-get.cc:962 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Nepavyko įvykdyti iÅ¡pakavimo komandos „%s“\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Parsiunčiamas %li failas iÅ¡ %li (liko %s)" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" +msgid "Retrieving file %li of %li" +msgstr "Parsiunčiamas %li failas iÅ¡ %li" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" +msgid "Failed to fetch %s %s\n" +msgstr "Nepavyko parsiųsti %s %s\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Klaida procese-palikuonyje" +#: 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." -#: 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/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "" -#: cmdline/apt-get.cc:1054 +#: 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 "Nepavyko gauti kÅ«rimo-priklausomybių informacijos paketui %s" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" +msgid "Did not understand pin type %s" 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" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" msgstr "" -"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, 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 priklausomybė %s paketui negali bÅ«ti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nepavyko atverti failo %s" + +#: apt-pkg/packagemanager.cc:584 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +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 "" -"Nepavyko patenkinti %s priklausomybės %s paketui: Ä®diegtas paketas %s yra " -"per naujas" -#: 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/cdrom.cc:497 apt-pkg/sourcelist.cc:347 +#, c-format +msgid "Line %u too long in source list %s." msgstr "" -"%s priklausomybė %s paketui negali bÅ«ti patenkinama, nes nėra tinkamos " -"versijos %s paketo" -#: 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" - -#: 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-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Atjungiamas 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 "" +msgid "Using CD-ROM mount point %s\n" +msgstr "Naudojama CD-ROM prijungimo vieta %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 "Laukiama disko...\n" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 -#, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Jungiamasi prie %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Prijungiamas CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Palaikomi moduliai:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifikuojama... " -#: 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 "BÅ«tina nurodyti bent vieną paketą, kad parsiųsti jo iÅ¡eities tekstą" - -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" msgstr "" -#: cmdline/apt-helper.cc:66 +#: apt-pkg/cdrom.cc:734 +#, 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" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" 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" - -#: 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" - -#: 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/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 ir taip jau yra naujausias.\n" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "Rasta žymė „%s“\n" -#: 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/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 "" +"Å io disko pavadinimas: \n" +"„%s“\n" -#: 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:819 +msgid "Copying package lists..." +msgstr "Kopijuojami paketų sąraÅ¡ai..." -#: 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:863 +msgid "Writing new source list\n" +msgstr "RaÅ¡omas naujas Å¡altinių sąraÅ¡as\n" -#: 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 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nepavyko perskaityti cdrom duomenų bazės %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 "" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Klaidingas CD-ROM" +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Konstruojamas priklausomybių medis" -#: methods/cdrom.cc:249 -#, 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." +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Galimos versijos" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Diskas nerastas." +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Priklausomybių generavimas" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Failas nerastas" +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Skaitoma bÅ«senos informacija" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" msgstr "" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" msgstr "" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" +#: apt-pkg/tagfile.cc:169 +#, c-format +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 "Jungiamasi" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" +#: apt-pkg/tagfile.cc:269 +#, 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:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:493 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "" +msgid "Version '%s' for '%s' was not found" +msgstr "Nebuvo rasta „%s“ versija paketui „%s“" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 #, c-format -msgid "USER failed, server said: %s" -msgstr "" +msgid "Unable to locate package %s" +msgstr "Nepavyko rasti paketo %s" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "Nepavyko rasti užduoties %s" + +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nepavyko rasti paketo %s" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nepavyko rasti paketo %s" + +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "PASS failed, server said: %s" +msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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 "" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "Login script command '%s' failed, server said: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -#: methods/ftp.cc:306 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "TYPE failed, server said: %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 "Jungiamasi per ilgai" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" +#: apt-pkg/cacheset.cc:664 +#, 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 "Skaitymo klaida" +#: apt-pkg/indexrecords.cc:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "Nepavyko atverti DB failo %s: %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "" +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" +#: apt-pkg/indexrecords.cc:136 +#, 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 "RaÅ¡ymo klaida" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "" +#: apt-pkg/indexrecords.cc:168 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nepavyko atverti DB failo %s: %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/sourcelist.cc:127 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Nepavyko" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" +#: apt-pkg/sourcelist.cc:173 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a 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:753 -msgid "Could not listen on the socket" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" +#: 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:792 -msgid "Unable to send PORT command" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" msgstr "" -#: 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" +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" +#: 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" -msgstr "" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Atveriama %s" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“" +msgid "Malformed line %u in source list %s (type)" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" +#: apt-pkg/sourcelist.cc:375 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Data transfer failed, server said '%s'" +msgid "Type '%s' is not known on stanza %u in source list %s" msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Užklausti" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "Ä®diegta %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "KonfigÅ«ruojamas %s" + +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Å alinamas %s" + +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "VisiÅ¡kai paÅ¡alintas %s" + +#: 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 "Jungiamasi prie %s (%s)" +msgid "Running post-installation trigger %s" +msgstr "" -#: 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 "TrÅ«ksta aplanko „%s“" -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -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" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "" +msgid "Preparing %s" +msgstr "RuoÅ¡iamas %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 "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko" +msgid "Unpacking %s" +msgstr "IÅ¡pakuojamas %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nepavyko prisijungti prie %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "RuoÅ¡iamasi konfigÅ«ruoti %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 "Jungiamasi prie %s" +msgid "Installed %s" +msgstr "Ä®diegta %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nepavyko surasti vardo „%s“" +msgid "Preparing for removal of %s" +msgstr "RuoÅ¡iamasi %s paÅ¡alinimui" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" +msgid "Removed %s" +msgstr "PaÅ¡alintas %s" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "RuoÅ¡iamasi visiÅ¡kai paÅ¡alinti %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 "VisiÅ¡kai paÅ¡alintas %s" + +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, 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?!" -msgstr "" +msgid "Can not write log (%s)" +msgstr "Nepavyko įraÅ¡yti į %s" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." +#: apt-pkg/deb/dpkgpm.cc:1067 +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:1088 +msgid "Is stdout a terminal?" msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Nežinoma klaida kviečiant gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Å ie paraÅ¡ai buvo nevalidÅ«s:\n" - -#: 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" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -#: methods/http.cc:509 -msgid "Error writing to the file" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" msgstr "" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" msgstr "" -#: methods/http.cc:525 -msgid "Error reading from server" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Klaida bandant raÅ¡yti į failą" - -#: methods/http.cc:621 -msgid "Select failed" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" 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" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Laukiama antraščių" - -#: methods/server.cc:109 -msgid "Bad header line" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" msgstr "" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" msgstr "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: 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:194 -msgid "The HTTP server sent an invalid Content-Range header" -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" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" +#. 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:220 -msgid "Unknown date format" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" +#. 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: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:28 -msgid "Done" -msgstr "Ä®vykdyta" - -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#. 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-list.cc:131 -msgid "Listing" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" msgstr "" -#: apt-private/private-list.cc:164 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, 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 "Taisomos priklausomybės..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " nepavyko." - -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nepavyko patenkinti priklausomybių" - -#: apt-private/private-cachefile.cc:102 -#, fuzzy -msgid "Unable to minimize the upgrade set" -msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" - -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ä®vykdyta" - -#: 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." +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:191 +#, 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:196 +#, 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:219 +#, 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:224 +#, 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:361 apt-pkg/contrib/fileutl.cc:475 #, 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:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:413 #, 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:436 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "but %s is to be installed" -msgstr "bet %s bus įdiegtas" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "tačiau jis negali bÅ«ti įdiegtas" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "bet tai yra virtualus paketas" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "bet jis nėra įdiegtas" +#: apt-pkg/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "bet jis nebus įdiegtas" +#: apt-pkg/contrib/fileutl.cc:847 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:453 -msgid " or" -msgstr " arba" +#: apt-pkg/contrib/fileutl.cc:849 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:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Å ie paketai turi neįdiegtų priklausomybių:" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "RaÅ¡ymo klaida" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Bus įdiegti Å¡ie NAUJI paketai:" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Bus PAÅ ALINTI Å¡ie paketai:" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nepavyko atverti failo %s" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Å ių paketų atnaujinimas sulaikomas:" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nepavyko atverti failo %s" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Bus atnaujinti Å¡ie paketai:" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Nepavyko sukurti subproceso IPC" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Nepavyko paleisti suspaudėjo " -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Bus pakeisti Å¡ie sulaikyti paketai:" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Skaitymo klaida" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/fileutl.cc:1552 #, c-format -msgid "%s (due to %s) " -msgstr "%s (dėl %s) " - -#: apt-private/private-output.cc:675 -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:706 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, 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:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu įdiegti iÅ¡ naujo, " +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Klaida užveriant failą" -#: apt-private/private-output.cc:712 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu pasendinti, " +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Klaida sinchronizuojant failą" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Klaida užveriant failą" + +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Klaida sinchronizuojant failą" + +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nepavyko sukurti %s" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu bus paÅ¡alinta ir %lu neatnaujinta.\n" +msgid "%c%s... Error!" +msgstr "%c%s... Klaida!" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" +msgid "%c%s... Done" +msgstr "%c%s... Baigta" -#. 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:740 -msgid "[Y/n]" -msgstr "[T/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:746 -msgid "[y/N]" -msgstr "[t/N]" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Baigta" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "T" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" msgstr "" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "Regex compilation error - %s" +msgid "Couldn't make mmap of %llu bytes" msgstr "" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Atnaujinimo komandai argumentų nereikia" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Nepavyko atverti %s" -#: apt-private/private-update.cc:90 +#: 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 "%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 %lu bytes" +msgstr "" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: 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-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:82 -msgid "Internal error, InstallPackages was called with broken packages!" +#: apt-pkg/contrib/cdromutl.cc:65 +#, c-format +msgid "Unable to stat the mount point %s" msgstr "" -#: 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-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" msgstr "" -#: 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" - -#. 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 +#: apt-pkg/contrib/configuration.cc:521 #, 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:160 +#: apt-pkg/contrib/configuration.cc:635 #, 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:167 +#: apt-pkg/contrib/configuration.cc:803 #, 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:172 +#: apt-pkg/contrib/configuration.cc:822 #, 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:200 +#: apt-pkg/contrib/configuration.cc:839 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s nėra pakankamai laisvos vietos." - -#: 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-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +msgid "Syntax error %s:%u: Extra junk after value" 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-private/private-install.cc:222 +#: apt-pkg/contrib/configuration.cc:879 #, 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 "" -"Bandote atlikti tikėtinai pavojingą veiksmą.\n" -"Jei norite tęsti, įveskite frazę „%s“\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Nutraukti." -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Ar norite tęsti?" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Nepavyko parsiųsti kai kurių failų" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -"Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " -"arba pabandykite su parametru --fix-missing?" -#: 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/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nepavyko pataisyti dingusių paketų." +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "" -#: apt-private/private-install.cc:330 -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 "Diegimas nutraukiamas." -#: 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-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." msgstr "" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: 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:499 -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:168 +#, c-format +msgid "Command line option %s is not boolean" 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ą:" +#: 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:506 -msgid "Internal Error, AutoRemover broke stuff" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." 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-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-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "" -#: apt-private/private-install.cc:614 -msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" msgstr "" -"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " -"nurodytų paketų (arba nurodykite iÅ¡eitį)." -#: 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." +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." 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-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Sugadinti paketai" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Klaidingas veiksmas %s" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Bus įdiegti Å¡ie papildomi paketai:" +#: 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:802 -msgid "Suggested packages:" -msgstr "SiÅ«lomi paketai:" +#: cmdline/apt-cache.cc:317 +#, fuzzy +msgid "Total package names: " +msgstr "Visi paketų pavadinimai: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Rekomenduojami paketai:" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Visi paketų pavadinimai: " -#: apt-private/private-install.cc:825 -#, c-format -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" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " NormalÅ«s paketai: " -#: 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" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " VirtualÅ«s paketai: " -#: apt-private/private-install.cc:841 -#, 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:361 +msgid " Single virtual packages: " +msgstr " Pavieniai virtualÅ«s paketai: " -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ir taip jau yra naujausias.\n" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " MiÅ¡rÅ«s virtualÅ«s paketai: " -#: apt-private/private-install.cc:894 -#, 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:363 +msgid " Missing: " +msgstr " TrÅ«ksta: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Viso skirtingų versijų: " -#. 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" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Viso skirtingų apraÅ¡ymų: " + +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Viso priklausomybių: " -#: apt-private/private-install.cc:947 -#, 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:372 +msgid "Total ver/file relations: " +msgstr "Viso versijų/failų santykių yra: " -#: 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:374 +msgid "Total Desc/File relations: " +msgstr "Viso apraÅ¡ymų/failų santykių yra: " + +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " 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:388 +msgid "Total globbed strings: " +msgstr "" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " 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ų" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Ä®diegti Å¡iuos paketus be patvirtinimo?" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Nepavyko parsiųsti %s %s\n" +msgid "Package file %s is out of sync." +msgstr "" -#: 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:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Imamas " +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Paketų failai:" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Gauti:" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ignoruotas " +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "SuriÅ¡ti paketai:" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Klaida " +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nerasta)" -#: 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-cache.cc:1638 +msgid " Installed: " +msgstr " Ä®diegta: " -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Vykdoma]" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidatas: " -#: 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(nėra)" -#. 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-cache.cc:1672 +msgid " Package pin: " +msgstr " Paketo susiejimai: " -#: 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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versijų lentelė:" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "No mirror file '%s' found " +msgid "%s %s for %s compiled on %s %s\n" 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 "Nepavyko atverti failo %s" - -#: methods/mirror.cc:315 -#, 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]" +#: cmdline/apt-cache.cc:1801 +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 "" -#: 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" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Blogi standartiniai nustatymai!" +#: 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" -#: 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." +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Nepavyko pervadinti %s į %s" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" +#: 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:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "IÅ¡pakuojant įvyko klaidų. Bandysiu konfigÅ«ruoti" - -#: 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-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." -#: 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-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Parametrai nurodyti ne poromis" -#: 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 "" -"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" +"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-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Nepavyko rasti paketo %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "" +msgid "Couldn't find package %s" +msgstr "Nepavyko rasti paketo %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid "Duplicate conf file %s/%s" +msgid "%s set to manually installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" + +#: 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" + +#: 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:101 apt-inst/extract.cc:172 +#: 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ą" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "The path %s is too long" -msgstr "Kelias %s per ilgas" +msgid "Unable to find a source package for %s" +msgstr "Nepavyko surasti iÅ¡eities teksto paketo, skirto %s" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Unpacking %s more than once" +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" +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:839 #, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Nepavyko nustatyti %s laisvos vietos" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Failed to stat %s" -msgstr "Nepavyko patikrinti %s" +msgid "You don't have enough free space in %s" +msgstr "Neturite pakankamai laisvos vietos %s" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#. 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:893 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nepavyko pervadinti %s į %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Reikia parsiųsti %sB/%sB iÅ¡eities archyvų.\n" -#: apt-inst/extract.cc:249 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "" +msgid "Need to get %sB of source archives.\n" +msgstr "Reikia parsiųsti %sB iÅ¡eities archyvų.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Parsiunčiamas archyvas %s\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Kelias per ilgas" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Nepavyko gauti kai kurių arhcyvų." -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Pavyko parsiųsti tik parsiuntimo režime" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:952 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Jau iÅ¡pakuotas archyvas %s praleidžiama\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unable to stat %s" -msgstr "" +msgid "Unpack command '%s' failed.\n" +msgstr "Nepavyko įvykdyti iÅ¡pakavimo komandos „%s“\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Failed to write file %s" -msgstr "" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to close file %s" -msgstr "" +msgid "Build command '%s' failed.\n" +msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Klaida procese-palikuonyje" + +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "BÅ«tina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps" + +#: cmdline/apt-get.cc:1056 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" +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:1103 cmdline/apt-get.cc:1106 #, 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" -msgstr "" +msgid "Unable to get build-dependency information for %s" +msgstr "Nepavyko gauti kÅ«rimo-priklausomybių informacijos paketui %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" msgstr "" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" +#: cmdline/apt-get.cc:1296 +#, 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/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Invalid archive member header %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/contrib/arfile.cc:108 -msgid "Invalid archive member header" +#: cmdline/apt-get.cc:1337 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" +"Nepavyko patenkinti %s priklausomybės %s paketui: Ä®diegtas paketas %s yra " +"per naujas" -#: 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" +#: cmdline/apt-get.cc:1376 +#, 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/extracttar.cc:151 -msgid "Failed to exec gzip " +#: cmdline/apt-get.cc:1382 +#, 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/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 "Unknown TAR header type %u, member %s" -msgstr "Nežinomas TAR antraÅ¡tės tipas %u. narys %s" - -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Unable to stat %s." -msgstr "" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" -#: apt-pkg/install-progress.cc:57 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Progress: [%3i%%]" -msgstr "" - -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Jungiamasi prie %s (%s)" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Palaikomi moduliai:" -#: 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:1657 +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" -msgstr "" +#: 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ą" -#: 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 "MaiÅ¡os sumos nesutapimas" - -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "" +msgid "%s can not be marked as it is not installed.\n" +msgstr "bet jis nėra įdiegtas" -#: apt-pkg/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:74 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "" +msgid "%s was already set to manually installed.\n" +msgstr "%s nustatytas kaip įdiegtas rankiniu bÅ«du\n" -#: 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-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/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-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ir taip jau yra naujausias.\n" -#: 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" +#: 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/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nepavyko perskaityti Å¡altinių sąraÅ¡o." +#: 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/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 "Nepavyko atverti %s" -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" +#: 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" +#: 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 -msgid "The package cache file is corrupted, it is too small" +#: 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 "" +msgid "Unable to read the cdrom database %s" +msgstr "Nepavyko perskaityti cdrom duomenų bazės %s" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" +#: 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 "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" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Klaidingas CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Pakeičia" +#: methods/cdrom.cc:249 +#, 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." -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Pakeičia" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Diskas nerastas." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Sugadina" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Failas nerastas" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" +#: 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 "important" -msgstr "Svarbu" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "privaloma" - -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standartinis" +#: 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 "nebÅ«tinas" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "papildomas" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Jungiamasi" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" msgstr "" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" +#: 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 -#, 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:219 methods/ftp.cc:247 +#, c-format +msgid "The server refused the connection and said: %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions this APT is capable of." +#: methods/ftp.cc:225 +#, c-format +msgid "USER 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:232 +#, c-format +msgid "PASS 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:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." msgstr "" -#: 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 "" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" +msgid "TYPE failed, server said: %s" 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:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Jungiamasi per ilgai" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting 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 "Nepavyko įraÅ¡yti į %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" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" msgstr "" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" msgstr "" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" msgstr "" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Nepavyko" + +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." msgstr "" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" msgstr "" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, c-format -msgid "rename failed, %s (%s -> %s)." +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" msgstr "" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "MaiÅ¡os sumos nesutapimas" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Neatitinka dydžiai" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Klaidingas veiksmas %s" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "" -#: 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 +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Užklausti" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "" + +#: methods/connect.cc:76 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG klaida: %s: %s" +msgid "Connecting to %s (%s)" +msgstr "Jungiamasi prie %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 "" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:94 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: apt-pkg/acquire-item.cc:1991 +#: methods/connect.cc:100 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." +msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:108 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "" +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/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "TrÅ«ksta aplanko „%s“" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Nepavyko prisijungti prie %s:%s (%s)." -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "TrÅ«ksta aplanko „%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 "Jungiamasi prie %s" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Nepavyko užrakinti sąraÅ¡o aplanko" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Nepavyko surasti vardo „%s“" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Parsiunčiamas %li failas iÅ¡ %li (liko %s)" +msgid "Temporary failure resolving '%s'" +msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" + +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Laikinas sutrikimas ieÅ¡kant vardo „%s“" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Parsiunčiamas %li failas iÅ¡ %li" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "" -#: apt-pkg/update.cc:103 apt-pkg/update.cc:105 -#, fuzzy +#: 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 "" -"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 "" -"Kai kurių indeksų failų nepavyko parsiųsti, jie buvo ignoruoti arba vietoje " -"jų panaudoti seni." -#: 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 "" -#: 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-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 "" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Nežinoma klaida kviečiant 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 "Å ie paraÅ¡ai buvo nevalidÅ«s:\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 "Å ių parašų nebuvo galima patikrinti, nes nėra vieÅ¡ojo rakto:\n" + +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Nepavyko atverti failo %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." +#: 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." +#: methods/http.cc:525 +msgid "Error reading from server" msgstr "" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Atjungiamas CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Klaida bandant raÅ¡yti į failą" -#: apt-pkg/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Naudojama CD-ROM prijungimo vieta %s\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Laukiama disko...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Prisijungimo laiko limitas baigėsi" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Prijungiamas CD-ROM...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifikuojama... " +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Laukiama antraščių" -#: 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 "Rasta žymė „%s“\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 +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Prisijungti nepavyko" + +#: methods/server.cc:572 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Å io disko pavadinimas: \n" -"„%s“\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopijuojami paketų sąraÅ¡ai..." +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Vidinė klaida" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "RaÅ¡omas naujas Å¡altinių sąraÅ¡as\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Skaičiuojami atnaujinimai... " -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ä®vykdyta" -#: 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 "" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-list.cc:123 +msgid "Listing" msgstr "" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "" +#: apt-private/private-list.cc:156 +#, 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 "Konstruojamas priklausomybių medis" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Taisomos priklausomybės..." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Galimos versijos" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " nepavyko." -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Priklausomybių generavimas" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Nepavyko patenkinti priklausomybių" -#: 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-cachefile.cc:102 +#, fuzzy +msgid "Unable to minimize the upgrade set" +msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Ä®vykdyta" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -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." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f." -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %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 "Nebuvo rastas „%s“ leidimas paketui „%s“" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Ä®diegtas]" -#: 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-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Ä®diegtas]" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Nepavyko rasti užduoties %s" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "" -#: 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-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Ä®diegtas]" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Nepavyko rasti paketo %s" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Ä®diegtas]" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:248 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:647 +#: apt-private/private-output.cc:434 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgid "but %s is installed" +msgstr "bet %s yra įdiegtas" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:436 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "but %s is to be installed" +msgstr "bet %s bus įdiegtas" -#: 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:443 +msgid "but it is not installable" +msgstr "tačiau jis negali bÅ«ti į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:445 +msgid "but it is a virtual package" +msgstr "bet tai yra virtualus paketas" -#: 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:448 +msgid "but it is not installed" +msgstr "bet jis nėra įdiegtas" + +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +msgstr "bet jis nebus įdiegtas" + +#: apt-private/private-output.cc:453 +msgid " or" +msgstr " arba" + +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Å ie paketai turi neįdiegtų priklausomybių:" + +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Bus įdiegti Å¡ie NAUJI paketai:" + +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Bus PAÅ ALINTI Å¡ie paketai:" + +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Å ių paketų atnaujinimas sulaikomas:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Bus atnaujinti Å¡ie paketai:" -#: 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:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Bus PAKEISTI SENESNIAIS Å¡ie paketai:" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "Bus pakeisti Å¡ie sulaikyti paketai:" -#: apt-pkg/sourcelist.cc:127 +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (dėl %s) " -#: apt-pkg/sourcelist.cc:170 -#, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +#: apt-private/private-output.cc:675 +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:173 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu atnaujinti, %lu naujai įdiegti, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu įdiegti iÅ¡ naujo, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "" +msgid "%lu downgraded, " +msgstr "%lu pasendinti, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu bus paÅ¡alinta ir %lu neatnaujinta.\n" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu nepilnai įdiegti ar paÅ¡alinti.\n" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -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:740 +msgid "[Y/n]" +msgstr "[T/n]" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -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:746 +msgid "[y/N]" +msgstr "[t/N]" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "T" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" msgstr "" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Atnaujinimo komandai argumentų nereikia" + +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +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/sourcelist.cc:335 +#: apt-private/private-show.cc:156 #, c-format -msgid "Opening %s" -msgstr "Atveriama %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:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -#: apt-pkg/sourcelist.cc:375 -#, c-format -msgid "Type '%s' is not known on line %u in source list %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: apt-pkg/sourcelist.cc:416 -#, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Reikia paÅ¡alinti paketus, tačiau Å¡alinimas iÅ¡jungtas." + +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, c-format -msgid "Installing %s" -msgstr "Ä®diegta %s" +#: apt-private/private-install.cc:150 +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:96 apt-pkg/deb/dpkgpm.cc:996 +#. 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:157 #, c-format -msgid "Configuring %s" -msgstr "KonfigÅ«ruojamas %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:162 #, c-format -msgid "Removing %s" -msgstr "Å alinamas %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "VisiÅ¡kai paÅ¡alintas %s" +msgid "Need to get %sB of archives.\n" +msgstr "Reikia parsiųsti %sB archyvų.\n" -#: apt-pkg/deb/dpkgpm.cc:99 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:169 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +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: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:174 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Po Å¡ios operacijos bus atlaisvinta %sB disko vietos.\n" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-install.cc:202 #, c-format -msgid "Directory '%s' missing" -msgstr "TrÅ«ksta aplanko „%s“" +msgid "You don't have enough free space in %s." +msgstr "%s nėra pakankamai laisvos vietos." -#: 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-install.cc:212 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:989 -#, c-format -msgid "Preparing %s" -msgstr "RuoÅ¡iamas %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "IÅ¡pakuojamas %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:222 +msgid "Yes, do as I say!" +msgstr "Taip, daryk kaip liepiu!" -#: apt-pkg/deb/dpkgpm.cc:995 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing to configure %s" -msgstr "RuoÅ¡iamasi konfigÅ«ruoti %s" +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:997 -#, c-format -msgid "Installed %s" -msgstr "Ä®diegta %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Nutraukti." -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "RuoÅ¡iamasi %s paÅ¡alinimui" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Ar norite tęsti?" -#: apt-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "PaÅ¡alintas %s" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Nepavyko parsiųsti kai kurių failų" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "RuoÅ¡iamasi visiÅ¡kai paÅ¡alinti %s" +#: apt-private/private-install.cc:322 +msgid "" +"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:1010 -#, c-format -msgid "Completely removed %s" -msgstr "VisiÅ¡kai paÅ¡alintas %s" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Nepavyko pataisyti dingusių paketų." + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Diegimas nutraukiamas." -#: 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:368 +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:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:501 +msgid "" +"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:1631 -msgid "No apport report written because MaxReports is reached already" -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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Å i informacija gali padėti iÅ¡spręsti Å¡ią situaciją:" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -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] "Å 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/deb/dpkgpm.cc:1644 -msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "" +#: apt-private/private-install.cc:519 +#, 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-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:521 +#, 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-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:614 +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-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " +"nurodytų paketų (arba nurodykite iÅ¡eitį)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"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/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-install.cc:661 +msgid "Broken packages" +msgstr "Sugadinti paketai" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Bus įdiegti Å¡ie papildomi paketai:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "SiÅ«lomi paketai:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Rekomenduojami paketai:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" +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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:855 +#, 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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "" +msgid "%s is already the newest version.\n" +msgstr "%s ir taip jau yra naujausias.\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:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Pažymėta versija %s (%s) paketui %s\n" -#: 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:925 +#, 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nepavyko rezervuoti rakinimo failo %s" +#: apt-private/private-install.cc:973 +#, 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" -#: 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 "DĖMESIO: Å ie paketai negali bÅ«ti autentifikuoti!" -#: 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" -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ų" -#: 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-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Ä®diegti Å¡iuos paketus be patvirtinimo?" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Procesas %s gavo segmentavimo klaidą" +msgid "Failed to parse %s. Edit again? " +msgstr "Nepavyko pervadinti %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 "Procesas %s grąžino klaidos kodą (%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 "Procesas %s netikėtai išėjo" +#: 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 "Klaida užveriant failą" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Imamas " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Nepavyko atverti failo %s" +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Gauti:" -#: 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/acqprogress.cc:119 +msgid "Ign " +msgstr "Ignoruotas " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Nepavyko sukurti subproceso IPC" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Klaida " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Nepavyko paleisti suspaudėjo " +#: apt-private/acqprogress.cc:147 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Parsiųsta %sB iÅ¡ %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1514 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "read, still have %llu to read but none left" +msgid " [Working]" +msgstr " [Vykdoma]" + +#: apt-private/acqprogress.cc:298 +#, 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/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 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Klaida užveriant failą" - -#: 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 "Klaida sinchronizuojant failą" +msgid "Can not read mirror file '%s'" +msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, 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-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Klaida!" +msgid "No entry found in mirror file '%s'" +msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Baigta" - -#: 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... Baigta" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Nepavyko subprocesui sukurti IPC gijos" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" msgstr "" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Blogi standartiniai nustatymai!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu 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 "Jei norite tęsti, spauskite Enter." + +#: 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 "Nepavyko atverti %s" +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "IÅ¡pakuojant įvyko klaidų. Bandysiu konfigÅ«ruoti" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:103 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Nepavyko pakeisti į %s" +msgid "will be configured. This may result in duplicate errors" +msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" +#: 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:322 -#, fuzzy -msgid "Failed to truncate file" -msgstr "Nepavyko patikrinti %s" - -#: 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 "" +"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:446 -#, c-format -msgid "" -"Unable to increase the size of the MMap as the limit of %lu bytes is already " -"reached." +#: 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/mmap.cc:449 -msgid "" -"Unable to increase size of the MMap as automatic growing is disabled by user." +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" msgstr "" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Unrecognized type abbreviation: '%c'" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Opening configuration file %s" +msgid "Double add of diversion %s -> %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." +msgid "Duplicate conf file %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#, c-format +msgid "The path %s is too long" +msgstr "Kelias %s per ilgas" + +#: apt-inst/extract.cc:132 #, c-format -msgid "Syntax error %s:%u: Malformed tag" +msgid "Unpacking %s more than once" msgstr "" -#: apt-pkg/contrib/configuration.cc:837 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Extra junk after value" +msgid "The directory %s is diverted" msgstr "" -#: apt-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-pkg/contrib/configuration.cc:884 -#, c-format -msgid "Syntax error %s:%u: Too many nested includes" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" msgstr "" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "" +msgid "Failed to stat %s" +msgstr "Nepavyko patikrinti %s" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "" +msgid "Failed to rename %s to %s" +msgstr "Nepavyko pervadinti %s į %s" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-pkg/contrib/configuration.cc:950 -#, c-format -msgid "Syntax error %s:%u: Extra junk at end of file" +#: apt-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" 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:293 +msgid "The path is too long" +msgstr "Kelias per ilgas" -#: apt-pkg/contrib/cmndline.cc:121 +#: 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 =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3078,12 +3091,7 @@ msgstr "" " -c=? Nuskaityti šį konfigÅ«racijų failą\n" " -o=? Nustatyti savarankiÅ¡kas nuostatas, pvz.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nepavyko sukurti %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nepavyko sužinoti debconf versijos. Ar įdiegtas debconf?" @@ -3206,17 +3214,17 @@ msgstr "Nėra atitikmenų" msgid "Some files are missing in the package file group `%s'" msgstr "Kai kurių failų nėra paketų grupėje „%s“" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Duomenų bazė pažeista, failas pervardintas į %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Duomenų bazė yra sena, bandoma atnaujinti %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3225,105 +3233,105 @@ msgstr "" "Duomenų bazės formatas yra netinkamas. Jei jÅ«s atsinaujinote iÅ¡ senesnės " "versijos, praÅ¡ome paÅ¡alinkite ir perkurkite duomenų bazę." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nepavyko atverti DB failo %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Nepavyko nuskaityti nuorodos %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Ä®: Nepavyko perskaityti aplanko %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "Ä®: Nepavyko patikrinti %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "K: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "Ä®: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "K: Klaidos failui " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Nepavyko iÅ¡spręsti %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Judesys medyje nepavyko" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Nepavyko atverti %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Nepavyko nuskaityti nuorodos %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Nepavyko atsieti nuorodos %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nepavyko susieti %s su %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archyvas neturėjo paketo lauko" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s neturi perraÅ¡ymo įraÅ¡o\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s prižiÅ«rėtojas yra %s, o ne %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr "" diff --git a/po/nb.po b/po/nb.po index 7f664ca39..cf75363d5 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian BokmÃ¥l \n" @@ -22,3180 +22,3193 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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" + +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kan ikke lese kildlista." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Tomt pakkelager" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Pakkens lagerfil er ødelagt" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Pakkens lagerfil er av feil versjon (samvirker ikke)" + +#: apt-pkg/pkgcache.cc:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Pakkens lagerfil er ødelagt" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Pakkefila %s er ikke oppdatert." +msgid "This APT does not support the versioning system '%s'" +msgstr "Denne APT støtter ikke versjonssystemet «%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 "Fant ingen pakker" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Pakkelageret ble bygd for en annen arkitektur" -#: 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:324 +msgid "Depends" +msgstr "Avhenger av" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Forutsetter" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "ForeslÃ¥r" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Anbefaler" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Er i konflikt med" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Erstatter" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Nuller" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Ødelegger" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Forbedrer" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "viktig" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "pÃ¥krevet" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "vanlig" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "valgfri" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "tillegg" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Klarer ikke Ã¥ finne pakken %s" +msgid "Index file type '%s' is not supported" +msgstr "Oversiktsfil av typen «%s» støttes ikke" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakkefiler:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Kompileringsfeil i regulært uttrykk - %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 "" -"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Lageret har et uoverensstemmende versjonssystem" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "LÃ¥ste pakker:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Feil oppsto under behandling av %s (FindPkg)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikke funnet)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Installert: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke lÃ¥st til: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Fant ikke pakken %s %s ved behandling av filkrav" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versjonstabell:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Leser pakkelister" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Samler inn filtilbud" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s kompilert pÃ¥ %s %s\n" +msgid "Unable to write to %s" +msgstr "Kan ikke skrive til %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 "" -"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" - -#: 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»" - -#: 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "IO-feil ved lagring av kildekode-lager" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Klarte ikke montere «%s» pÃ¥ «%s»" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +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/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Ikke parvise argumenter" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" 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" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Klarte ikke finne noen pakken med regex «%s»" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "klarte ikke Ã¥ endre navnet, %s (%s -> %s)." -#: 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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hashsummen stemmer ikke" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Feil størrelse" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Ugyldig operasjon %s" + +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Klarte ikke Ã¥ finne pakken %s" +#: apt-pkg/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s satt til manuell installasjon.\n" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s satt til automatisk installasjon.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1827 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"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" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil, problemløser ødela noe" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Klarer ikke Ã¥ lÃ¥se nedlastingsmappa" - -#: 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" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Klarer ikke Ã¥ finne en kildekodepakke for %s" +msgid "GPG error: %s: %s" +msgstr "GPG-feil: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» pÃ¥:\n" -"%s\n" +"Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne pakken " +"selv (fordi arkitekturen mangler)." -#: 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/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"Bruk:\n" -"bzr get %s\n" -"for Ã¥ hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hopper over allerede nedlastet fil «%s»\n" +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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Klarte ikke bestemme ledig plass i %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikke nok ledig plass i %s" +msgid "List directory %spartial is missing." +msgstr "Listemappa %spartial mangler." -#. 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.cc:92 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Trenger Ã¥ skaffe %sB av %sB fra kildekodearkivet.\n" +msgid "Archives directory %spartial is missing." +msgstr "Arkivmappa %spartial mangler." -#. TRANSLATOR: The required 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.cc:100 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Trenger Ã¥ skaffe %sB fra kildekodearkivet.\n" +msgid "Unable to lock directory %s" +msgstr "Klarte ikke lÃ¥se mappa %s" -#: cmdline/apt-get.cc:902 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Fetch source %s\n" -msgstr "Skaffer kildekode %s\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Henter fil %li av %li (%s gjenværende)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Klarte ikke Ã¥ skaffe alle arkivene." - -#: 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-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Henter fil %li av %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "OmgÃ¥r utpakking av allerede utpakket kilde i %s\n" +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 "" +"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. " + +#: 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:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen «%s» mislyktes.\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:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ugyldig oppslag i foretrekksfila %s, manglende pakkehode" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggekommandoen «%s» mislyktes.\n" +msgid "Did not understand pin type %s" +msgstr "Forsto ikke spikring av typen %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprosessen mislyktes" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller null) spesifisert for pin" -#: 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/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +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:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Klarte ikke Ã¥pne fila «%s»" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Klarer ikke Ã¥ skaffe informasjon om bygge-avhengighetene for %s" +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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen avhengigheter.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Bruker CD-ROM monteringspunkt %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 "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Venter pÃ¥ CD-en...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Indentifiserer..." + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Lagret merkelapp: %s \n" -#: cmdline/apt-get.cc:1289 +#: 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 "" -"%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" +"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" + +#: 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?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Fant merkelapp «%s»\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" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: den installerte pakken " -"%s er for ny" +"CD-en er kalt: \n" +"«%s»\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelister..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny kildeliste\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Kildelisteoppføringer for denne CD-en er:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " -"versjoner av pakken %s som oppfyller versjonskravene" +"Pakka %s trenger Ã¥ installeres pÃ¥ nytt, men jeg finner ikke lageret for den." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 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" +"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." + +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Skaper oversikt over avhengighetsforhold" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versjons-kandidater" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Oppretter avhengighetsforhold" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Leser tilstandsinformasjon" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Klarte ikke Ã¥ Ã¥pne StateFile %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Klarte ikke Ã¥ tilfredstille bygg-avhengighetene for %s." +msgid "Failed to write temporary StateFile %s" +msgstr "Klarte ikke Ã¥ skrive midlertidig StateFile %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Klarte ikke Ã¥ behandle forutsetningene for bygging" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Klarer ikke Ã¥ fortolke pakkefila %s (2)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Utgave «%s» av «%s» ble ikke funnet" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versjon «%s» av «%s» ble ikke funnet" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Klarer ikke Ã¥ finne pakken %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Klarte ikke Ã¥ finne oppgave «%s»" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Kobler til %s (%s)" +msgid "Couldn't find any package by glob '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Støttede moduler:" +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"Klarte ikke velge installert eller kandidatversjon fra pakken «%s» siden den " +"har ingen av dem" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:648 +#, 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" -#: 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/cacheset.cc:656 +#, c-format +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" -#: 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" +#: apt-pkg/cacheset.cc:664 +#, 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" -#: 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/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Klarer ikke Ã¥ fortolke Release-fila %s" -#: 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/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Ingen avsnitt i Release-fila %s" -#: cmdline/apt-mark.cc:243 -#, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s er allerede nyeste versjon.\n" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Ingen sjekksumoppføring i Release-fila %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/indexrecords.cc:149 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ventet pÃ¥ %s, men den ble ikke funnet" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldig «Valid-Until»-oppføring i Release-fila %s" -#: 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/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ugyldig «Date»-oppføring i Release-fila %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Klarte ikke Ã¥ Ã¥pne %s" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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)" -#: 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/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)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Klarer ikke Ã¥ lese CD-databasen %s" +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/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/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/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Feil CD-plate" +#: 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/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:208 #, 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." +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Feil pÃ¥ linje %lu i kildelista %s (dist)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk ikke funnet." +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fant ikke fila" - -#: 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" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Klarte ikke Ã¥ sette endringstidspunkt" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logger inn" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Klarte ikke Ã¥ fastslÃ¥ navnet pÃ¥ motparten" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Klarte ikke Ã¥ fastslÃ¥ det lokale navnet" - -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Tjeneren nektet oss Ã¥ kople til og sa: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Feil pÃ¥ %lu i kildelista %s (Absolutt dist)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislykkes, tjeneren sa: %s" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Feil pÃ¥ %lu i kildelista %s (dist fortolking)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislykkes, tjeneren sa: %s" - -#: 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." +msgid "Opening %s" +msgstr "Åpner %s" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen «%s» i innlogginsskriptet mislykkes, tjeneren sa: %s" +msgid "Malformed line %u in source list %s (type)" +msgstr "Feil pÃ¥ %u i kildelista %s (type)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:375 #, 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" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Tjeneren lukket forbindelsen" - -#: 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" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Et svar oversvømte bufferen." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollødeleggelse" - -#: 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" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Klarte ikke Ã¥ opprette en sokkel" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikke Ã¥ kople til datasokkelen, tidsavbrudd pÃ¥ forbindelsen" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Mislyktes" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Klarte ikke Ã¥ koble til en passiv sokkel." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikke Ã¥ opprette en lyttesokkel" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Klarte ikke Ã¥ binde til sokkel" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Klarte ikke Ã¥ lytte til sokkel" - -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Klarte ikke Ã¥ avgjøre sokkelnavnet" +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:792 -msgid "Unable to send PORT command" -msgstr "Klarte ikke Ã¥ sende PORT-kommandoen" +#: 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:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukjent adressefamilie %u (AF_*)" +msgid "Installing %s" +msgstr "Installerer %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 mislykkes, tjeneren sa: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsavbrudd pÃ¥ tilkoblingen til datasokkelen" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Klarte ikke Ã¥ godta tilkoblingen" - -#: 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" +msgid "Configuring %s" +msgstr "Setter opp %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 "Klarte ikke Ã¥ hente fila, tjeneren sa «%s»" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsavbrudd pÃ¥ datasokkelen" +msgid "Removing %s" +msgstr "Fjerner %s" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataoverføringen mislykkes, tjeneren sa «%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" +msgid "Completely removing %s" +msgstr "Fjerner %s fullstendig" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Kobler til %s (%s)" +msgid "Noting disappearance of %s" +msgstr "Legger merke til at %s forsvinner" -#: 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 "Kjører etter-installasjonsutløser %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 "Klarte ikke Ã¥ opprette en sokkel for %s (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" +msgstr "Mappa «%s» mangler" -#: 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 "Klarte ikke Ã¥ starte forbindelsen til %s:%s (%s)." +msgid "Could not open file '%s'" +msgstr "Klarte ikke Ã¥pne fila «%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 "Klarte ikke Ã¥ koble til %s:%s (%s), tidsavbrudd pÃ¥ forbindelsen" +msgid "Preparing %s" +msgstr "Forbereder %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikke Ã¥ koble til %s:%s (%s)." +msgid "Unpacking %s" +msgstr "Pakker ut %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 "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:1064 +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:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, 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:1067 +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:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:1563 +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:1625 +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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "avhengighetsproblemer - lar den være uoppsatt" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1632 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:1638 +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" +#: apt-pkg/deb/dpkgpm.cc:1645 +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/http.cc:561 -msgid "Error writing to file" -msgstr "Feil ved skriving til fil" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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/http.cc:621 -msgid "Select failed" -msgstr "Utvalget mislykkes" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsavbrudd pÃ¥ forbindelsen" +#: 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?" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Feil ved skriving til utfil" +#: 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?" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Venter pÃ¥ hoder" +#. 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," -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Ødelagt hodelinje" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ikke lÃ¥st" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP-tjeneren sendte et ugyldig svarhode" +#. 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" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Length»-hode" +#. 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" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%lim %lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Denne HTTP-tjeneren har ødelagt støtte for omrÃ¥de" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukjent datoformat" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Fant ikke utvalget %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Ødelagte hodedata" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Bruker ikke lÃ¥sing for den skrivebeskyttede lÃ¥sefila %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Forbindelsen mislykkes" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Klarte ikke Ã¥pne lÃ¥sefila %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern feil" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beregner oppgradering... " +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "FÃ¥r ikke lÃ¥st %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Utført" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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:395 +#, 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:413 +#, 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:422 #, 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 "" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Retter pÃ¥ avhengighetsforhold ..." +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislyktes." +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprosessen %s mottok signalet %u." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Klarer ikke Ã¥ rette pÃ¥ avhengighetsforholdene" +#: apt-pkg/contrib/fileutl.cc:847 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/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Klarer ikke Ã¥ minimere oppgraderingsettet" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprosessen %s avsluttet uventet" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Utført" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivefeil" -#: 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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem ved lÃ¥sing av gzip-fila %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Klarte ikke Ã¥pne fila %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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Klarte ikke Ã¥pne fildeskriptor %d" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Klarte ikke Ã¥ opprette underprosessen IPC" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Klarte ikke Ã¥ kjøre komprimeringen" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lesefeil" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installert]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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:248 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Problem closing the file %s" +msgstr "Problem ved lÃ¥sing av fila %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "men %s er installert" +msgid "Problem renaming the file %s to %s" +msgstr "Problem ved endring av navn pÃ¥ fila %s til %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "men %s skal installeres" +msgid "Problem unlinking the file %s" +msgstr "Problem ved oppheving av lenke til fila %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "men lar seg ikke installere" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problem ved oppdatering av fila" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "men er en virtuell pakke" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "men er ikke installert" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s ... Feil" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "men skal ikke installeres" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Ferdig" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" +#. 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:502 -msgid "The following NEW packages will be installed:" -msgstr "Følgende NYE pakker vil bli installert:" +#: 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:528 -msgid "The following packages will be REMOVED:" -msgstr "Følgende pakker vil bli FJERNET:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Klarte ikke duplisere fildeskriptor %i" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Følgende pakker er holdt tilbake:" +#: 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:571 -msgid "The following packages will be upgraded:" -msgstr "Følgende pakker vil bli oppgradert:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Klarte ikke lukke mmap" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Følgende pakker vil bli NEDGRADERT:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Klarte ikke synkronisere mmap" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Følgende pakker vil bli endret:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Klarte ikke lage mmap av %lu bytes" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Klarte ikke forkorte fila %s" + +#: apt-pkg/contrib/mmap.cc:341 #, c-format -msgid "%s (due to %s) " -msgstr "%s (pga. %s) " +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:675 +#: 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 "" -"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!" +"Klarte ikke øke størrelsen pÃ¥ MMap-en siden grensen pÃ¥ %lu byte allerede er " +"nÃ¥dd." -#: apt-private/private-output.cc:706 +#: 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-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu oppgraderte, %lu nylig installerte, " +msgid "Unable to stat the mount point %s" +msgstr "Klarer ikke Ã¥ fastsette monteringspunktet %s" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Klarer ikke Ã¥ fÃ¥ statusen pÃ¥ CD-spilleren" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu installert pÃ¥ nytt, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukjent typeforkortelse: «%c»" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderte, " +msgid "Opening configuration file %s" +msgstr "Åpner oppsettsfila %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu Ã¥ fjerne og %lu ikke oppgradert.\n" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:822 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pakker ikke fullt installert eller fjernet.\n" +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfeil %s:%u: Feil pÃ¥ taggen" -#. 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:740 -msgid "[Y/n]" -msgstr "[J/n]" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" -#. 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:746 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfeil %s:%u: For mange nøstede inkluderte filer" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfeil %s:%u: Inkludert herfra" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "Regex compilation error - %s" -msgstr "Kompileringsfeil i regulært uttrykk - %s" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikke støttet" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Oppdaterings-kommandoen tar ingen argumenter" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-update.cc:90 +#: apt-pkg/contrib/configuration.cc:952 #, 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 "Syntaksfeil %s:%u: Ugyldige angivelser pÃ¥ slutten av fila" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#. 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-show.cc:156 +#: apt-pkg/contrib/cmndline.cc:121 #, 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 "Command line option '%c' [from %s] is not known." +msgstr "Kjenner ikke kommandolinjevalget «%c» (fra %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 "Intern feil, InstallPackages ble kalt med ødelagte pakker!" - -#: 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/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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil, sortering fullførte ikke" +#: 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: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/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#, c-format +msgid "Option %s requires an argument." +msgstr "Valget %s krever et argument." -#. 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "MÃ¥ hente %sB/%sB med arkiver.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "Valg %s: Angivelsen av oppsettselementet mÃ¥ ha en =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "MÃ¥ hente %sB med arkiver.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valget %s mÃ¥ ha et heltallsargument, ikke «%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "Valget «%s» er for langt" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" +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:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Dessverre, ikke nok ledig plass i %s" +msgid "Invalid operation %s" +msgstr "Ugyldig operasjon %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 oppsto problemer og «-y» ble brukt uten «--force-yes»" +#: 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: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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Antall pakkenavn: " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Antall pakkestrukturer: " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Vanlige pakker: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avbryter." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Rent virtuelle pakker: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vil du fortsette?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Enkle virtuelle pakker: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Klarte ikke laste ned alle filene" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Sammensatte virtuelle pakker: " -#: 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»." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Mangler: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Antall unike versjoner: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Klarer ikke Ã¥ rette pÃ¥ manglende pakker." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Antall unike beskrivelser: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Avbryter installasjonen." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Antall avhengighetsforhold: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Antall forhold versjon/fil: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Antall forhold beskrivelse/fil: " -#: 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)" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Antall tilbudte tilknyttinger: " -#: 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 "" -"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:388 +msgid "Total globbed strings: " +msgstr "Antall utvidede strenger: " -#. -#. 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:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Total plass for avhengighetsforhold/versjoner: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Plass brukt av slark: " -#: 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] "" -"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:422 +msgid "Total space accounted for: " +msgstr "Samlet mengde redegjort plass: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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" +msgid "Package file %s is out of sync." +msgstr "Pakkefila %s er ikke oppdatert." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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: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:1306 +msgid "You must give at least one search pattern" +msgstr "Du mÃ¥ oppgi minst ett søkemønster" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " -"angi en løsning)." -#: 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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Pakkefiler:" + +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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." +"Mellomlageret er ikke oppdatert, kan ikke kryssreferere til en pakkefil" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Ødelagte pakker" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "LÃ¥ste pakker:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Følgende ekstra pakker vil bli installert." +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(ikke funnet)" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "ForeslÃ¥tte pakker:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Installert: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Anbefalte pakker" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-private/private-install.cc:825 -#, 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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ingen)" -#: apt-private/private-install.cc:829 -#, 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:1672 +msgid " Package pin: " +msgstr " Pakke lÃ¥st til: " -#: apt-private/private-install.cc:841 -#, 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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versjonstabell:" -#: apt-private/private-install.cc:846 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 er allerede nyeste versjon.\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s for %s kompilert pÃ¥ %s %s\n" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" +#: cmdline/apt-cache.cc:1801 +#, 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/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" +#: 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»" -#. 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" +#: 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/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" +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Klarte ikke montere «%s» pÃ¥ «%s»" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ADVARSEL: Følgende pakker ble ikke autentisert!" +#: 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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentiseringsadvarsel overstyrt.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Ikke parvise argumenter" -#: 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-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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installer disse pakkene uten verifikasjon?" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: 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-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-private/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Klarte ikke finne noen pakken med regex «%s»" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, 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 " -msgstr "Funnet " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hent:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Feil " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hentet %sB pÃ¥ %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Klarte ikke Ã¥ finne pakken %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Arbeider]" +msgid "%s set to manually installed.\n" +msgstr "%s satt til manuell installasjon.\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 satt til automatisk installasjon.\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 "" -"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-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern feil, problemløser ødela noe" -#: 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:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Klarer ikke Ã¥ lÃ¥se nedlastingsmappa" + +#: 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" + +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Unable to change to %s" -msgstr "Klarer ikke Ã¥ endre %s" +msgid "Unable to find a source package for %s" +msgstr "Klarer ikke Ã¥ finne en kildekodepakke for %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 "Ingen speilfil «%s» funnet" - -#. 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 speilfil «%s» funnet" +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" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:791 #, 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" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Feil 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» og fortsett" - -#: 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" - -#: 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." - -#: 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" +"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/filelist.cc:477 +#: cmdline/apt-get.cc:839 #, 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" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hopper over allerede nedlastet fil «%s»\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbel tillegging av avledning %s -> %s" +msgid "Couldn't determine free space in %s" +msgstr "Klarte ikke bestemme ledig plass i %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbel oppsettsfil %s/%s" +msgid "You don't have enough free space in %s" +msgstr "Du har ikke nok ledig plass i %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:893 #, c-format -msgid "The path %s is too long" -msgstr "Stien %s 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: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:898 #, c-format -msgid "Unpacking %s more than once" -msgstr "Pakker ut %s mer enn en gang" +msgid "Need to get %sB of source archives.\n" +msgstr "Trenger Ã¥ skaffe %sB fra kildekodearkivet.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s er avledet" +msgid "Fetch source %s\n" +msgstr "Skaffer kildekode %s\n" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Klarte ikke Ã¥ skaffe alle arkivene." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Avledningsstien er for lang" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "OmgÃ¥r utpakking av allerede utpakket kilde i %s\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Klarte ikke Ã¥ endre navnet pÃ¥ %s til %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Utpakkingskommandoen «%s» mislyktes.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:965 #, 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" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fant ikke knutepunktet i dens hash-spann" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Byggekommandoen «%s» mislyktes.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stien er for lang" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Barneprosessen mislyktes" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriver over pakketreff uten versjon for %s" +#: cmdline/apt-get.cc:1031 +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/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, 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 "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Klarer ikke Ã¥ skaffe informasjon om bygge-avhengighetene for %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "Klarte ikke Ã¥ skrive fila %s" +msgid "%s has no build depends.\n" +msgstr "%s har ingen avhengigheter.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Klarte ikke Ã¥ lukke fila %s" +#: cmdline/apt-get.cc:1296 +#, 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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, 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 "" +"%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/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern feil, fant ikke medlemmet %s" +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/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Kontrollfila kan ikke tolkes" +#: cmdline/apt-get.cc:1376 +#, 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/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ugyldig arkivsignatur" +#: cmdline/apt-get.cc:1382 +#, 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-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Feil ved lesing av arkivmedlemshode" +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Klarte ikke Ã¥ tilfredsstille %s avhengighet for %s: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshode %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Klarte ikke Ã¥ tilfredstille bygg-avhengighetene for %s." -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Ugyldig arkivmedlemshode" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Klarte ikke Ã¥ behandle forutsetningene for bygging" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arkivet er for kort" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Kobler til %s (%s)" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Klarte ikke Ã¥ lese arkivhodene" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Støttede moduler:" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Klarte ikke Ã¥ opprette rør" - -#: 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 "Unknown TAR header type %u, member %s" -msgstr "Ukjent TAR-hode: type %u, medlem %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Klarer ikke finne informasjonom %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +#, 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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kjører dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakkesystemet «%s» støttes ikke" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Klarer ikke bestemme en passende pakkesystemtype" - -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Skrev %i poster.\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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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" -#: 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 "" -"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " -"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Klarte ikke Ã¥ starte" -#. 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-feil: %s: %s" +msgid "Connecting to %s (%s)" +msgstr "Kobler til %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 "" -"Klarte ikke Ã¥ finne en fil for pakken %s. Det kan bety at du mÃ¥ ordne pakken " -"selv (fordi arkitekturen mangler)." +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 "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»" -#. 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 "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" + +#: 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" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Feil ved skriving til fila" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterer CD-ROM ...\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:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Bruker CD-ROM monteringspunkt %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Feil ved lesing fra tjeneren" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Venter pÃ¥ CD-en...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Feil ved skriving til fil" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterer CD-ROM...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Utvalget mislykkes" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Indentifiserer..." +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Tidsavbrudd pÃ¥ forbindelsen" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Lagret merkelapp: %s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Feil ved skriving til utfil" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Leter gjennom CD for indeksfiler...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Venter pÃ¥ hoder" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Ødelagt hodelinje" -#: 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: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:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Fant merkelapp «%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: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:194 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP-tjeneren sendte et ugyldig «Content-Range»-hode" -#: 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:196 +msgid "This HTTP server has broken range support" +msgstr "Denne HTTP-tjeneren har ødelagt støtte for omrÃ¥de" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopierer pakkelister..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Ukjent datoformat" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny kildeliste\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Ødelagte hodedata" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Forbindelsen mislykkes" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " -"som holdes tilbake." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:93 +msgid "Correcting dependencies..." +msgstr "Retter pÃ¥ avhengighetsforhold ..." -#: 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:96 +msgid " failed." +msgstr " mislyktes." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Klarer ikke Ã¥ rette pÃ¥ avhengighetsforholdene" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Klarer ikke Ã¥ minimere oppgraderingsettet" -#: 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:104 +msgid " Done" +msgstr " Utført" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Klarte ikke Ã¥ finne oppgave «%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/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-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Uinnfridde avhengighetsforhold - Prøv «-f»." + +#: 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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Installert]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Følgende pakker har uinnfridde avhengighetsforhold:" -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Følgende NYE pakker vil bli installert:" + +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Følgende pakker vil bli FJERNET:" + +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Følgende pakker er holdt tilbake:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Følgende pakker vil bli oppgradert:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Følgende pakker vil bli NEDGRADERT:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Følgende pakker vil bli endret:" + +#: apt-private/private-output.cc:667 #, 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)" +msgid "%s (due to %s) " +msgstr "%s (pga. %s) " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:675 +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:706 #, 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)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu oppgraderte, %lu nylig installerte, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:710 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu installert pÃ¥ nytt, " -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s (nettadresse)" +msgid "%lu downgraded, " +msgstr "%lu nedgraderte, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Feil pÃ¥ linje %lu i kildelista %s (dist)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu Ã¥ fjerne og %lu ikke oppgradert.\n" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Feil pÃ¥ %lu i kildelista %s (fortolkning av nettadressen)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pakker ikke fullt installert eller fjernet.\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:740 +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:746 +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:757 +msgid "Y" +msgstr "J" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Feil pÃ¥ %lu i kildelista %s (Absolutt dist)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Oppdaterings-kommandoen tar ingen argumenter" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "Åpner %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)" -msgstr "Feil pÃ¥ %u i kildelista %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 "Typen «%s» er ukjent i linje %u i kildelista %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 "Typen «%s» er ukjent i linje %u i kildelista %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 "Installerer %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Intern feil, InstallPackages ble kalt med ødelagte pakker!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Setter opp %s" +#: apt-private/private-install.cc:93 +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:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Fjerner %s" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Intern feil, sortering fullførte ikke" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Fjerner %s fullstendig" +#: apt-private/private-install.cc:150 +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: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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "Legger merke til at %s forsvinner" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "MÃ¥ hente %sB/%sB med arkiver.\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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Kjører etter-installasjonsutløser %s" +msgid "Need to get %sB of archives.\n" +msgstr "MÃ¥ hente %sB med arkiver.\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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "Mappa «%s» mangler" +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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "Klarte ikke Ã¥pne fila «%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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "Forbereder %s" +msgid "You don't have enough free space in %s." +msgstr "Dessverre, ikke nok ledig plass i %s" -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "Pakker ut %s" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Forbereder oppsett av %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "Installerte %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:222 +msgid "Yes, do as I say!" +msgstr "Ja, gjør som jeg sier!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "Forbereder fjerning av %s" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "Fjernet %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Avbryter." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Forbereder Ã¥ fullstendig slette %s" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Vil du fortsette?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Fjernet %s fullstendig" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Klarte ikke laste ned alle filene" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kan ikke skrive til %s" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "«--fix-missing» og bytte av media støttes nÃ¥ ikke" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Klarer ikke Ã¥ rette pÃ¥ manglende pakker." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Avbryter installasjonen." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:368 +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/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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." -#. 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:393 +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-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer at den er en " -"følgefeil fra en tidligere 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: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" +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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-private/private-install.cc:519 +#, 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:521 +#, 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-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" +#: apt-private/private-install.cc:614 +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-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" -"Ingen apport-rapport skrevet fordi feilmeldingen indikerer en «dpkg I/O»-feil" +"Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " +"angi en løsning)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" -"Klarte ikke lÃ¥se den administrative mappen (%s). Bruker en annen prosess den?" +"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-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-install.cc:661 +msgid "Broken packages" +msgstr "Ødelagte pakker" -#. 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-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Følgende ekstra pakker vil bli installert." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ikke lÃ¥st" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "ForeslÃ¥tte pakker:" -#. 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-install.cc:829 +msgid "Recommended packages:" +msgstr "Anbefalte pakker" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "%lit %lim %lis" +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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:855 #, c-format -msgid "%limin %lis" -msgstr "%lim %lis" +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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "%lis" +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" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "Fant ikke utvalget %s" +msgid "%s is already the newest version.\n" +msgstr "%s er allerede nyeste versjon.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:920 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Bruker ikke lÃ¥sing for den skrivebeskyttede lÃ¥sefila %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Utvalgt versjon «%s» (%s) for «%s»\n" -#: 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-install.cc:925 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "Utvalgt 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 "Bruker ikke lÃ¥sing pÃ¥ den nfs-monterte lÃ¥sefila %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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" -#: apt-pkg/contrib/fileutl.cc:223 -#, c-format -msgid "Could not get lock %s" -msgstr "FÃ¥r ikke lÃ¥st %s" +#: apt-private/private-install.cc:973 +#, 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/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 "" +"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: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 "ADVARSEL: Følgende pakker ble ikke autentisert!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentiseringsadvarsel overstyrt.\n" + +#: 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-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installer disse pakkene uten verifikasjon?" + +#: 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:412 +#: 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 "Underprosessen %s mottok et minnefeilsignal." +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Funnet " -#: 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:88 +msgid "Get:" +msgstr "Hent:" -#: 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:119 +msgid "Ign " +msgstr "Ign " -#: 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/acqprogress.cc:123 +msgid "Err " +msgstr "Feil " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem ved lÃ¥sing av gzip-fila %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hentet %sB pÃ¥ %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Could not open file %s" -msgstr "Klarte ikke Ã¥pne fila %s" +msgid " [Working]" +msgstr " [Arbeider]" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/acqprogress.cc:298 #, 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" +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:1373 -msgid "Failed to exec compressor " -msgstr "Klarte ikke Ã¥ kjøre komprimeringen" +#. 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" -#: 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" + +#: 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 " -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Ferdig" +#: 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:184 #, 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 =." -msgstr "Valg %s: Angivelsen av oppsettselementet mÃ¥ ha en =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3220,12 +3233,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkÃ¥rlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan ikke fastslÃ¥ debconf-versjonen. Er debconf installert?" @@ -3344,17 +3352,17 @@ msgstr "Ingen utvalg passet" msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer mangler i pakkegruppa «%s»" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Databasen er ødelagt. Filnavnet er endret til %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Databasen er gammel, forsøker Ã¥ oppgradere %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3362,105 +3370,105 @@ msgstr "" "DB-formatet er ugyldig. Hvis du oppgraderte fra en eldre versjon av apt, " "fjern og sÃ¥ gjenopprett databasen." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Klarte ikke Ã¥ Ã¥pne Databasefila %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Klarte ikke Ã¥ lese lenken %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arkivet har ingen kontrollpost" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Klarte ikke Ã¥ finne en peker" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Klarte ikke Ã¥ lese katalogen %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Klarte ikke Ã¥ fÃ¥ statusen pÃ¥ %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "F:" -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A:" -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "F: Det er feil ved fila" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Klarte ikke Ã¥ slÃ¥ opp %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Klarte ikke Ã¥ finne fram i treet" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Klarte ikke Ã¥ Ã¥pne %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Klarte ikke Ã¥ lese lenken %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Klarte ikke Ã¥ oppheve lenken %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Klarte ikke Ã¥ lenke %s til %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-grensa pÃ¥ %s B er nÃ¥dd.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arkivet har ikke noe pakkefelt" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen overstyringsoppføring\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikeholderen er %s, ikke %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen kildeoverstyringsoppføring\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har ingen binæroverstyringsoppføring heller\n" diff --git a/po/ne.po b/po/ne.po index b25b702e1..3365e2a7c 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@ -17,3126 +17,3139 @@ msgstr "" "Plural-Forms: nplurals=2;plural=(n!=1)\n" "X-Generator: KBabel 1.10.2\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "प्याकेज क्यास फाइल दूषित भयो " + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "प्याकेज क्यास फाइल एउटा अमिल्दो संस्करण हो" + +#: apt-pkg/pkgcache.cc:164 +#, 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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +msgid "Depends" +msgstr "आधारित" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "पिन गरिएका प्याकेजहरू:" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "पुन:आधारित" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(फेला परेन)" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "सुझाव दिन्छ" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " स्थापना भयो:" +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "सिफारिस गर्दछ" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " उमेद्वार:" +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "द्वन्दहरू" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(कुनै पनि होइन)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "बदल्छ" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr "प्याकेज पिन:" +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "वेकायमहरू" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " संस्करण तालिका:" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "महत्वपूर्ण" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "आवश्यक" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "मानक" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "वैकल्पिक" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "अतिरिक्त" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" + +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: cmdline/apt-cache.cc:1749 +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " + +#: apt-pkg/pkgcachegen.cc:286 #, 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" +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: 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/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr " %s मा %s पुन:नामकरण असफल भयो" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "प्याकेज सूचिहरू पढिदैछ" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । " +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "तर्कहरू जोडामा छैन" +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %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:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "प्याकेज फेला पार्न सकिएन %s" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%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:454 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Couldn't find package %s" -msgstr "प्याकेज फेला पार्न सकिएन %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।" -#: 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-pkg/acquire-item.cc:175 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "MD5Sum मेल भएन" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "साइज मेल खाएन" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "अवैध सञ्चालन %s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" 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 "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" +#: apt-pkg/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" -msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"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:843 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1972 #, c-format -msgid "Couldn't determine free space in %s" -msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" +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:882 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "You don't have enough free space in %s" -msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" +msgid "Can't find a source to download version '%s' of '%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:2074 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" +msgid "" +"The package index files are corrupted. No Filename: field for package %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 -#: cmdline/apt-get.cc:896 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "स्रोत फड्काउनुहोस् %s\n" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "केही संग्रह फड्काउन असफल भयो ।" +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "आंशिक संग्रह डाइरेक्ट्री %s हराइरहेछ ।" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" -#: cmdline/apt-get.cc:950 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:927 #, c-format -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 "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" +msgid "Retrieving file %li of %li" +msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "निर्माण आदेश '%s' असफल भयो ।\n" +msgid "Failed to fetch %s %s\n" +msgstr "%s %s तान्न असफल भयो\n" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -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:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "तपाईँको स्रोत सूचिमा केही 'source' URIs राख्नुहोस्" -#: cmdline/apt-get.cc:1054 +#: 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 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन" -#: 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 "%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:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" - -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -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 "" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 #, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "फाइल %s खोल्न सकिएन" + +#: apt-pkg/packagemanager.cc:584 +#, 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 -#, fuzzy, c-format -msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" +#: 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 +#, fuzzy +msgid "Unmounting CD-ROM...\n" +msgstr "सिडी रोम अनमाउन्ट गरिदैछ..." -#: cmdline/apt-get.cc:1380 +#: 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" + +#: 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 "परिचय गराइदैछ..." -#: cmdline/apt-get.cc:1395 +#: 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 +#: apt-pkg/cdrom.cc:734 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) मा जडान गरिदैछ" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "समर्थित मोड्युलहरू:" +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:744 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 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" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n" -#: cmdline/apt-helper.cc:66 +#: 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 "" +"यो डिस्कको नाम:\n" +"'%s'\n" -#: 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:819 +msgid "Copying package lists..." +msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..." -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "तर %s स्थापना हुनुपर्यो" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\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:874 +msgid "Source list entries for this disc are:\n" +msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" -#: cmdline/apt-mark.cc:241 +#: 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-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " +"कारणले गर्दा हो ।" + +#: 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 +#, 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:169 #, 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:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (२)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "प्याकेज %s तोक्न असक्षम भयो" + +#: apt-pkg/cacheset.cc:604 #, 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:610 #, 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:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "प्याकेज फेला पार्न सकिएन %s" + +#: apt-pkg/cacheset.cc:627 +#, 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:634 apt-pkg/cacheset.cc:641 +#, 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:648 +#, 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:656 #, 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:664 +#, 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:83 +#, fuzzy, c-format +msgid "Unable to parse Release file %s" +msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" -#: methods/cdrom.cc:249 +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" + +#: apt-pkg/indexrecords.cc:136 #, 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:149 +#, 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:168 +#, 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" - -#: 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 "वैरुप्य लाइन %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 "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "टाइप असफल भयो: %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 -msgid "Failed" -msgstr "असफल भयो" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "निस्क्रिय सकेट जडान गर्न सकिएन" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s खोलिदैछ" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "सकेट बाँध्न सकिएन" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -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:760 -msgid "Could not determine the socket's name" -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:792 -msgid "Unable to send PORT command" -msgstr "पोर्ट आदेश पठाउन असक्षम भयो" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " %s स्थापना भयो" -#: methods/ftp.cc:802 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" +msgid "Configuring %s" +msgstr " %s कनफिगर गरिदैछ" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, 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 "जडान स्वीकार गर्न असक्षम भयो" +msgid "Removing %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:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr " %s पूर्ण रुपले हट्यो" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:99 #, 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 "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" +msgid "Running post-installation trigger %s" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -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:1128 -msgid "Unable to invoke " -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/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) मा जडान गर्न सकिएन, जडान समय सकियो" +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 "'%s' हल गर्न सकिएन" +msgid "Completely removed %s" +msgstr " %s पूर्ण रुपले हट्यो" -#: methods/connect.cc:205 -#, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' हल गर्दा अस्थायी असफल" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" +msgid "Can not write log (%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:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "%s %s मा जडान गर्न असफल भयो:" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "आन्तरिक त्रुटि: असल हस्ताक्षर, तर कुञ्जी औठाछाप निर्धारण गर्न सकिएन?!" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "कम्तिमा एउटा अवैध हस्ताक्षर विरोध भयो ।" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +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:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 -#, c-format +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv कार्यन्वयन गर्दा अज्ञात त्रुटि" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "निम्न हस्ताक्षरहरू अवैध छन्:\n" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 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 an issue on the " +"local system" 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:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -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:626 -msgid "Connection timed out" -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:649 -msgid "Error writing to output 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 "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "हेडरहरुको लागि पर्खिदैछ" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +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 "" -#: 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 "" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: 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:191 +#, 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:196 +#, 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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "आन्तरिक त्रुटि" +#: apt-pkg/contrib/fileutl.cc:224 +#, 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:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "काम भयो" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:413 +#, 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:422 +#, 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:841 #, 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:843 +#, 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:847 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:849 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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: 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:951 +#, 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:1139 +#, 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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो" + +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "त्रुटि पढ्नुहोस्" + +#: apt-pkg/contrib/fileutl.cc:1552 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [स्थापना भयो]" +msgid "read, still have %llu to read but none left" +msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [स्थापना भयो]" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन " -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "फाइल बन्द गर्दा समस्या" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [स्थापना भयो]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "फाइल गुप्तिकरण गर्दा समस्या" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [स्थापना भयो]" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "फाइल अनलिङ्क गर्दा समस्या" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "फाइल गुप्तिकरण गर्दा समस्या" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s स्थिर गर्न असक्षम भयो" -#: apt-private/private-output.cc:434 +#: 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:436 +#: 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:443 -msgid "but it is not installable" -msgstr "तर यो स्थापनायोग्य छैन" - -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "तर यो अवास्तविक प्याकेज होइन" - -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "तर यो स्थापना भएन" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -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:453 -msgid " or" -msgstr "वा" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "एउटा खाली फाइल mmap बनाउन सकिएन" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "निम्न प्याकेजहरुले निर्भरताहरू भेटेनन्:" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "%s को लागि पाइप खोल्न सकिएन" -#: apt-private/private-output.cc:502 -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:528 -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:550 -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:571 -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:592 -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:612 -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:667 +#: 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:675 +#: 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:706 +#: 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:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "सिडी रोम स्थिर गर्न असफल भयो" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu पुन: स्थापना गरियो, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu स्तर कम गरियो, " +msgid "Opening configuration file %s" +msgstr "कनफिगरेसन फाइल खोलिदैछ %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, 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:718 +#: apt-pkg/contrib/configuration.cc:822 #, 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:740 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:746 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:879 +#, 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:757 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/configuration.cc:886 +#, 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:763 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:899 #, 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:902 +#, 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:952 #, 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-update.cc:94 -msgid "All packages are up to date." -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-show.cc:156 +#: apt-pkg/contrib/cmndline.cc:121 #, 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)" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "आदेश लाइन विकल्प '%c' [%s बाट] ज्ञात छैन ।" -#: apt-private/private-install.cc:82 -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:91 -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:110 -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:148 -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 =." +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:155 +#: 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:160 +#: 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:167 -#, fuzzy, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +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:172 -#, fuzzy, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "अवैध सञ्चालन %s" -#: apt-private/private-install.cc:200 +#: 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 संग एउटा नभेटिएको dep छ:\n" -#: 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-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -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-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-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "परित्याग गर्नुहोस् ।" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "कूल प्याकेज नामहरू :" -#: apt-private/private-install.cc:243 +#: cmdline/apt-cache.cc:319 #, fuzzy -msgid "Do you want to continue?" -msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " - -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" - -#: 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-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" - -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" - -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "स्थापना परित्याग गरिदैछ ।" +msgid "Total package structures: " +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] "" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " सामान्य प्याकेजहरू:" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr "शुद्ध अवास्तविक प्याकेजहरू:" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " एकल अवास्तविक प्याकेजहरू:" -#: 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 "" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +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 "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " हराइरहेको:" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "कूल भिन्न संस्करणहरू:" -#: apt-private/private-install.cc:513 +#: cmdline/apt-cache.cc:367 #, 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] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" - -#: 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] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" +msgid "Total distinct descriptions: " +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] "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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:372 +msgid "Total ver/file relations: " +msgstr "जम्मा ver/file सम्बन्धहरू: " -#: 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:374 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "जम्मा ver/file सम्बन्धहरू: " -#: 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" -" भएको छैन वा आवगमन विनानै सर्यो ।" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "कूल उपलब्ध मानचित्रणहरू:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "भाँचिएका प्याकेजहरू" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "कूल विश्वव्यापी स्ट्रिङ्गहरू:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "कूल निर्भरता संस्करण खाली ठाऊँ:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "सुझाव दिएका प्याकेजहरू:" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "कूल शिथिल खाली ठाऊँ:" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "सिफारिस गरिएका प्याकेजहरू:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "को लागि कूल खाली ठाऊँ लेखांकन:" -#: apt-private/private-install.cc:825 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" - -#: 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" +msgid "Package file %s is out of sync." +msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "तपाईँले एउटा वास्तविक बान्की दिनुपर्छ" -#: apt-private/private-install.cc:894 -#, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +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" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +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" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "क्यास sync भन्दा बाहिर छ, प्याकेज फाइल x-ref गर्न सक्दैन" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +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 "" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(फेला परेन)" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! " +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " स्थापना भयो:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(कुनै पनि होइन)" -#: apt-private/private-download.cc:50 -#, fuzzy -msgid "Install these packages without verification?" -msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " संस्करण तालिका:" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr " %s मा %s पुन:नामकरण असफल भयो" - -#: apt-private/private-sources.cc:70 -#, 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 को लागि %s %s, %s %s मा कम्पाएल गरिएको छ\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-cache.cc:1801 +#, 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-private/acqprogress.cc:66 -msgid "Hit " -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/acqprogress.cc:90 -msgid "Get:" -msgstr "प्राप्त गर्नुहोस्:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr " %s मा %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 (%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 "" -"मेडिया परिवर्तन: कृपया डिस्क लेबुल ड्राइभ '%s' मा घुसाउनुहोस्\n" -" '%s'\n" -"र इन्टर थिच्नुहोस्\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 कनफिग फाइल पढ्नको लागि apt-config साधारण उपकरण हो\n" +"\n" +"आदेशहरू:\n" +" शेल - शेल मोड\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 "जडान असमायिक बन्द भयो" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "प्याकेज फेला पार्न सकिएन %s" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "खराब पूर्वनिर्धारण सेटिङ्ग!" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +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 "निरन्तरता दिन इन्टर थिच्नुहोस् ।" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, c-format +msgid "%s set to automatically installed.\n" +msgstr "तर %s स्थापना हुनुपर्यो" -#: 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 "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु" +#: 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" -msgstr "वा त्रुटि हरटाइरहेको निर्भरताहरुले गरेको हो । यो ठीक छ, मात्र त्रुटिहरू" +#: 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:1091 +#, 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]फेरी स्थापना " -"गर्नुहोस्" - -#: 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 +#: 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:839 #, 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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, 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:884 #, 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:893 #, 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:898 #, 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:904 #, 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:922 +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 -#, c-format -msgid "Failed to stat %s" -msgstr " %s स्थिर गर्न असफल" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to rename %s to %s" -msgstr " %s मा %s पुन:नामकरण असफल भयो" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:964 #, 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 "बाटो अति लामो छ" +msgid "Unpack command '%s' failed.\n" +msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr " %s को लागि संस्करन बिना अधिलेखन प्याकेज मेल खायो" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:993 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ" +msgid "Build command '%s' failed.\n" +msgstr "निर्माण आदेश '%s' असफल भयो ।\n" -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "%s स्थिर गर्न असक्षम भयो" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +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:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1056 #, 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:1103 cmdline/apt-get.cc:1106 #, 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:1126 #, 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:1296 +#, 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:1314 +#, 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:1337 +#, 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:1376 #, 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:1382 +#, 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:1405 +#, 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:1420 +#, 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:1425 +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:1518 cmdline/apt-get.cc:1530 +#, 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:1616 +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:1657 +#, 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/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 "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 स्थापना हुनुपर्यो" -#: 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 अद्यावधिक चलाउन चाहनुहुन्छ" +#: 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 ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । 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 "यो 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 "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन" -#: 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 प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" +#: 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 "वाऊ, 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 -#, fuzzy -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 "निस्क्रिय सकेट जडान गर्न सकिएन" -#: 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 "सकेट बाँध्न सकिएन" -#: 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 मा लेख्न असक्षम" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "डेटा सकेटको जडान समय सकियो" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "जडान स्वीकार गर्न असक्षम भयो" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "समस्या द्रुतान्वेषण फाइल" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:890 #, 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 "साइज मेल खाएन" +msgid "Unable to fetch file, server said '%s'" +msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "अवैध सञ्चालन %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "डेटा सकेट समय सकियो" -#: 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 "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "क्वेरी" -#: 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:1128 +msgid "Unable to invoke " +msgstr "आह्वान गर्न असक्षम भयो" -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" +#: methods/connect.cc:76 +#, c-format +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 "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" +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:496 +msgid "Bad header data" +msgstr "खराब हेडर डेटा" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "जडान असफल भयो" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, c-format msgid "" -"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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " -"कारणले गर्दा हो ।" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" +#: methods/server.cc:692 +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 -#, fuzzy -msgid "Reading state information" -msgstr "उपलब्ध सूचना गाँभिदैछ" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "%s खोल्न असफल" +#: apt-private/private-list.cc:156 +#, 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:256 -#, fuzzy, 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 (१)" +#: 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 (२)" +#: 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-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:233 #, 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [स्थापना भयो]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: 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 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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:612 +msgid "The following held packages will be changed:" +msgstr "निम्न भइरहेको प्याकेजहरू परिवर्तन हुनेछैन:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:667 #, 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 +#: apt-private/private-output.cc:675 +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:706 #, 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:710 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (पूर्ण dist)" +msgid "%lu reinstalled, " +msgstr "%lu पुन: स्थापना गरियो, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" +msgid "%lu downgraded, " +msgstr "%lu स्तर कम गरियो, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:714 #, 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:718 #, 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:740 +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:746 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:95 -#, fuzzy, 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:757 +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:763 +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 +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!" + +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।" + +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" + +#: apt-private/private-install.cc:150 +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:157 #, c-format -msgid "Running post-installation trigger %s" -msgstr "" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "संग्रहहरुको %sB/%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:162 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "संग्रहहरुको %sB प्राप्त गर्न आवश्यक ।\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:169 #, fuzzy, 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:174 #, 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:202 #, 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:212 apt-private/private-download.cc:59 +msgid "There are problems and -y was used without --force-yes" +msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr " %s कनफिगर गर्न तयार गरिदैछ" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "हो,मैले भने जस्तै गर्नुहोस्!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "परित्याग गर्नुहोस् ।" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ" +#: apt-private/private-install.cc:245 +#, fuzzy +msgid "Do you want to continue?" +msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr " %s पूर्ण रुपले हट्यो" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "स्थापना परित्याग गरिदैछ ।" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " + +#: apt-private/private-install.cc:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " + +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a disk full " -"error" -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-private/private-install.cc:519 +#, 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/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:521 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: 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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " +"समाधान निर्दिष्ट गर्नुहोस्) ।" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"केही प्याकेजहरू स्थापना हुन सक्दैन । यसको मतलब तपाईँले\n" +" एउटा असम्भव अवास्थाको अनुरोध गर्नु भएको छ वा यदि तपाईँले प्रयोग गर्नु भइरहेको केहि " +"प्याकेजहरुको आवश्यकता पर्ने अस्थिर\n" +" वितरण अहिले सम्म सिर्जना\n" +" भएको छैन वा आवगमन विनानै सर्यो ।" -#: 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:661 +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 "" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested 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 "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "सिफारिस गरिएका प्याकेजहरू:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "" +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 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:855 +#, fuzzy, c-format +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:867 #, c-format -msgid "%lis" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "ताल्चा मारिएको फाइल मात्र पढ्नको लागि ताल्चा मार्न प्रयोग गरिएको छैन %s" +#: apt-private/private-install.cc:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "ताल्चा मारिएको फाइल खोल्न सकिएन %s" +#: apt-private/private-install.cc:925 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: apt-pkg/contrib/fileutl.cc:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "nfs माउन्ट गरिएको लक फाइलको लागि लक प्रयोग गरिएको छैन %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "ताल्चा प्राप्त गर्न सकिएन %s" +#: apt-private/private-install.cc:973 +#, fuzzy, c-format +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 ले खण्डिकरण गल्ति प्राप्त भयो ।" +#: apt-private/private-download.cc:50 +#, fuzzy +msgid "Install these packages without verification?" +msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" +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 "हान्नुहोस्" -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "फाइल %s खोल्न सकिएन" +#: apt-private/acqprogress.cc:88 +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:119 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "सहायक प्रक्रिया IPC सिर्जना गर्न असफल" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "सङ्कुचनकर्ता कार्यान्वयन गर्न असफल भयो" +#: apt-private/acqprogress.cc:147 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%s (%sB/s) मा %sB मा तानियो\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:237 +#, 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:298 +#, 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" -#: 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 "%lu बाइटहरुको 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:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "%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 "आह्वान गर्न असक्षम भयो" - -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" +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)" -msgstr "" +#: 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:184 #, 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 =." -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 "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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3160,12 +3173,7 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s स्थिर गर्न असक्षम भयो" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr " debconf संस्करण प्राप्त गर्न सकिएन । के debconf स्थापना भयो ? " @@ -3285,121 +3293,121 @@ msgstr "कुनै चयनहरू मेल खाएन" msgid "Some files are missing in the package file group `%s'" msgstr "केही फाइलहरू प्याकेज फाइल समूह `%s' मा हराइरहेको छ" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB दूषित थियो, फाइल %s.पुरानो मा पुन:नामकरण गर्नुहोस्" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB पुरानो छ, %s स्तरवृद्धि गर्न प्रयास गरिदैछ" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "DB फाइल %s असक्षम भयो: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "लिङ्क पढ्न असफल %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "संग्रह संग नियन्त्रण रेकर्ड छैन" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "कर्सर प्राप्त गर्न असक्षम भयो" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: डाइरेक्ट्री %s पढ्न असक्षम\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s स्थिर गर्न असक्षम\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: फाइलमा त्रुटिहरू लागू गर्नुहोस्" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s हल गर्न असफल भयो" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "ट्री हिडाईँ असफल भयो" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s खोल्न असफल" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "लिङ्क पढ्न असफल %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "अनलिङ्क गर्न असफल %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s मा %s लिङ्क असफल भयो" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr "यस %sB हिटको डि लिङ्क सिमा।\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "संग्रह संग कुनै प्याकेज फाँट छैन" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s संभारकर्ता %s हो %s होइन\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" diff --git a/po/nl.po b/po/nl.po index 849ba3838..d211aeca7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" @@ -21,3242 +21,3255 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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" + +#: 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:150 +msgid "Empty package cache" +msgstr "Lege pakketcache" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Het pakketcachebestand is beschadigd" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Het pakketcachebestand heeft een niet-compatibele versie" + +#: apt-pkg/pkgcache.cc:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Het pakketcachebestand is beschadigd" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Pakketbestand %s is niet meer gesynchroniseerd." +msgid "This APT does not support the versioning system '%s'" +msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" -#: 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/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "De pakketcache was aangemaakt voor een andere architectuur" -#: 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:324 +msgid "Depends" +msgstr "Vereisten" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Voor-Vereisten" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Suggesties" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Aanbevelingen" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Conflicteert met" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Vervangt" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Verouderd" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Breekt" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Vult aan" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "belangrijk" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "noodzakelijk" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standaard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "optioneel" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Kan pakket %s niet vinden" +msgid "Index file type '%s' is not supported" +msgstr "Indexbestand van type '%s' wordt niet ondersteund" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Pakketbestanden:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex-compilatiefout - %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 "Cache loopt niet synchroon, kan pakketbestand niet 'x-ref'-en" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Cache heeft een niet-compatibel versienummeringssysteem" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Vastgepinde pakketten:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fout tijdens verwerken van %s (FindPkg)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(niet gevonden)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Geïnstalleerd: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidaat: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(geen)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakketpin: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versietabel:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Pakketlijsten worden ingelezen" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Voorziene bestanden worden verzameld" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s voor %s gecompileerd op %s %s\n" +msgid "Unable to write to %s" +msgstr "Kan niet naar %s schrijven" -#: 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" -#: cmdline/apt-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " -"Schijf 1'" - -#: 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" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Aankoppelen van '%s' op '%s' is mislukt" - -#: 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/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: 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." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenten niet in paren" - -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" 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" - -#: 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'" -#: 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/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: 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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "herbenoeming is mislukt, %s (%s -> %s)." -#: 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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash-som komt niet overeen" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Kon pakket %s niet vinden" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Grootte komt niet overeen" -#: 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 is ingesteld voor handmatige installatie.\n" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Ongeldige operatie %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s is ingesteld op automatische geïnstalleerd.\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." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: 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/acquire-item.cc:1697 +#, 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:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Kon de ophaalmap niet vergrendelen" +#: apt-pkg/acquire-item.cc:1737 +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:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1775 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." 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 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kan geen bronpakket vinden voor %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"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 "" -"MERK OP: Het verpakken van '%s' wordt bijgehouden in het versiebeheersysteem " -"'%s' op:\n" +"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:791 -#, fuzzy, c-format +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-fout: %s: %s" + +#: apt-pkg/acquire-item.cc:1972 +#, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\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 "" -"Gebruik:\n" -"bzr get %s\n" -"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " -"te halen.\n" +"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:843 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" +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." -#: cmdline/apt-get.cc:882 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "You don't have enough free space in %s" -msgstr "U heeft niet voldoende vrije schijfruimte op %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Verkopersblok %s bevat geen vingerafdruk" -#. 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.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" +msgid "List directory %spartial is missing." +msgstr "Lijstmap %spartial is afwezig." -#. TRANSLATOR: The required 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.cc:92 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Moet %sB aan bronarchieven ophalen.\n" +msgid "Archives directory %spartial is missing." +msgstr "Archiefmap %spartial is afwezig." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "Fetch source %s\n" -msgstr "Ophalen bron %s\n" +msgid "Unable to lock directory %s" +msgstr "Kan de map %s niet vergrendelen" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Ophalen van sommige archieven is mislukt." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" -#: 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-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Bestand %li van %li wordt opgehaald" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, 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 "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 "" +"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." + +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Uitpakopdracht '%s' is mislukt.\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:963 +#: apt-pkg/policy.cc:422 #, 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 "Invalid record in the preferences file %s, no Package header" +msgstr "" +"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Bouwopdracht '%s' is mislukt.\n" +msgid "Did not understand pin type %s" +msgstr "Pintype %s wordt niet begrepen" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Dochterproces is mislukt" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"U dient tenminste één pakket op te geven om de bouwvereisten van te " -"controleren" +"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " +"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Kon het bestand '%s' niet openen" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" +msgid "Line %u too long in source list %s." +msgstr "Regel %u van de bronlijst %s is te lang." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD wordt afgekoppeld...\n" + +#: 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" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Er wordt gewacht op de schijf...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "CD wordt aangekoppeld...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificatie..." -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s heeft geen bouwvereisten.\n" +msgid "Stored label: %s\n" +msgstr "Opgeslagen label: %s \n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Er wordt gescand voor indexbestanden...\n" + +#: apt-pkg/cdrom.cc:734 +#, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +"Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " +"handtekeningen gevonden\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +"Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " +"verkeerde architectuur?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Label '%s' gevonden\n" + +#: 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" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s " -"is te nieuw" +"De schijf heet:\n" +"'%s'\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Pakketlijsten worden gekopieerd..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Nieuwe bronlijst wordt weggeschreven\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Bronlijst-ingangen voor de schijf zijn:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." 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" +"Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " +"gevonden worden." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " -"onvindbaar is" +"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " +"veroorzaakt worden door vastgehouden pakketten." -#: cmdline/apt-get.cc:1380 +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Boom van vereisten wordt opgebouwd" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidaat-versies" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generatie vereisten" + +#: 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-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" +msgid "Failed to open StateFile %s" +msgstr "Openen van StateFile %s is mislukt" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Bouwvereisten voor %s konden niet voldaan worden." +msgid "Failed to write temporary StateFile %s" +msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Verwerken van de bouwvereisten is mislukt" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Kon pakketbestand %s niet ontleden (1)" -#: 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/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Kon pakketbestand %s niet ontleden (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Ondersteunde modules:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' voor '%s' is niet gevonden" -#: 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" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versie '%s' voor '%s' is niet gevonden" -#: 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/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Kan pakket %s niet vinden" -#: 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/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Kon taak '%s' niet vinden" -#: 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:610 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Er is gewacht op %s, maar die kwam niet" +msgid "Couldn't find any package by regex '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s is ingesteld voor handmatige installatie.\n" +msgid "Couldn't find any package by glob '%s'" +msgstr "Kon geen enkel pakket vinden bij regex '%s'" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:627 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Openen van %s is mislukt" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +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" -#: cmdline/apt-mark.cc:392 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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 "" +"Kan noch de geïnstalleerde, noch de kandidaat-versie van het pakket '%s' " +"selecteren omdat deze geen van beide heeft" -#: 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:648 +#, 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/cdrom.cc:203 +#: apt-pkg/cacheset.cc:656 #, 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" +msgid "Can't select candidate version from package %s as it has no candidate" 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" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Verkeerde CD" +"Kan de kandidaat-versie van het pakket %s niet selecteren omdat deze geen " +"kandidaat heeft" -#: methods/cdrom.cc:249 +#: apt-pkg/cacheset.cc:664 #, 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 "" -"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" +"Kan de geïnstalleerde versie van het pakket %s niet selecteren omdat deze " +"niet geïnstalleerd is" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Bestand niet gevonden" +#: apt-pkg/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Kon Release-bestand %s niet ontleden" -#: 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/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Geen secties in Release-bestand %s" -#: 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" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Geen Hash-vermelding in Release-bestand %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Geen 'Valid-Until'-vermelding in Release-bestand %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Bezig met aanmelden" +#: apt-pkg/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Geen 'Date'-vermelding in Release-bestand %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kan de 'peer'-naam niet bepalen" +#: 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/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kan de lokale naam niet bepalen" +#: 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/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Onze verbinding is door de server geweigerd met bericht: %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Misvormde regel %lu in bronlijst %s ([optie] te kort)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislukt; bericht van server: %s" +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/ftp.cc:232 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislukt; bericht van server: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Misvormde regel %lu in bronlijst %s ([%s] heeft geen sleutel)" -#: 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 "" -"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" -"ProxyLogin is leeg." +"Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Misvormde regel %lu in bronlijst %s (URI)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:208 #, 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 -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" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Misvormde regel %lu in bronlijst %s (dist)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kon geen socket binden" +#: 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/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kon niet op de socket niet luisteren" +#: 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/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kon de socketnaam niet bepalen" +#: 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/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kan PORT-commando niet verzenden" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "%s wordt geopend" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Onbekende adresfamilie %u (AF_*)" +msgid "Malformed line %u in source list %s (type)" +msgstr "Misvormde regel %u in bronlijst %s (type)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT is mislukt; bericht van server: %s" +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/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Datasocket verbinding is verlopen" +#: 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/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kan de verbinding niet aanvaarden" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "%s wordt geïnstalleerd" -#: 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/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "%s wordt geconfigureerd" -#: 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 "Kan bestand niet ophalen; bericht van server: %s" +msgid "Removing %s" +msgstr "%s wordt verwijderd" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datasocket verliep" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s wordt volledig verwijderd" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Data transfer is mislukt, server zei: %s" +msgid "Noting disappearance of %s" +msgstr "De verdwijning van %s wordt opgemerkt" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Zoekopdracht" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Post-installatie-trigger %s wordt uitgevoerd" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Aanroepen mislukt van " +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Map '%s' ontbreekt" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Er wordt verbinding gemaakt met %s (%s)" +msgid "Could not open file '%s'" +msgstr "Kon het bestand '%s' niet openen" -#: 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 wordt voorbereid" -#: 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 "Kon de socket voor %s (f=%u t=%u p=%u) niet aanmaken" +msgid "Unpacking %s" +msgstr "%s wordt uitgepakt" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." +msgid "Preparing to configure %s" +msgstr "Configuratie van %s wordt voorbereid" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:997 #, 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 "Installed %s" +msgstr "%s is geïnstalleerd" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Kon niet verbinden met %s:%s (%s)." +msgid "Preparing for removal of %s" +msgstr "Verwijdering van %s wordt voorbereid" -#. 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 "Er wordt verbinding gemaakt met %s" +msgid "Removed %s" +msgstr "%s is verwijderd" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Kon '%s' niet vinden" +msgid "Preparing to completely remove %s" +msgstr "Volledige verwijdering van %s wordt voorbereid" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tijdelijke fout bij het opzoeken van '%s'" +msgid "Completely removed %s" +msgstr "%s is volledig verwijderd" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" +msgid "Can not write log (%s)" +msgstr "Kan niet naar %s schrijven" -#: 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/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Kan geen verbinding maken met %s %s:" +msgid "Waited for %s but it wasn't there" +msgstr "Er is gewacht op %s, maar die kwam niet" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" msgstr "" -"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" -"niet bepalen?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Er is tenminste één ongeldige ondertekening gevonden." +#: apt-pkg/deb/dpkgpm.cc:1625 +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" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problemen met vereisten - wordt niet geconfigureerd" + +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." msgstr "" -"Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " -"geïnstalleerd?)" +"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " +"eerdere mislukking." -#. 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 a disk full " +"error" msgstr "" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout is " +"over een volle schijf." -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Onbekende fout bij het uitvoeren van gpgv" +#: apt-pkg/deb/dpkgpm.cc:1645 +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." -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "De volgende ondertekeningen waren ongeldig:\n" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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." -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1679 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 "" -"De volgende ondertekeningen konden niet geverifieerd worden omdat de " -"publieke sleutel niet beschikbaar is:\n" +"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " +"dpkg-I/O is." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" +#: 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?" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fout bij het schrijven naar het bestand" +#: 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?" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" +#. 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 "" -"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" +"dpkg werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fout bij het lezen van de server" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Niet vergrendeld" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fout bij het schrijven naar bestand" +#. 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" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Selectie is mislukt" +#. 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" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Verbinding verliep" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fout bij het schrijven naar het uitvoerbestand" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Wachtend op de kopteksten" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Selectie %s niet gevonden" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Foute koptekstregel" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" +"vergrendelingsbestand %s" -#: 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/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kon het vergrendelingsbestand '%s' niet openen" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" -"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" +"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Kon vergrendeling %s niet verkrijgen" + +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Onbekend datumformaat" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Foute koptekstdata" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Verbinding mislukt" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Subproces %s ontving een segmentatiefout." -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Interne fout" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Subproces %s ontving signaal %u." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Opwaardering wordt doorgerekend... " +#: apt-pkg/contrib/fileutl.cc:847 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-upgrade.cc:28 -msgid "Done" -msgstr "Klaar" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Subproces %s sloot onverwacht af" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Schrijffout" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Probleem bij het afsluiten van het gzip-bestand %s" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:1139 #, 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 "Could not open file %s" +msgstr "Kon het bestand %s niet openen" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Vereisten worden gecorrigeerd..." +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Kon de bestandsindicator %d niet openen" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " mislukt." +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Aanmaken subproces-IPC is mislukt" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kan vereisten niet corrigeren" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Uitvoeren van de compressor is mislukt " -#: 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/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Leesfout" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Klaar" - -#: 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-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." - -#: 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:233 +#: apt-pkg/contrib/fileutl.cc:1552 #, 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 "read, still have %llu to read but none left" +msgstr "lees, de laatste te lezen %lu zijn niet beschikbaar" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "schrijf, de laatste %lu konden niet weggeschreven worden" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Probleem bij het afsluiten van het bestand %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Geïnstalleerd]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Probleem bij het hernoemen van '%s' naar '%s'" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem unlinking the file %s" +msgstr "Probleem bij het ontlinken van het bestand %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Probleem bij het synchroniseren van het bestand" -#: apt-private/private-output.cc:434 -#, c-format -msgid "but %s is installed" -msgstr "maar %s is geïnstalleerd" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Kan de status van %s niet opvragen" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is to be installed" -msgstr "maar %s zal geïnstalleerd worden" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "maar het is niet installeerbaar" +msgid "%c%s... Error!" +msgstr "%c%s... Fout!" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "maar het is een virtueel pakket" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Klaar" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "maar het is niet geïnstalleerd" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "maar het zal niet geïnstalleerd worden" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Klaar" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " of" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan een leeg bestand niet mmappen" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "De volgende pakketten hebben niet-voldane vereisten:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kon de bestandsindicator %i niet dupliceren" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "De volgende NIEUWE pakketten zullen geïnstalleerd worden:" +#: 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-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "De volgende pakketten zullen VERWIJDERD worden:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kan mmap niet sluiten" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "De volgende pakketten zijn achtergehouden:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Kan mmap niet synchronizeren" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "De volgende pakketten zullen opgewaardeerd worden:" +#: 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-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Afkorten van bestand is mislukt" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" +#: 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-output.cc:667 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (vanwege %s) " +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "" +"Kan het formaat van de MMap niet vergroten omdat de grens van %lu bytes al " +"is bereikt" -#: apt-private/private-output.cc:675 +#: 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 "" -"WAARSCHUWING: De volgende essentiële pakketten zullen verwijderd worden.\n" -"Dit dient NIET gedaan te worden tenzij u precies weet wat u doet!" +"Kan het formaat van de MMap niet vergroten omdat het automatisch vergroten " +"door de gebruiker is uitgeschakeld." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " +msgid "Unable to stat the mount point %s" +msgstr "Kan de status van het aanhechtpunt %s niet opvragen" -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu opnieuw geïnstalleerd, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "stat op de CD-ROM is mislukt" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu downgraded, " -msgstr "%lu gedegradeerd, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Onbekende type-afkorting '%c'" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" +msgid "Opening configuration file %s" +msgstr "Configuratiebestand %s wordt geopend" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\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:740 -msgid "[Y/n]" -msgstr "[J/n]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfout %s:%u: Blok start zonder naam." -#. 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:746 -msgid "[y/N]" -msgstr "[j/N]" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "J" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaxfout %s:%u: Extra rommel na waarde" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex-compilatiefout - %s" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "De opdracht 'update' aanvaard geen argumenten" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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: Extra junk at end of file" +msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" -#: 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 "Geen sleutelring geïnstalleerd in %s." -#: 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/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:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." +#: 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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Interne fout, rangschikken is niet voltooid" +#: 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: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" +#: 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." -#. 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"Optie %s: De specificatie van het configuratie-item dient een = te " +"bevatten." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Er moeten %sB aan archieven opgehaald worden.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Optie %s vereist een integer getal als argument, niet '%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "Optie '%s' is te lang" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\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:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "U heeft onvoldoende vrije schijfruimte op %s." +msgid "Invalid operation %s" +msgstr "Ongeldige operatie %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 "Er zijn problemen en -y was gebruikt zonder --force-yes" +#: 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" -#: 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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Totaal aantal pakketnamen: " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Totaal aantal pakketstructuren: " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normale pakketten: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Afbreken." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Zuiver virtuele pakketten: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Wilt u doorgaan?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Losstaande virtuele pakketten: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Ophalen van sommige bestanden is mislukt" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Gemengde virtuele pakketten: " -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" -"fix-missing proberen?" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Ontbrekend: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Totaal aantal verschillende versies: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Geen oplossing voor de missende pakketten gevonden." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Totaal aantal verschillende beschrijvingen: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Installatie wordt afgebroken." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Totaal aantal vereisten: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Totaal aantal versie/bestand-relaties: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Totaal aantal Beschrijving/bestand-relaties: " -#: 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" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Totaal aantal 'Voorziet'-toewijzingen " -#: 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 "" -"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." +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Totaal aantal geglobde strings: " -#. -#. 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:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Totale hoeveelheid vereisten-versieruimte: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Totale onbenutte ruimte: " -#: 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:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Totale hoeveelheid verantwoorde ruimte: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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 "Package file %s is out of sync." +msgstr "Pakketbestand %s is niet meer gesynchroniseerd." -#: 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'." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" -msgstr "" -"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " -"lossen:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "U dient precies één zoekpatroon op te geven" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." 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-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 "" -"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'." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Pakketbestanden:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Niet-werkende pakketten:" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Vastgepinde pakketten:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Voorgestelde pakketten:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(niet gevonden)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Aanbevolen pakketten:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Geïnstalleerd: " -#: apt-private/private-install.cc:825 -#, c-format -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" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidaat: " -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(geen)" -#: apt-private/private-install.cc:841 -#, 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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Pakketpin: " -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s is reeds de nieuwste versie.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versietabel:" -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 "Versie '%s' (%s) geselecteerd voor '%s'\n" - -#: 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" - -#. 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-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" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s voor %s gecompileerd op %s %s\n" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cache.cc:1801 +#, 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 "" -"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!" +"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-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" +#: cmdline/apt-cdrom.cc:76 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" +"Gelieve een naam voor deze schijf op te geven, bijvoorbeeld 'Debian 5.0.3 " +"Schijf 1'" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Authentificatiewaarschuwing is genegeerd.\n" +#: 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-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-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Aankoppelen van '%s' op '%s' is mislukt" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Wilt u deze pakketten installeren zonder verificatie?" +#: 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-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-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-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-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenten niet in paren" -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +#: 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-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: 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-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Geraakt " +#: 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-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Ophalen:" +#: 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-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Genegeerd " +#: 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-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fout " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB opgehaald in %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Kon pakket %s niet vinden" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Bezig]" +msgid "%s set to manually installed.\n" +msgstr "%s is ingesteld voor handmatige installatie.\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 is ingesteld op automatische geïnstalleerd.\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 "" -"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" - -#: 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" - -#. 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 "Can not read mirror file '%s'" -msgstr "Geen spiegelbestand '%s' gevonden " - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Geen spiegelbestand '%s' gevonden " - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[Spiegelserver: %s]" - -#: 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" - -#: 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." +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: 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-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kon de ophaalmap niet vergrendelen" -# 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 "" -"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten" +"U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " +"worden" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Kan geen bronpakket vinden voor %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 "" -"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten" +"MERK OP: Het verpakken van '%s' wordt bijgehouden in het versiebeheersysteem " +"'%s' op:\n" +"%s\n" -#: dselect/install:105 +#: cmdline/apt-get.cc:791 +#, fuzzy, 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 "" -"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" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Interne fout in AddDiversion" +"Gebruik:\n" +"bzr get %s\n" +"om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " +"te halen.\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:839 #, 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" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dubbele toevoeging van de omleiding %s->%s" +msgid "Couldn't determine free space in %s" +msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dubbel configuratiebestand %s/%s" +msgid "You don't have enough free space in %s" +msgstr "U heeft niet voldoende vrije schijfruimte op %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:893 #, c-format -msgid "The path %s is too long" -msgstr "Het pad %s is te lang" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Moet %sB/%sB aan bronarchieven ophalen.\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:898 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s wordt meer dan eens uitgepakt" +msgid "Need to get %sB of source archives.\n" +msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is diverted" -msgstr "De map %s is al omgeleid" +msgid "Fetch source %s\n" +msgstr "Ophalen bron %s\n" -#: apt-inst/extract.cc:152 -#, 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" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Ophalen van sommige archieven is mislukt." -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Het omleidingspad is te lang" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "stat op %s is mislukt" +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/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Hernoemen van %s naar %s is mislukt" +msgid "Unpack command '%s' failed.\n" +msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "De map %s wordt vervangen door een niet-map" +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-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:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Bouwopdracht '%s' is mislukt.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Het pad is te lang" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Dochterproces is mislukt" -#: 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:1031 +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" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, 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 "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "Kan de status van %s niet opvragen" +msgid "Unable to get build-dependency information for %s" +msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "Wegschrijven van bestand %s is mislukt" +msgid "%s has no build depends.\n" +msgstr "%s heeft geen bouwvereisten.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Sluiten van bestand %s is mislukt" +#: cmdline/apt-get.cc:1296 +#, 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-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, 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 "" +"%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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1337 #, 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" +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-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Ongeldige archiefondertekening" +#: cmdline/apt-get.cc:1376 +#, 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-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Fout bij het lezen van de koptekst van het archiefonderdeel" +#: cmdline/apt-get.cc:1382 +#, fuzzy, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " +"onvindbaar is" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1405 #, 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" - -#: 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" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Kan de status van %s niet opvragen." +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Verwerken van de bouwvereisten is mislukt" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "dpkg wordt uitgevoerd" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Ondersteunde modules:" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" +#: cmdline/apt-get.cc:1657 +#, 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/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Kan geen geschikt pakketsysteemtype bepalen" +#: 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" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "%i records weggeschreven.\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 "%i records weggeschreven met %i missende bestanden.\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 records weggeschreven met %i niet overeenkomende bestanden\n" +#: 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/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-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/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan geen authenticatierecord vinden voor: %s" +#: 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/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-som komt niet overeen voor: %s" +#: 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/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-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s is reeds de nieuwste versie.\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 "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" +msgid "%s set on hold.\n" +msgstr "%s is ingesteld voor handmatige installatie.\n" -#: 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-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/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 "" -"Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " -"'enter' te drukken." -#: 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 "" -"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.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 "" -"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 +#: methods/cdrom.cc:203 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "De pakketcache was aangemaakt voor een andere architectuur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Vereisten" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Voor-Vereisten" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Suggesties" +msgid "Unable to read the cdrom database %s" +msgstr "Kan de cd databank %s niet lezen" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Aanbevelingen" +#: 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:322 -msgid "Conflicts" -msgstr "Conflicteert met" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Verkeerde CD" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Vervangt" +#: 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:323 -msgid "Obsoletes" -msgstr "Verouderd" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Schijf niet gevonden" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Breekt" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Bestand niet gevonden" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Vult aan" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "belangrijk" +#: 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" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "noodzakelijk" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standaard" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Bezig met aanmelden" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optioneel" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kan de 'peer'-naam niet bepalen" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kan de lokale naam niet bepalen" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexbestand van type '%s' wordt niet ondersteund" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cache heeft een niet-compatibel versienummeringssysteem" - -#. TRANSLATOR: The first placeholder is a package name, -#. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc: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)" +msgid "The server refused the connection and said: %s" +msgstr "Onze verbinding is door de server geweigerd met bericht: %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." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER mislukt; bericht van server: %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." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS mislukt; bericht van server: %s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions 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 "" -"Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " -"overschreden." - -#: 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." +"Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" +"ProxyLogin is leeg." -#: apt-pkg/pkgcachegen.cc:576 +#: methods/ftp.cc:280 #, 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 "Login script command '%s' failed, server said: %s" +msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kon de status van de bronpakketlijst %s niet opvragen" +msgid "TYPE failed, server said: %s" +msgstr "TYPE 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:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Verbinding is verlopen" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Voorziene bestanden worden verzameld" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Verbinding is verbroken door de server" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Kan niet naar %s schrijven" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Een reactie deed de buffer overlopen" -#: 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:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protocolcorruptie" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -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 "Kon geen socket aanmaken" -#: apt-pkg/edsp.cc:241 -msgid "Send request to 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/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislukt" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Kon de passieve socket niet verbinden." -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo kon geen luistersocket verkrijgen" -#: 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:749 +msgid "Could not bind a socket" +msgstr "Kon geen socket binden" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-som komt niet overeen" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kon niet op de socket niet luisteren" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Grootte komt niet overeen" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kon de socketnaam niet bepalen" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ongeldige operatie %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kan PORT-commando niet verzenden" -#: 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 "Onbekende adresfamilie %u (AF_*)" -#: 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:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT is mislukt; bericht van server: %s" -#: 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: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:1677 +#: 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 "" +msgid "Unable to fetch file, server said '%s'" +msgstr "Kan bestand niet ophalen; bericht van server: %s" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datasocket verliep" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %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: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 "" -"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 "Connecting to %s (%s)" +msgstr "Er wordt verbinding gemaakt met %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-fout: %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 "" -"Er kon geen bestand gevonden worden voor pakket %s. Dit kan betekenen dat u " -"dit pakket handmatig moet repareren (wegens missende architectuur)" +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/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 "Kan de verbinding met %s:%s (%s) niet aangaan." -#: 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 "" -"De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " -"pakket %s." +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Verkopersblok %s bevat geen vingerafdruk" +msgid "Could not connect to %s:%s (%s)." +msgstr "Kon niet verbinden met %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 "Lijstmap %spartial is afwezig." +msgid "Connecting to %s" +msgstr "Er wordt verbinding gemaakt met %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archiefmap %spartial is afwezig." +msgid "Could not resolve '%s'" +msgstr "Kon '%s' niet vinden" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Kan de map %s niet vergrendelen" +msgid "Temporary failure resolving '%s'" +msgstr "Tijdelijke fout bij het opzoeken van '%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 "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Bestand %li van %li wordt opgehaald (nog %s te gaan)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Bestand %li van %li wordt opgehaald" +msgid "Unable to connect to %s:%s:" +msgstr "Kan geen verbinding maken met %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 "" -"Ophalen van sommige indexbestanden is mislukt, deze zijn of genegeerd, of er " -"zijn oudere versies van gebruikt." +"Interne fout: ondertekening is goed maar kon de vingerafdruk van de sleutel\n" +"niet bepalen?!" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Er is tenminste één ongeldige ondertekening gevonden." -#: 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 "" +"Kon 'gpgv' niet uitvoeren om ondertekening te verifiëren (is gpgv " +"geïnstalleerd?)" -#: 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 "" -"Ongeldige record in het voorkeurenbestand %s, 'Package' koptekst ontbreekt" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Pintype %s wordt niet begrepen" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Onbekende fout bij het uitvoeren van gpgv" -#: 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:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "De volgende ondertekeningen waren ongeldig:\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 "" -"Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " -"'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" +"De volgende ondertekeningen konden niet geverifieerd worden omdat de " +"publieke sleutel niet beschikbaar is:\n" -#: 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/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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fout bij het schrijven naar het bestand" + +#: methods/http.cc:523 +msgid "Error reading from server. Remote end closed connection" 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." +"Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" -#: 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." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fout bij het lezen van de server" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD wordt afgekoppeld...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fout bij het schrijven naar bestand" -#: 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:621 +msgid "Select failed" +msgstr "Selectie is mislukt" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Er wordt gewacht op de schijf...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Verbinding verliep" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD wordt aangekoppeld...\n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificatie..." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Wachtend op de kopteksten" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Opgeslagen label: %s \n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Foute koptekstregel" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Er wordt gescand voor indexbestanden...\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: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 "" -"Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " -"handtekeningen gevonden\n" +"Er is door de HTTP server een ongeldige 'Content-Length'-koptekst verstuurd" -#: 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 "" -"Kan geen Package-bestanden vinden. Is dit mogelijk geen Debian schijf, of de " -"verkeerde architectuur?" - -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Label '%s' gevonden\n" - -#: 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" +"Er is door de HTTP server een ongeldige 'Content-Range'-koptekst verstuurd" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"De schijf heet:\n" -"'%s'\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:819 -msgid "Copying package lists..." -msgstr "Pakketlijsten worden gekopieerd..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Onbekend datumformaat" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Nieuwe bronlijst wordt weggeschreven\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Foute koptekstdata" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Verbinding mislukt" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " -"veroorzaakt worden door vastgehouden pakketten." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Geïnstalleerd]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Geïnstalleerd]" + +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "De volgende pakketten zullen VERWIJDERD worden:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "De volgende pakketten zijn achtergehouden:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "De volgende pakketten zullen opgewaardeerd worden:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "De volgende pakketten zullen GEDEGRADEERD worden:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "De volgende vastgehouden pakketten zullen gewijzigd worden:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgid "%s (due to %s) " +msgstr "%s (vanwege %s) " + +#: apt-private/private-output.cc:675 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Misvormde regel %lu in bronlijst %s ([%s] sleutel %s heeft geen waarde)" +"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:206 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Misvormde regel %lu in bronlijst %s (URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pakketten opgewaardeerd, %lu pakketten nieuw geïnstalleerd, " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Misvormde regel %lu in bronlijst %s (dist)" +msgid "%lu reinstalled, " +msgstr "%lu opnieuw geïnstalleerd, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Misvormde regel %lu in bronlijst %s (URI parse)" +msgid "%lu downgraded, " +msgstr "%lu gedegradeerd, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\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:740 +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:746 +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:757 +msgid "Y" +msgstr "J" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "N" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "%s wordt geopend" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "De opdracht 'update' aanvaard geen argumenten" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Misvormde regel %u in bronlijst %s (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] "" +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 "Type '%s' op regel %u in bronlijst %s is onbekend" +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 "Type '%s' op regel %u in bronlijst %s is onbekend" +#: 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 wordt geïnstalleerd" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s wordt geconfigureerd" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s wordt verwijderd" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Interne fout, rangschikken is niet voltooid" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s wordt volledig verwijderd" +#: apt-private/private-install.cc:150 +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/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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "De verdwijning van %s wordt opgemerkt" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Er moeten %sB/%sB aan archieven opgehaald worden.\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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Post-installatie-trigger %s wordt uitgevoerd" +msgid "Need to get %sB of archives.\n" +msgstr "Er moeten %sB aan archieven opgehaald worden.\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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "Map '%s' ontbreekt" +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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "Kon het bestand '%s' niet openen" +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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "%s wordt voorbereid" +msgid "You don't have enough free space in %s." +msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: apt-pkg/deb/dpkgpm.cc:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s wordt uitgepakt" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Configuratie van %s wordt voorbereid" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "%s is geïnstalleerd" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Ja, doe wat ik zeg!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "Verwijdering van %s wordt voorbereid" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "%s is verwijderd" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Afbreken." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Volledige verwijdering van %s wordt voorbereid" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Wilt u doorgaan?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s is volledig verwijderd" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Ophalen van sommige bestanden is mislukt" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" +"fix-missing proberen?" -#: 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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Geen oplossing voor de missende pakketten gevonden." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Installatie wordt afgebroken." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:368 +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/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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." -#. 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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding volgt op een " -"eerdere mislukking." +"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/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." +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "De volgende informatie helpt u mogelijk verder:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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." +"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-private/private-install.cc:519 +#, 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" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:521 #, 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." +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/deb/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" +#: apt-private/private-install.cc:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Er is geen apport-verslag weggeschreven omdat de foutmelding een fout over " -"dpkg-I/O is." +"U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " +"lossen:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:616 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 "" -"Kan de beheersmap (%s) niet vergrendelen. Is deze in gebruik door een ander " -"proces?" - -#: 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?" +"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)." -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:640 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 werd onderbroken; voer handmatig '%s' uit om het probleem te verhelpen. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Niet vergrendeld" - -#. 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" +"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'." -#. 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:661 +msgid "Broken packages" +msgstr "Niet-werkende pakketten:" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%lis" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Voorgestelde pakketten:" -#: apt-pkg/contrib/strutl.cc:1243 -#, c-format -msgid "Selection %s not found" -msgstr "Selectie %s niet gevonden" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Aanbevolen pakketten:" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:851 #, 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 "" -"Er wordt geen vergrendeling gebruikt voor het alleen-lezen-" -"vergrendelingsbestand %s" +"%s wordt overgeslagen, het is al geïnstalleerd en opwaardering is niet " +"gevraagd.\n" -#: apt-pkg/contrib/fileutl.cc:195 +#: apt-private/private-install.cc:855 #, c-format -msgid "Could not open lock file %s" -msgstr "Kon het vergrendelingsbestand '%s' niet openen" +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:218 +#: apt-private/private-install.cc:867 #, c-format -msgid "Not using locking for nfs mounted lock file %s" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -"Het via nfs aangekoppelde vergrendelingsbestand %s wordt niet vergrendeld" +"Herinstallatie van %s is niet mogelijk daar het niet opgehaald kan worden.\n" -#: apt-pkg/contrib/fileutl.cc:223 +#: apt-private/private-install.cc:872 #, c-format -msgid "Could not get lock %s" -msgstr "Kon vergrendeling %s niet verkrijgen" +msgid "%s is already the newest version.\n" +msgstr "%s is reeds de nieuwste versie.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: apt-private/private-install.cc:920 #, c-format -msgid "List of files can't be created as '%s' is not a directory" -msgstr "" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versie '%s' (%s) geselecteerd voor '%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:925 +#, 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: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:967 +#, 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:421 -#, c-format +#: apt-private/private-install.cc:973 +#, 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-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 "" +"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:824 -#, c-format -msgid "Sub-process %s received a segmentation fault." -msgstr "Subproces %s ontving een segmentatiefout." - -#: apt-pkg/contrib/fileutl.cc:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Subproces %s ontving signaal %u." +#: 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: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-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Authentificatiewaarschuwing is genegeerd.\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" +#: 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:913 -#, c-format -msgid "Problem closing the gzip file %s" -msgstr "Probleem bij het afsluiten van het gzip-bestand %s" +#: 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:1101 -#, c-format -msgid "Could not open file %s" -msgstr "Kon het bestand %s niet openen" +#: apt-private/private-sources.cc:58 +#, fuzzy, c-format +msgid "Failed to parse %s. Edit again? " +msgstr "Hernoemen van %s naar %s is mislukt" -#: 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 "Kon de bestandsindicator %d niet openen" +msgid "Your '%s' file changed, please run 'apt-get update'." +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Aanmaken subproces-IPC is mislukt" +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Uitvoeren van de compressor is mislukt " +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Geraakt " -#: 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/acqprogress.cc:88 +msgid "Get:" +msgstr "Ophalen:" -#: 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-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Genegeerd " -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Probleem bij het afsluiten van het bestand %s" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Fout " -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Probleem bij het hernoemen van '%s' naar '%s'" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB opgehaald in %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Probleem bij het ontlinken van het bestand %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Probleem bij het synchroniseren van het bestand" +msgid " [Working]" +msgstr " [Bezig]" -#: apt-pkg/contrib/progress.cc:148 +#: apt-private/acqprogress.cc:298 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fout!" +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" -#: 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... Klaar" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "No mirror file '%s' found " +msgstr "Geen spiegelbestand '%s' gevonden " -#. 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... 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" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kan mmap niet synchronizeren" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Foute standaardinstelling!" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Kon van %lu bytes geen mmap maken" +#: 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:322 -msgid "Failed to truncate file" -msgstr "Afkorten van bestand is mislukt" +#: 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: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)" +# 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 "" -"Onvoldoende ruimte voor Dynamische MMap. Gelieve de grootte van APT::Cache-" -"Start te verhogen. Huidige waarde: %lu. (man 5 apt.conf)" +"Er zijn fouten opgetreden tijdens het uitpakken. Geïnstalleerde pakketten" -#: 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 "worden geconfigureerd. Hierbij kunnen fouten meerdere malen optreden" + +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"Kan het formaat van de MMap niet vergroten omdat de grens van %lu bytes al " -"is bereikt" +"of veroorzaakt worden door niet-voldane vereisten. Dit is Ok, enkel de fouten" -#: 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 "" -"Kan het formaat van de MMap niet vergroten omdat het automatisch vergroten " -"door de gebruiker is uitgeschakeld." +"boven dit bericht zijn belangrijk. U dient ze op te lossen en de installatie " +"opnieuw uit te voeren" -#: 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" +#: dselect/update:30 +msgid "Merging available information" +msgstr "De beschikbare informatie wordt samengevoegd" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "stat op de CD-ROM is mislukt" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode werd aangeroepen op een nog gelinkte knoop" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Onbekende type-afkorting '%c'" +#: 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:633 -#, c-format -msgid "Opening configuration file %s" -msgstr "Configuratiebestand %s wordt geopend" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Toewijzen van de omleiding is mislukt" + +#: 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-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Het omleidingspad is te lang" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "" -"Optie %s: De specificatie van het configuratie-item dient een = 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3281,12 +3294,7 @@ msgstr "" " -c=? Lees dit configuratiebestand.\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Kan de status van %s niet opvragen" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan versie van debconf niet bepalen. Is debconf geïnstalleerd?" @@ -3407,17 +3415,17 @@ msgstr "Geen van de selecties kwam overeen" msgid "Some files are missing in the package file group `%s'" msgstr "Sommige bestanden zijn niet aanwezig in de pakketbestandsgroep '%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB is beschadigd, bestand hernoemd naar %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB is verouderd, opwaardering van %s wordt geprobeerd" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3425,105 +3433,105 @@ msgstr "" "DB-formaat is ongeldig. Als u opgewaardeerd heeft van een oudere versie van " "apt, dient u de database te verwijderen en opnieuw aan te maken." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Kan het DB-bestand %s niet openen: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "readlink op %s is mislukt" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Archief heeft geen 'control'-record" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Kan geen cursor verkrijgen" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Kon map %s niet lezen\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Kon de status van %s niet opvragen\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "F: Er zijn fouten van toepassing op het bestand " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Oplossen van %s is mislukt" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Doorlopen boomstructuur is mislukt" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Openen van %s is mislukt" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " OntlLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "readlink op %s is mislukt" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Ontlinken van %s is mislukt" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Linken van %s aan %s is mislukt" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Ontlinklimiet van %sB bereikt.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archief heeft geen 'package'-veld" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s heeft geen voorrangsingang\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s beheerder is %s, niet %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s heeft geen voorrangsingang voor bronpakketten\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n" diff --git a/po/nn.po b/po/nn.po index 94db933d6..a2510fbc4 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@ -20,3143 +20,3156 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: KBabel 1.9.1\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Pakkelagerfila er øydelagd" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" + +#: apt-pkg/pkgcache.cc:164 +#, 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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +msgid "PreDepends" +msgstr "Forkrav" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ikkje funne)" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Forslag" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Installert: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Tilrådingar" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Konflikt" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Byter ut" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pakke spikra til: " +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Foreldar" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versjonstabell:" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "viktig" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "påkravd" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "vanleg" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "valfri" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "tillegg" + +#: apt-pkg/pkgrecords.cc:38 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "Indeksfiltypen «%s» er ikkje støtta" + +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex-kompileringsfeil - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, fuzzy, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s for %s %s kompilert på %s %s\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr "Feil ved behandling av %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1749 +#: apt-pkg/pkgcachegen.cc:283 +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." + +#: apt-pkg/pkgcachegen.cc:286 #, 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" +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-cdrom.cc:76 -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "" +#: apt-pkg/pkgcachegen.cc:289 +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-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/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" -#: 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/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Klarte ikkje få status på kjeldepakkelista %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." +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Les pakkelister" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Samlar inn filtilbod" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Klarte ikkje skriva til %s" + +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "IU-feil ved lagring av kjeldelager" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Ikkje parvise argument" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +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/edsp.cc:327 +msgid "External solver failed without a proper error message" 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" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Fann ikkje pakken %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:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Fann ikkje pakken %s" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "endring av namn mislukkast, %s (%s -> %s)." -#: 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/acquire-item.cc:175 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Feil MD5-sum" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Feil storleik" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Ugyldig operasjon %s" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Couldn't find package %s" -msgstr "Fann ikkje pakken %s" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "%s set to manually installed.\n" -msgstr "men %s skal installerast" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: 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/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1775 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -#, fuzzy -msgid "Internal error, problem resolver broke stuff" -msgstr "Intern feil. AllUpgrade øydelagde noko" - -#: 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/acquire-item.cc:1797 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: 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/acquire-item.cc:1827 +#, 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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Finn ingen kjeldepakke for %s" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"Fann ikkje fila for pakken %s. Det kan henda du må fiksa denne pakken sjølv " +"(fordi arkitekturen manglar)." -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" +"Pakkeindeksfilene er øydelagde. Feltet «Filename:» manglar for pakken %s." + +#: apt-pkg/vendorlist.cc:85 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, 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" +msgid "List directory %spartial is missing." +msgstr "Listekatalogen %spartial manglar." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:92 #, fuzzy, c-format -msgid "Couldn't determine free space in %s" -msgstr "Du har ikkje nok ledig plass i %s" +msgid "Archives directory %spartial is missing." +msgstr "Arkivkatalogen %spartial manglar." -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har ikkje nok ledig plass i %s" +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Klarte ikkje låsa listekatalogen" -#. 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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n" +msgid "Retrieving file %li of %li (%s remaining)" +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.cc:927 +#, fuzzy, c-format +msgid "Retrieving file %li of %li" +msgstr "Les filliste" + +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Må henta %sB med kjeldekodearkiv.\n" - -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Hent kjeldekode %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Klarte ikkje henta %s %s\n" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Klarte ikkje henta nokre av arkiva." +#: 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 "" +"Klarte ikkje lasta ned nokre av indeksfilene. Dei er ignorerte, eller gamle " +"filer er brukte i staden." -#: 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-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." -#: cmdline/apt-get.cc:950 +#: apt-pkg/policy.cc:83 #, 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 "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Utpakkingskommandoen «%s» mislukkast.\n" +#: 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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "" +msgid "Did not understand pin type %s" +msgstr "Skjønar ikkje spikringstypen %s" -#: cmdline/apt-get.cc:991 -#, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggjekommandoen «%s» mislukkast.\n" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Ingen prioritet (eller null) oppgitt for spiker" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barneprosessen mislukkast" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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-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/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Klarte ikkje opna fila %s" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Klarte ikkje henta byggjekrav for %s" +msgid "Line %u too long in source list %s." +msgstr "Linja %u i kjeldelista %s er for lang." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterer CD-ROM ...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har ingen byggjekrav.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Brukar monteringspunktet %s for CD-ROM\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Ventar på disk ...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterer CD-ROM ...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifiserer ... " + +#: 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" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, 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" +"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-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 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" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" + +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "Lagra etikett: %s \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-get.cc:1312 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny" +"Disken vert kalla: \n" +"«%s»\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierer pakkelister ..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriv ny kjeldeliste\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Kjeldelisteoppføringar for denne disken er:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "Pakken %s må installerast på nytt, men arkivet finst ikkje." + +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon " -"tilgjengelege versjonar av pakken %s som oppfyller versjonskrava" +"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " +"som er haldne tilbake." + +#: 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-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Byggjer kravtre" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidatversjonar" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Genererer kravforhold" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/depcache.cc:250 #, 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" +msgid "Failed to open StateFile %s" +msgstr "Klarte ikkje opna %s" + +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Klarte ikkje skriva fila %s" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/tagfile.cc:169 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." +msgid "Unable to parse package file %s (2)" +msgstr "Klarte ikkje tolka pakkefila %s (2)" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Klarte ikkje behandla byggjekrava" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Fann ikkje utgåva «%s» av «%s»" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Fann ikkje versjonen «%s» av «%s»" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Finn ikkje pakken %s" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:604 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Koplar til %s (%s)" +msgid "Couldn't find task '%s'" +msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Støtta modular:" +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Fann ikkje pakken %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" 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/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "men er ikkje installert" +msgid "Unable to parse Release file %s" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "men %s skal installerast" +msgid "No sections in Release file %s" +msgstr "Merk, vel %s i staden for %s\n" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" + +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "men %s skal installerast" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ugyldig linje i avleiingsfila: %s" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "Den nyaste versjonen av %s er installert frå før.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Klarte ikkje tolka pakkefila %s (1)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "Den nyaste versjonen av %s er installert frå før.\n" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Misforma linje %lu i kjeldelista %s (URI-tolking)" -#: 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 "Venta på %s, men den fanst ikkje" +#: 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)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "men %s skal installerast" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:184 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Klarte ikkje opna %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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)" -#: 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/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)" -#: 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/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Misforma linje %lu i kjeldelista %s (URI)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Klarte ikkje lesa CD-ROM-databasen %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Misforma linje %lu i kjeldelista %s (dist)" -#: 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/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/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Feil CD-plate" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:224 #, 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." +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: methods/cdrom.cc:254 -#, fuzzy -msgid "Disk not found." -msgstr "Fann ikkje fila" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Opnar %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fann ikkje fila" +#: 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/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/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/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Klarte ikkje setja endringstidspunkt" - -#: 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/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" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Loggar inn" +#: apt-pkg/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr " Installert: " -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Klarte ikkje avgjera namnet på motparten" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, fuzzy, c-format +msgid "Configuring %s" +msgstr "Koplar til %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Klarte ikkje avgjera det lokale namnet" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, fuzzy, c-format +msgid "Removing %s" +msgstr "Opnar %s" -#: 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/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Klarte ikkje fjerna %s" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER mislukkast, tenaren sa: %s" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS mislukkast, tenaren sa: %s" - -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +msgid "Running post-installation trigger %s" msgstr "" -"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " -"«Acquire::ftp::ProxyLogin» er tomt." -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandoen «%s» i innlogginsskriptet mislukkast, tenaren sa: %s" +#. 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/ftp.cc:306 -#, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE mislukkast, tenaren sa: %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/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Tidsavbrot på samband" +#: apt-pkg/deb/dpkgpm.cc:989 +#, fuzzy, c-format +msgid "Preparing %s" +msgstr "Opnar %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Tenaren lukka sambandet" +#: apt-pkg/deb/dpkgpm.cc:990 +#, fuzzy, c-format +msgid "Unpacking %s" +msgstr "Opnar %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 "Lesefeil" +#: apt-pkg/deb/dpkgpm.cc:995 +#, fuzzy, c-format +msgid "Preparing to configure %s" +msgstr "Opnar oppsettsfila %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Eit svar flaumde over bufferen." +#: apt-pkg/deb/dpkgpm.cc:997 +#, fuzzy, c-format +msgid "Installed %s" +msgstr " Installert: " -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokolløydeleggjing" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %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 "Skrivefeil" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, fuzzy, c-format +msgid "Removed %s" +msgstr "Tilrådingar" -#: 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/deb/dpkgpm.cc:1009 +#, fuzzy, c-format +msgid "Preparing to completely remove %s" +msgstr "Opnar oppsettsfila %s" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, fuzzy, c-format +msgid "Completely removed %s" +msgstr "Klarte ikkje fjerna %s" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Mislukkast" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Klarte ikkje kopla til passiv sokkel." +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Klarte ikkje skriva til %s" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Klarte ikkje binda til sokkel" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Klarte ikkje lytta til sokkel" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Venta på %s, men den fanst ikkje" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Klarte ikkje avgjera sokkelnamnet" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Klarte ikkje senda PORT-kommandoen" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Ukjend adressefamilie %u (AF_*)" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT mislukkast, tenaren sa: %s" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Tidsavbrot på tilkopling til datasokkel" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Klarte ikkje godta tilkoplinga" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: 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/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/deb/dpkgpm.cc:1679 +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 "Unable to fetch file, server said '%s'" -msgstr "Klarte ikkje henta fila, tenaren sa «%s»" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Tidsavbrot på datasokkelen" +#: 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/ftp.cc:935 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, 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" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Klarte ikkje starta " +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/connect.cc:76 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Koplar til %s (%s)" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:87 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:94 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, 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)" +msgid "%limin %lis" +msgstr "" -#: methods/connect.cc:100 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." +msgid "%lis" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet" +msgid "Selection %s not found" +msgstr "Fann ikkje utvalet %s" -#: methods/connect.cc:126 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Klarte ikkje kopla til %s:%s (%s)." +msgid "Not using locking for read only lock file %s" +msgstr "Brukar ikkje låsing for den skrivebeskytta låsefila %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/contrib/fileutl.cc:196 #, c-format -msgid "Connecting to %s" -msgstr "Koplar til %s" +msgid "Could not open lock file %s" +msgstr "Klarte ikkje opna låsefila %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Could not resolve '%s'" -msgstr "Klarte ikkje slå opp «%s»" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Brukar ikkje låsing for den nfs-monterte låsefila %s" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:224 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Mellombels feil ved oppslag av «%s»" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" - -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Det hende noko dumt ved oppslag av «%s:%s» (%i)" - -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Klarte ikkje kopla til %s %s:" +msgid "Could not get lock %s" +msgstr "Klarte ikkje låsa %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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." +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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:422 #, 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 "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: 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/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: methods/gpgv.cc:231 -msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Underprosessen %s returnerte ein feilkode (%u)" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprosessen %s avslutta uventa" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Feil ved skriving til fila" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivefeil" -#: 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/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem ved låsing av fila" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Feil ved lesing frå tenaren" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Klarte ikkje opna fila %s" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Feil ved skriving til fil" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Klarte ikkje opna røyr for %s" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Utvalet mislukkast" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Klarte ikkje oppretta underprosessen IPC" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Tidsavbrot på sambandet" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Klarte ikkje køyra komprimeringa " -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Feil ved skriving til utfil" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Lesefeil" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Ventar på hovud" +#: apt-pkg/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "lese, har framleis %lu att å lesa, men ingen att" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Øydelagd hovudlinje" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrive, har framleis %lu att å skrive, men klarte ikkje" -#: 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/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problem ved låsing av fila" -#: 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/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem ved synkronisering av fila" -#: 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/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem ved oppheving av lenkje til fila" -#: 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/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problem ved synkronisering av fila" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Ukjend datoformat" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Klarte ikkje få status til %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Øydelagde hovuddata" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s ... Feil" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Sambandet mislukkast" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Ferdig" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Intern feil" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Reknar ut oppgradering ... " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Ferdig" +#: 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-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: 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-list.cc:131 -msgid "Listing" -msgstr "" +#: 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-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/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Klarte ikkje opna %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Rettar på krav ..." +#: 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-cachefile.cc:96 -msgid " failed." -msgstr " mislukkast." +#: 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Klarte ikkje retta på krav" +#: apt-pkg/contrib/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Klarte ikkje skriva fila %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Klarte ikkje minimera oppgraderingsmengda" - -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Ferdig" - -#: 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 "" -"Du vil kanskje prøva å retta på desse ved å køyra «apt-get -f install»." -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nokre krav er ikkje oppfylte. Prøv med «-f»." - -#: 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: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:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Installert]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Installert]" - -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: 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:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installert]" +#: 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-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installert]" +#: 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:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Ukjend typeforkorting: «%c»" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "men %s er installert" +msgid "Opening configuration file %s" +msgstr "Opnar oppsettsfila %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "men %s skal installerast" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "men lèt seg ikkje installera" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaksfeil %s:%u: Misforma tagg" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "men er ein virtuell pakke" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "men er ikkje installert" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "men skal ikkje installerast" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaksfeil %s:%u: For mange nøsta inkluderte filer" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaksfeil %s:%u: Inkludert herifrå" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Følgjande pakkar har krav som ikkje er oppfylte:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaksfeil %s:%u: Direktivet «%s» er ikkje støtta" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Dei følgjande NYE pakkane vil verta installerte:" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Dei følgjande pakkane vil verta FJERNA:" +#: apt-pkg/contrib/configuration.cc:952 +#, 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-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Dei følgjande pakkane er haldne tilbake:" +#. 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-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Dei følgjande pakkane vil verta oppgraderte:" +#: 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-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Dei følgjande pakkane vil verta NEDGRADERTE:" +#: 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ønar ikkje kommandolinjevalet %s" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Dei følgjande pakkane som er haldne tilbake vil verta endra:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Kommandolinjevalet %s er ikkje boolsk" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (fordi %s) " +msgid "Option %s requires an argument." +msgstr "Valet %s krev eit argument." -#: apt-private/private-output.cc:675 -#, 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/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu oppgraderte, %lu nyleg installerte, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Valet %s må ha eit heiltalsargument, ikkje «%s»" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu installerte på nytt, " +msgid "Option '%s' is too long" +msgstr "Valet «%s» er for langt" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nedgraderte, " +msgid "Sense %s is not understood, try true or false." +msgstr "Skjønar ikkje %s. Prøv «true» eller «false»." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" +msgid "Invalid operation %s" +msgstr "Ugyldig operasjon %s" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\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:740 -msgid "[Y/n]" -msgstr "[J/n]" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Tal på pakkenamn: " -#. 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:746 -msgid "[y/N]" -msgstr "[j/N]" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Tal på pakkenamn: " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "J" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Vanlege pakkar: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Reine virtuelle pakkar: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Regex-kompileringsfeil - %s" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Enkle virtuelle pakkar: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Oppdateringskommandoen tek ingen argument" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Samansette virtuelle pakkar: " -#: 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:363 +msgid " Missing: " +msgstr " Manglar: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -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:365 +msgid "Total distinct versions: " +msgstr "Tal på einskildversjonar: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:367 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Tal på einskildversjonar: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Tal på krav: " -#: 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." +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Tal på ver./fil-forhold: " -#: apt-private/private-install.cc:110 +#: cmdline/apt-cache.cc:374 #, fuzzy -msgid "Internal error, Ordering didn't finish" -msgstr "Intern feil ved tilleggjing av avleiing" +msgid "Total Desc/File relations: " +msgstr "Tal på ver./fil-forhold: " -#: apt-private/private-install.cc:148 -msgid "How odd... The sizes didn't match, email apt@packages.debian.org" -msgstr "" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Tal på tilbyr-forhold: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Må henta %sB/%sB med arkiv.\n" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Tal på strengar med jokerteikn: " -#. TRANSLATOR: The required space between number and unit 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" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Storleik på kravs- og versjonsrom: " -#. TRANSLATOR: The required space between number and unit 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 "Etter utpakking vil %sB meir diskplass verta brukt.\n" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Slingringsmon: " -#. TRANSLATOR: The required space between number and unit 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 "Etter utpakking vil %sB meir diskplass verta frigjort.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Brukt plass i alt: " -#: apt-private/private-install.cc:200 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har ikkje nok ledig plass i %s." +msgid "Package file %s is out of sync." +msgstr "Pakkefila %s er ute av takt." -#: 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»" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Du må oppgi nøyaktig eitt mnster" + +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"«Trivial Only» var spesifisert, men dette er ikkje noka triviell handling." -#. 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!" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Pakkefiler:" -#: 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" -" ?] " +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avbryt." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Spikra pakkar:" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vil du halda fram?" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(ikkje funne)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Klarte ikkje henta nokre av filene" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Installert: " -#: apt-private/private-install.cc:320 -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:1639 +msgid " Candidate: " +msgstr " Kandidat: " -#: 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ingen)" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Klarte ikkje retta opp manglande pakkar." +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Pakke spikra til: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Avbryt installasjon." +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versjonstabell:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 for %s %s kompilert på %s %s\n" -#: apt-private/private-install.cc:366 +#: cmdline/apt-cache.cc:1801 +#, fuzzy 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] "" +"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-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: 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-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" +#: 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" + +#: 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-private/private-install.cc:499 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -#. -#. 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:" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "" -#: apt-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Intern feil. AllUpgrade øydelagde noko" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Ikkje parvise argument" -#: apt-private/private-install.cc:513 -#, fuzzy +#: cmdline/apt-config.cc:89 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:" +"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-private/private-install.cc:517 +#: cmdline/apt-get.cc:245 #, 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:" +msgid "Can not find a package for architecture '%s'" +msgstr "Fann ikkje pakken %s" -#: 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] "" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Fann ikkje pakken %s" -#: 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-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "Fann ikkje pakken %s" -#: 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-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-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." +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" 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-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Øydelagde pakkar" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Dei følgjande tilleggspakkane vil verta installerte:" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Fann ikkje pakken %s" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Føreslåtte pakkar:" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "men %s skal installerast" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Tilrådde pakkar" +#: 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-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\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 "" -"Hoppar over %s, for den er installert frå før og ikkje sett til " -"oppgradering.\n" -#: 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" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +#, fuzzy +msgid "Internal error, problem resolver broke stuff" +msgstr "Intern feil. AllUpgrade øydelagde noko" + +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Klarte ikkje låsa nedlastingskatalogen" + +#: 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-private/private-install.cc:841 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, 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" +msgid "Unable to find a source package for %s" +msgstr "Finn ingen kjeldepakke for %s" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:786 #, c-format -msgid "%s is already the newest version.\n" -msgstr "Den nyaste versjonen av %s er installert frå før.\n" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: 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" +#: 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/private-install.cc:899 +#: cmdline/apt-get.cc:839 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Vald versjon %s (%s) for %s\n" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hoppar over utpakking av kjeldekode som er utpakka frå før i %s\n" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, 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" +msgid "Couldn't determine free space in %s" +msgstr "Du har ikkje nok ledig plass i %s" -#: 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" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Du har ikkje nok ledig plass i %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 "" +#. 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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Må henta %sB/%sB med kjeldekodearkiv.\n" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ÅTVARING: Klarer ikkje autentisere desse pakkane." +#. TRANSLATOR: The required 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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Må henta %sB med kjeldekodearkiv.\n" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Hent kjeldekode %s\n" -#: 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" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Klarte ikkje henta nokre av arkiva." -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installer desse pakkane utan verifikasjon?" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Klarte ikkje henta %s %s\n" - -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Klarte ikkje endra namnet på %s til %s" +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-private/private-sources.cc:70 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Unpack command '%s' failed.\n" +msgstr "Utpakkingskommandoen «%s» mislukkast.\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Treff " +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Byggjekommandoen «%s» mislukkast.\n" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Hent:" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Barneprosessen mislukkast" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "Du må velja minst ein pakke som byggjekrava skal sjekkast for" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Feil " +#: cmdline/apt-get.cc:1056 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Henta %sB på %s (%sB/s)\n" +msgid "Unable to get build-dependency information for %s" +msgstr "Klarte ikkje henta byggjekrav for %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:1126 #, c-format -msgid " [Working]" -msgstr " [Arbeider]" +msgid "%s has no build depends.\n" +msgstr "%s har ingen byggjekrav.\n" + +#: cmdline/apt-get.cc:1296 +#, 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-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:1314 #, 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" - -#. 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" - -#: 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" +"%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" -#. 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:1337 #, c-format -msgid "No mirror file '%s' found " +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" -#. 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 "Klarte ikkje opna fila %s" - -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:1376 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Klarte ikkje opna fila %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 "Klarte ikkje oppretta IPC-røyr til underprosessen" - -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Sambandet vart uventa stengd" - -#: 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." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -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 -#, 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." - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Klarte ikkje tildela avleiing" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Intern feil i AddDiversion" - -#: apt-inst/filelist.cc:477 -#, 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" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobbel tilleggjing av avleiing %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dobbel oppsettsfil %s/%s" - -#: 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" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Pakkar ut %s meir enn éin gong" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s er avleidd" - -#: apt-inst/extract.cc:152 -#, 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" - -#: 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 "Klarte ikkje få status til %s" - -#: 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-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" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Fann ikkje noden i nøkkelbøtta" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Stigen er for lang" - -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriv over pakketreff utan versjon for %s" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Klarte ikkje få status til %s" +"%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/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1382 #, fuzzy, c-format -msgid "Failed to write file %s" -msgstr "Klarte ikkje skriva fila %s" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Klarte ikkje lukka fila %s" +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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1405 #, 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 "Failed to satisfy %s dependency for %s: %s" +msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Intern feil, fann ikkje medlemmen %s" - -#: 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" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Feil ved lesing av arkivmedlemshovud" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Klarte ikkje behandla byggjekrava" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, 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" +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:1616 +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:1657 +#, 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." +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "Klarte ikkje lesa CD-ROM-databasen %s" -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Tomt pakkelager" +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "Pakkelagerfila er øydelagd" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Feil CD-plate" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Versjonen til pakkelagerfila er ikkje kompatibel" +#: 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:169 +#: methods/cdrom.cc:254 #, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "Pakkelagerfila er øydelagd" +msgid "Disk not found." +msgstr "Fann ikkje fila" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "APT støttar ikkje versjonssystemet «%s»" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fann ikkje fila" -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Pakkelageret er bygd for ein annan arkitektur" +#: 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:321 -msgid "Depends" -msgstr "Krav" +#: 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:321 -msgid "PreDepends" -msgstr "Forkrav" +#: 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:321 -msgid "Suggests" -msgstr "Forslag" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Loggar inn" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tilrådingar" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Klarte ikkje avgjera namnet på motparten" -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Konflikt" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Klarte ikkje avgjera det lokale namnet" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Byter ut" +#: 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:323 -msgid "Obsoletes" -msgstr "Foreldar" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER mislukkast, tenaren sa: %s" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS mislukkast, tenaren sa: %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 "" +"Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " +"«Acquire::ftp::ProxyLogin» er tomt." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktig" - -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "påkravd" +#: 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/pkgcache.cc:334 -msgid "standard" -msgstr "vanleg" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE mislukkast, tenaren sa: %s" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valfri" +#: 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/pkgcache.cc:335 -msgid "extra" -msgstr "tillegg" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Tenaren lukka sambandet" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indeksfiltypen «%s» er ikkje støtta" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Eit svar flaumde over bufferen." -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokolløydeleggjing" -#. 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:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Klarte ikkje oppretta sokkel" -#: 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:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot på sambandet" -#: 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:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Mislukkast" -#: 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:718 +msgid "Could not connect passive socket." +msgstr "Klarte ikkje kopla til passiv sokkel." -#: 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:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" -#: 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:749 +msgid "Could not bind a socket" +msgstr "Klarte ikkje binda til sokkel" -#: 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:753 +msgid "Could not listen on the socket" +msgstr "Klarte ikkje lytta til 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:760 +msgid "Could not determine the socket's name" +msgstr "Klarte ikkje avgjera sokkelnamnet" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samlar inn filtilbod" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Klarte ikkje senda PORT-kommandoen" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:802 #, c-format -msgid "Unable to write to %s" -msgstr "Klarte ikkje skriva til %s" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "IU-feil ved lagring av kjeldelager" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "Ukjend adressefamilie %u (AF_*)" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT mislukkast, tenaren sa: %s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Tidsavbrot på tilkopling til datasokkel" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Klarte ikkje godta tilkoplinga" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: 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:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:890 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "endring av namn mislukkast, %s (%s -> %s)." - -#: apt-pkg/acquire-item.cc:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Feil MD5-sum" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Feil storleik" +msgid "Unable to fetch file, server said '%s'" +msgstr "Klarte ikkje henta fila, tenaren sa «%s»" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Ugyldig operasjon %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Tidsavbrot på datasokkelen" -#: 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 "Dataoverføringa mislukkast, tenaren sa «%s»" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Spørjing" -#: 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:1128 +msgid "Unable to invoke " +msgstr "Klarte ikkje starta " -#: apt-pkg/acquire-item.cc:1639 -msgid "There is no public key available for the following key IDs:\n" -msgstr "" +#: methods/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Koplar til %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 "Klarte ikkje oppretta sokkel for %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 "Klarte ikkje initiera sambandet til %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 "Klarte ikkje kopla til %s:%s (%s), tidsavbrot på sambandet" -#: 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 "" -"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)." +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:496 +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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Sambandet mislukkast" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Feil, «pkgProblemResolver::Resolve» har laga brot. Dette kan skuldast pakkar " -"som er haldne tilbake." -#: 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." +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Intern feil" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Byggjer kravtre" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Reknar ut oppgradering ... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidatversjonar" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Ferdig" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Genererer kravforhold" +#: 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 -#, fuzzy -msgid "Reading state information" -msgstr "Flettar informasjon om tilgjengelege pakkar" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Klarte ikkje opna %s" +#: apt-private/private-list.cc:156 +#, 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:256 -#, fuzzy, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Klarte ikkje skriva fila %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Rettar på krav ..." -#: 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:96 +msgid " failed." +msgstr " mislukkast." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Klarte ikkje retta på krav" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Klarte ikkje minimera oppgraderingsmengda" -#: 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:104 +msgid " Done" +msgstr " Ferdig" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Fann ikkje pakken %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:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%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-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:233 #, 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Installert]" + +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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:612 +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:667 #, 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:675 +#, 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:706 #, 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:710 #, 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:712 #, c-format -msgid "Opening %s" -msgstr "Opnar %s" +msgid "%lu downgraded, " +msgstr "%lu nedgraderte, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, 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:718 +#, 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:740 +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:746 +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:757 +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:763 +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" +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" +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 "" -#. 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-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "" -#: 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-install.cc:93 +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:989 -#, fuzzy, c-format -msgid "Preparing %s" -msgstr "Opnar %s" +#: apt-private/private-install.cc:112 +#, fuzzy +msgid "Internal error, Ordering didn't finish" +msgstr "Intern feil ved tilleggjing av avleiing" -#: apt-pkg/deb/dpkgpm.cc:990 -#, fuzzy, c-format -msgid "Unpacking %s" -msgstr "Opnar %s" +#: apt-private/private-install.cc:150 +msgid "How odd... The sizes didn't match, email apt@packages.debian.org" +msgstr "" -#: 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:157 +#, c-format +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Må henta %sB/%sB med arkiv.\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:162 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "Må henta %sB med arkiv.\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:169 #, fuzzy, c-format -msgid "Preparing to configure %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: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:174 #, fuzzy, c-format -msgid "Installed %s" -msgstr " Installert: " +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:1002 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing for removal of %s" +msgid "You don't have enough free space in %s." +msgstr "Du har ikkje nok ledig plass i %s." + +#: apt-private/private-install.cc:212 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-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1004 -#, fuzzy, c-format -msgid "Removed %s" -msgstr "Tilrådingar" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Ja, gjer som eg seier!" -#: apt-pkg/deb/dpkgpm.cc:1009 +#: apt-private/private-install.cc:224 #, fuzzy, c-format -msgid "Preparing to completely remove %s" -msgstr "Opnar oppsettsfila %s" +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:1010 -#, fuzzy, c-format -msgid "Completely removed %s" -msgstr "Klarte ikkje fjerna %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Avbryt." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Vil du halda fram?" -#: 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:315 +msgid "Some files failed to download" +msgstr "Klarte ikkje henta nokre av filene" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:322 +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»." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "«--fix-missing» og byte av medium er ikkje støtta for tida" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Klarte ikkje retta opp manglande pakkar." -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Avbryt installasjon." + +#: apt-private/private-install.cc:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Intern feil. AllUpgrade øydelagde noko" + +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a disk full " -"error" -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] "Dei følgjande NYE pakkane vil verta installerte:" +msgstr[1] "Dei følgjande NYE pakkane vil verta installerte:" + +#: apt-private/private-install.cc:519 +#, 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-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:521 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: 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:614 +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/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"Nokre krav er ikkje oppfylte. Du kan prøva «apt-get -f install» (eller velja " +"ei løysing)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"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:94 -#, fuzzy, c-format -msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Klarte ikkje låsa listekatalogen" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Øydelagde pakkar" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Dei følgjande tilleggspakkane vil verta installerte:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Føreslåtte 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:829 +msgid "Recommended packages:" +msgstr "Tilrådde pakkar" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:855 +#, 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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "" +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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "Fann ikkje utvalet %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: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-install.cc:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Vald versjon %s (%s) for %s\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:925 +#, 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: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" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Klarte ikkje låsa %s" +#: apt-private/private-install.cc:973 +#, 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: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 "ÅTVARING: Klarer ikkje autentisere desse pakkane." -#: 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" -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-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:50 +msgid "Install these packages without verification?" +msgstr "Installer desse pakkane utan verifikasjon?" -#: apt-pkg/contrib/fileutl.cc:826 +#: 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:88 +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:119 +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:123 +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:147 +#, 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:237 +#, 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:298 +#, 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" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Dårleg standardinnstilling" -#: 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: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-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Avleiingsstigen er for lang" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "Val %s: Spesifikasjonen av oppsettselementet må ha ein =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3180,12 +3193,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Set ei vilkårleg innstilling, t.d. «-o dir::cache=/tmp».\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Klarte ikkje få status til %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Finn ikkje debconf-versjonen. Er debconf installert?" @@ -3302,121 +3310,121 @@ msgstr "Ingen utval passa" msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer manglar i pakkefilgruppa %s" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Databasen er øydelagd. Filnamnet er endra til %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB er for gammal, forsøkjer å oppgradere %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Klarte ikkje opna DB-fila %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Klarte ikkje lesa lenkja %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arkivet har ingen kontrollpost" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Klarte ikkje få peikar" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "Å: Klarte ikkje lesa katalogen %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "Å: Klarte ikkje få status til %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "Å: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "F: Det er feil ved fila " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Klarte ikkje slå opp %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Treklatring mislukkast" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Klarte ikkje opna %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Klarte ikkje lesa lenkja %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Klarte ikkje oppheva lenkja %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Klarte ikkje lenkja %s til %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink-grensa på %sB er nådd.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arkivet har ikkje noko pakkefelt" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s har inga overstyringsoppføring\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikehaldaren er %s, ikkje %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s har inga overstyringsoppføring\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s har inga overstyringsoppføring\n" diff --git a/po/pl.po b/po/pl.po index 46a996a78..7c7d6ed97 100644 --- a/po/pl.po +++ b/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" @@ -23,3277 +23,3290 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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." + +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Nie udało się odczytać list źródeł." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Pusty magazyn podręczny pakietów" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Magazyn podręczny pakietów jest uszkodzony" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Plik pakietu %s jest przestarzały." +msgid "This APT does not support the versioning system '%s'" +msgstr "Ta wersja APT nie obsługuje systemu wersji \"%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 "Nie znaleziono żadnych pakietów" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury" -#: 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:324 +msgid "Depends" +msgstr "Wymaga" -#: 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:324 +msgid "PreDepends" +msgstr "Wymaga wstępnie" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Sugeruje" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Poleca" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "W konflikcie z" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Zastępuje" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Dezaktualizuje" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Narusza zależności" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Rozszerza" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "ważny" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "wymagany" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standardowy" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcjonalny" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "dodatkowy" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Nie udało się odnaleźć pakietu %s" +msgid "Index file type '%s' is not supported" +msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Plików pakietów:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Błąd kompilacji wyrażenia regularnego - %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 "" -"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku " -"pakietu." +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Magazyn podręczny ma niezgodny system wersji" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Przypięte pakiety:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(nie znaleziono)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Zainstalowana: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandydująca: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(brak)" +#: apt-pkg/pkgcachegen.cc:289 +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ć." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Sposób przypięcia: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "" +"Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela wersji:" +#: apt-pkg/pkgcachegen.cc:1233 +#, 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" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Czytanie list pakietów" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Zbieranie zapewnień plików" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s dla %s skompilowany %s %s\n" +msgid "Unable to write to %s" +msgstr "Nie udało się pisać do %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 "" -"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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" -#: 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/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-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/edsp.cc:241 +msgid "Send request to solver" +msgstr "Wysyłanie żądania do mechanizmu rozwiązywania zależności" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Nie udało się zamontować \"%s\" w \"%s\"" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Przygotowywanie na otrzymanie rozwiązania" -#: 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/edsp.cc:327 +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" -#: 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/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" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nie są w parach" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "nie udało się zmienić nazwy, %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 "" -"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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Błędna suma kontrolna" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Błędny rozmiar" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Nieprawidłowa operacja %s" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" +#: apt-pkg/acquire-item.cc:1679 +#, 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źć żadnego pakietu według wyrażenia regularnego \"%s\"" +"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " +"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, 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 "Unable to find hash sum for '%s' in Release file" +msgstr "Nie udało się znaleźć sumy kontrolnej \"%s\" w pliku Release" -#: 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/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "Nie udało się odnaleźć pakietu %s" +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." -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s zaznaczony jako zainstalowany automatycznie.\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 "" -"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-" -"mark manual\"." - -#: 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" - -#: 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" - -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +"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 "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " -"źródła" +"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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nie udało się odnaleźć źródła dla pakietu %s" +msgid "GPG error: %s: %s" +msgstr "Błąd GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" " -"pod adresem:\n" -"%s\n" +"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)." -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 +#, 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\"" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Proszę użyć:\n" -"bzr branch %s\n" -"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " -"pakietu.\n" +"Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %s." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Pomijanie już pobranego pliku \"%s\"\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok producenta %s nie zawiera odcisku" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" +msgid "List directory %spartial is missing." +msgstr "Brakuje katalogu list %spartial." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" +msgid "Archives directory %spartial is missing." +msgstr "Brakuje katalogu archiwów %spartial." -#. 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.cc:100 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n" +msgid "Unable to lock directory %s" +msgstr "Nie udało się zablokować katalogu %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 "Konieczne pobranie %sB archiwów źródeł.\n" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Pobieranie pliku %li z %li (pozostało %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "Pobieranie źródeł %s\n" +msgid "Retrieving file %li of %li" +msgstr "Pobieranie pliku %li z %li" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nie udało się pobrać niektórych archiwów." +#: 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:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Ukończono pobieranie w trybie samego pobierania" +#: 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." -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" +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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" +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:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Polecenie budowania \"%s\" zawiodło.\n" +msgid "Did not understand pin type %s" +msgstr "Nierozpoznany typ przypinania %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Proces potomny zawiódł" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Brak (lub zerowy) priorytet przypięcia" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone " -"zależności dla budowania" +"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)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Nie udało się skonfigurować \"%s\". " -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" -"Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt." -"conf(5) APT::Architectures" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "Linia %u w liście źródeł %s jest zbyt długa." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odmontowanie CD-ROM-u...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nie ma zależności dla budowania.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Oczekiwanie na płytę...\n" + +#: 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 "Stored label: %s\n" +msgstr "Etykieta: %s \n" + +#: 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:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone " -"w pakietach \"%s\"" +"Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów " +"tłumaczeń i %zu podpisów\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " -"pakietu %s" +"Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " +"Debiana lub jest to inna architektura?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, 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 "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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja " -"pakietu %s nie spełnia wymagań wersji" +"Płyta nosi nazwę: \n" +"\"%s\"\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma " -"wersji kandydującej" +"Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " +"archiwum." + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, 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" +msgid "Failed to open StateFile %s" +msgstr "Nie udało się otworzyć pliku stanu %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, 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 "Failed to write temporary StateFile %s" +msgstr "Nie udało się zapisać tymczasowego pliku stanu %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Nie udało się przetworzyć zależności dla budowania" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nie udało się zanalizować pliku pakietu %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Dziennik zmian %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Nie udało się zanalizować pliku pakietu %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Obsługiwane moduły:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nie udało się odnaleźć pakietu %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Nie udało się odnaleźć zadania \"%s\"" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" + +#: apt-pkg/cacheset.cc:616 +#, 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\"" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:627 +#, 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:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"Nie udało się wybrać zainstalowanej ani kandydującej wersji pakietu \"%s\", " +"ponieważ nie ma żadnej z nich" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " -"źródła" +"Nie udało się wybrać najnowszej wersji pakietu \"%s\", ponieważ jest on " +"czysto wirtualny" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" +"Nie udało się wybrać wersji kandydującej pakietu %s, ponieważ nie ma " +"kandydata" -#: 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/cacheset.cc:664 +#, c-format +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" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, 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 "Unable to parse Release file %s" +msgstr "Nie udało się przeanalizować pliku Release %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s został już ustawiony jako zainstalowany ręcznie.\n" +msgid "No sections in Release file %s" +msgstr "Brak sekcji w pliku Release %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s został już ustawiony jako zainstalowany automatycznie.\n" +msgid "No Hash entry in Release file %s" +msgstr "Brak wpisu Hash w pliku Release %s" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s został już zatrzymany.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Nieprawidłowy wpis Valid-Until w pliku Release %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s został już odznaczony jako zatrzymany.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nieprawidłowy wpis Date w pliku Release %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 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Oczekiwano na proces %s, ale nie było go" +#: 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)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%s set on hold.\n" -msgstr "%s został zatrzymany.\n" +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ć)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Odznaczono zatrzymanie %s\n" +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)" -# 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/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)" -#: 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/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)" -#: 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/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" +"Nieprawidłowa linia %lu w liście źródeł %s ([%s] klucz %s nie ma wartości)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Nieprawidłowa linia %lu w liście źródeł %s (URI)" -#: 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/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/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Niewłaściwa płyta CD" +#: 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/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:217 #, 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." +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/cdrom.cc:254 -msgid "Disk not found." -msgstr "Nie odnaleziono dysku." +#: 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Nie odnaleziono pliku" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otwieranie %s" -#: 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/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/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/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/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/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" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Logowanie się" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalowanie %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nie można określić nazwy zdalnego systemu" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Konfigurowanie %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nie udało się określić nazwy lokalnego systemu" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Usuwanie %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s" +msgid "Completely removing %s" +msgstr "Całkowite usuwanie %s" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "USER failed, server said: %s" -msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s" +msgid "Noting disappearance of %s" +msgstr "Proszę odnotować zniknięcie %s" -#: methods/ftp.cc:232 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s" +msgid "Running post-installation trigger %s" +msgstr "Uruchamianie wyzwalacza post-installation %s" -#: 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." +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Brakuje katalogu \"%s\"" -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "" -"Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: " -"%s" +msgid "Could not open file '%s'" +msgstr "Nie udało się otworzyć pliku \"%s\"" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s" +msgid "Preparing %s" +msgstr "Przygotowywanie %s" -#: 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/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Rozpakowywanie %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serwer zamknął połączenie" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Przygotowywanie do konfiguracji %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 "Błąd odczytu" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Pakiet %s został zainstalowany" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odpowiedź przepełniła bufor." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Przygotowywanie do usunięcia %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Naruszenie zasad protokołu" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Pakiet %s został usunięty" -#: 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/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Przygotowywanie do całkowitego usunięcia %s" -#: 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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Pakiet %s został całkowicie usunięty" -#: 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/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Nie udało się" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nie udało się pisać do %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:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: 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:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nie udało się przyłączyć gniazda" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Oczekiwano na proces %s, ale nie było go" -#: 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:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Operacja została przerwana, zanim mogła zostać zakończona" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nie udało się określić nazwy gniazda" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "Brak raportu programu apport, ponieważ osiągnięto limit MaxReports" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nie można wysłać polecenia PORT" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problemy z zależnościami - pozostawianie nieskonfigurowanego" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Nieznana rodzina adresów %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1632 +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." -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s" +#: apt-pkg/deb/dpkgpm.cc:1638 +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" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Przekroczony czas połączenia gniazda danych" +#: apt-pkg/deb/dpkgpm.cc:1645 +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" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nie udało się przyjąć połączenia" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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/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/deb/dpkgpm.cc:1679 +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/ftp.cc:890 +#: apt-pkg/deb/debsystem.cc:91 #, 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 "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " +"używa?" -#: methods/ftp.cc:935 +# Musi pasować do su i sudo. +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s" +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?" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Info" +#. 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/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nie można wywołać " +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Niezablokowany" -#: methods/connect.cc:76 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Łączenie z %s (%s)" +msgid "%lid %lih %limin %lis" +msgstr "%lidni %lig %limin %lis" -#: methods/connect.cc:87 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "%lih %limin %lis" +msgstr "%lig %limin %lis" -#: methods/connect.cc:94 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, 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 "%limin %lis" +msgstr "%limin %lis" -#: methods/connect.cc:100 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)." +msgid "%lis" +msgstr "%lis" -#: methods/connect.cc:108 +#: apt-pkg/contrib/strutl.cc:1243 #, 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 "Selection %s not found" +msgstr "Nie odnaleziono wyboru %s" -#: methods/connect.cc:126 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nie udało się połączyć z %s:%s (%s)." +msgid "Not using locking for read only lock file %s" +msgstr "Dla pliku blokady %s tylko do odczytu nie zostanie użyta blokada" -#. 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/contrib/fileutl.cc:196 #, c-format -msgid "Connecting to %s" -msgstr "Łączenie z %s" +msgid "Could not open lock file %s" +msgstr "Nie udało się otworzyć pliku blokady %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Dla pliku blokady %s montowanego przez NFS nie zostanie użyta blokada" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:224 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" +msgid "Could not get lock %s" +msgstr "Nie udało się uzyskać blokady %s" -#: 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/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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" -#: methods/connect.cc:211 +#: apt-pkg/contrib/fileutl.cc:395 #, 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)" +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" -#: methods/connect.cc:258 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nie udało się połączyć z %s:%s:" +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" -#: methods/gpgv.cc:168 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" +"Ignorowanie pliku \"%s\" w katalogu \"%s\", ponieważ ma on nieprawidłowe " +"rozszerzenie pliku" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s spowodował naruszenie ochrony pamięci." -#: 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?)" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Podproces %s otrzymał sygnał %u." -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Podproces %s zwrócił kod błędu (%u)" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Nieznany błąd podczas uruchamiania gpgv" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Podproces %s zakończył się niespodziewanie" -#: 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/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Błąd zapisu" -#: 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/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem przy zamykaniu pliku gzip %s" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Puste pliki nie mogą być prawidłowymi archiwami" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nie udało się otworzyć pliku %s" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Błąd przy pisaniu do pliku" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nie udało się otworzyć deskryptora pliku %d" -#: 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/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Nie udało się utworzyć IPC z podprocesem" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Błąd czytania z serwera" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Nie udało się uruchomić kompresora " -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Błąd przy pisaniu do pliku" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Błąd odczytu" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Operacja select nie powiodła się" +#: apt-pkg/contrib/fileutl.cc:1552 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "należało przeczytać jeszcze %llu, ale nic nie zostało" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Przekroczenie czasu połączenia" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Błąd przy pisaniu do pliku wyjściowego" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem przy zamykaniu pliku %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Oczekiwanie na nagłówki" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem przy zapisywaniu pliku %s w %s" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Nieprawidłowa linia nagłówka" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem przy odlinkowywaniu pliku %s" -#: 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/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problem przy zapisywaniu pliku na dysk" -#: 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/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nie można wykonać operacji stat na %s" -#: 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/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Błąd!" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Gotowe" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Nieznany format daty" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Błędne dane nagłówka" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Gotowe" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Połączenie nie powiodło się" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nie można wykonać mmap na pustym pliku" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Błąd wewnętrzny" +#: 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-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Obliczanie aktualizacji..." +#: 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-upgrade.cc:28 -msgid "Done" -msgstr "Gotowe" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nie udało się zamknąć mmap" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: 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-list.cc:131 -msgid "Listing" +#: 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-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nie udało się uciąć zawartości pliku %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 "" +"Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-" +"Start. Bieżąca wartość: %lu. (man 5 apt.conf)" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/mmap.cc:446 #, 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 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-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Naprawianie zależności..." +#: 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." -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " nie udało się." +#: 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-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nie udało się naprawić zależności" +#: 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Nie udało się zminimalizować zbioru aktualizacji" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nierozpoznany skrót typu: \"%c\"" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Gotowe" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Otwieranie pliku konfiguracyjnego %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/configuration.cc:803 +#, c-format +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-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Niespełnione zależności. Proszę spróbować użyć -f." +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Błąd składniowy %s:%u: Błędny znacznik" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci" + +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/configuration.cc:886 +#, 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" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, 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:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\"" + +#: apt-pkg/contrib/configuration.cc:902 +#, 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-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Zainstalowany]" +#: apt-pkg/contrib/configuration.cc:952 +#, 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" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Zainstalowany]" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Brak zainstalowanej bazy kluczy w %s." -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opcja linii poleceń \"%c\" [z %s] jest nieznana." -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -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 "Niezrozumiała opcja linii poleceń %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "but %s is installed" -msgstr "ale %s jest zainstalowany" +msgid "Command line option %s is not boolean" +msgstr "Opcja linii poleceń %s nie jest typu logicznego" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "but %s is to be installed" -msgstr "ale %s ma zostać zainstalowany" +msgid "Option %s requires an argument." +msgstr "Opcja %s wymaga argumentu." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ale nie da się go zainstalować" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =." -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ale jest pakietem wirtualnym" +#: apt-pkg/contrib/cmndline.cc:278 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opcja %s wymaga argumentu typu całkowitego, nie \"%s\"" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ale nie jest zainstalowany" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opcja \"%s\" jest zbyt długa" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ale nie zostanie zainstalowany" +#: apt-pkg/contrib/cmndline.cc:341 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "Znaczenie %s jest nieznane, proszę spróbować true lub false." -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " lub" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Nieprawidłowa operacja %s" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Następujące pakiety mają niespełnione zależności:" +#: cmdline/apt-cache.cc:149 +#, 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" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Zostaną zainstalowane następujące NOWE pakiety:" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Liczba nazw pakietów: " -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Następujące pakiety zostaną USUNIĘTE:" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Liczba wszystkich typów pakietów: " -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Następujące pakiety zostały zatrzymane:" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Zwykłych pakietów: " -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Następujące pakiety zostaną zaktualizowane:" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Czysto wirtualnych pakietów: " -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:" - -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Zostaną zmienione następujące zatrzymane pakiety:" - -#: apt-private/private-output.cc:667 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (z powodu %s) " - -#: apt-private/private-output.cc:675 -msgid "" -"WARNING: The following essential packages will be removed.\n" -"This should NOT be done unless you know exactly what you are doing!" -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!" - -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizowanych, %lu nowo instalowanych, " - -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu ponownie instalowanych, " - -#: apt-private/private-output.cc:712 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu cofniętych wersji, " - -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" - -#: apt-private/private-output.cc:718 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\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:740 -msgid "[Y/n]" -msgstr "[T/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:746 -msgid "[y/N]" -msgstr "[t/N]" - -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "T" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" - -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Błąd kompilacji wyrażenia regularnego - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Polecenie update nie wymaga żadnych argumentów" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Pojedynczych pakietów wirtualnych: " -#: 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] "" -msgstr[2] "" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Mieszanych pakietów wirtualnych: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Brakujących: " -#: 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] "" -msgstr[2] "" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "W sumie różnych wersji: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "W sumie różnych opisów: " -#: 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!" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "W sumie zależności: " -#: 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." +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "W sumie zależności wersja/plik: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Błąd wewnętrzny, sortowanie niezakończone" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "W sumie zależności opis/plik: " -#: 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" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "W sumie mapowań zapewnień: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Konieczne pobranie %sB/%sB archiwów.\n" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "W sumie dopasowanych napisów: " -#. TRANSLATOR: The required space between number and unit 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 "Konieczne pobranie %sB archiwów.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Sumaryczny rozmiar obszaru zależności od wersji: " -#. TRANSLATOR: The required space between number and unit 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 "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" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " -#. TRANSLATOR: The required space between number and unit 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 "After this operation, %sB disk space will be freed.\n" -msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Całkowity rozmiar: " -#: apt-private/private-install.cc:200 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca." - -#: 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-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." - -# 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!" +msgid "Package file %s is out of sync." +msgstr "Plik pakietu %s jest przestarzały." -#: 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" -" ?] " +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Przerwane." +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Należy podać przynajmniej jeden wzorzec" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Kontynuować?" +#: cmdline/apt-cache.cc:1472 +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:313 -msgid "Some files failed to download" -msgstr "Nie udało się pobrać niektórych plików" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Plików pakietów:" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" 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: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-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nie udało się poprawić brakujących pakietów." - -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Przerywanie instalacji" +"Magazyn podręczny jest przestarzały, nie można odwołać się (x-ref) do pliku " +"pakietu." -#: 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] "" -"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:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Przypięte pakiety:" -#: 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." +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nie znaleziono)" -#: 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" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Zainstalowana: " -#: 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 "" -"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." +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandydująca: " -#. -#. 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ę:" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(brak)" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Sposób przypięcia: " -#: 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] "" -"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:" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabela wersji:" -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, 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: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 "" -"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:" - -#: 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)." +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s dla %s skompilowany %s %s\n" -#: apt-private/private-install.cc:638 +#: cmdline/apt-cache.cc:1801 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\")." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pakiety są uszkodzone" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Sugerowane pakiety:" - -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Polecane pakiety:" - -#: apt-private/private-install.cc:825 -#, 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" - -#: apt-private/private-install.cc:829 -#, 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" - -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\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 "" -"Ponowna instalacja pakietu %s nie jest możliwa, nie może on zostać pobrany.\n" - -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s jest już w najnowszej wersji.\n" - -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Wybrano wersję \"%s\" (%s) pakietu \"%s\"\n" +"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-private/private-install.cc:899 -#, 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-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\"" -#. 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 "" -"Pakiet %s nie jest zainstalowany, więc nie zostanie usunięty. Czy chodziło o " -"\"%s\"?\n" +#: 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-private/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, 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" +msgid "Failed to mount '%s' to '%s'" +msgstr "Nie udało się zamontować \"%s\" w \"%s\"" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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" +#: 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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Zainstalować te pakiety bez weryfikacji?" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nie są w parach" -#: 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" +#: 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-private/private-sources.cc:58 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Nie udało się zmienić nazwy %s na %s" - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "Can not find a package for architecture '%s'" msgstr "" +"Nie udało się znaleźć żadnego pakietu według wyrażenia regularnego \"%s\"" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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\"" -# Ujednolicono z aptitude -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Stary " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Pobieranie:" +#: 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\"" -# Wyrównane do Hit i Err. -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign. " +#: cmdline/apt-get.cc:367 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n" -# Wyrównane do Hit i Ign. -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Błąd " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Pobrano %sB w %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Nie udało się odnaleźć pakietu %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Pracuje]" +msgid "%s set to manually installed.\n" +msgstr "%s zaznaczony jako zainstalowany ręcznie.\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 zaznaczony jako zainstalowany automatycznie.\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 "" -"Zmiana nośnika: Proszę włożyć dysk oznaczony\n" -" \"%s\"\n" -"do napędu \"%s\" i nacisnąć enter\n" +"To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"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 "Nie można czytać %s" +#: 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" -#: 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" +#: 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" -#. 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\"" +#: 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" -#. 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:766 cmdline/apt-get.cc:1091 #, 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\"" +msgid "Unable to find a source package for %s" +msgstr "Nie udało się odnaleźć źródła dla pakietu %s" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:786 #, 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ą" - -#: 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" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"spowodowane brakującymi zależnościami. Jest to normalne. Tylko błędy nad tym" +"UWAGA: pakietowanie \"%s\" jest zarządzane w systemie kontroli wersji \"%s\" " +"pod adresem:\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 "" -"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" - -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode wywołane na wciąż podłączonym węźle" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Nie udało się odnaleźć elementu tablicy haszującej!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nie udało się utworzyć ominięcia" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Błąd wewnętrzny w AddDiversion" +"Proszę użyć:\n" +"bzr branch %s\n" +"by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " +"pakietu.\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Próba nadpisania ominięcia, %s -> %s i %s/%s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Podwójne dodanie ominięcia %s -> %s" +msgid "Couldn't determine free space in %s" +msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Zduplikowany plik konfiguracyjny %s/%s" +msgid "You don't have enough free space in %s" +msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" -#: 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:893 #, c-format -msgid "The path %s is too long" -msgstr "Ścieżka %s jest zbyt długa" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\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:898 #, c-format -msgid "Unpacking %s more than once" -msgstr "Wypakowanie %s więcej niż raz" +msgid "Need to get %sB of source archives.\n" +msgstr "Konieczne pobranie %sB archiwów źródeł.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is diverted" -msgstr "Ominięcie katalogu %s" +msgid "Fetch source %s\n" +msgstr "Pobieranie źródeł %s\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:922 +msgid "Failed to fetch some archives." +msgstr "Nie udało się pobrać niektórych archiwów." -#: 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:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Ukończono pobieranie w trybie samego pobierania" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "Nie udało się wykonać operacji stat na %s" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Nie udało się zmienić nazwy %s na %s" +msgid "Unpack command '%s' failed.\n" +msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:965 #, 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" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" -#: 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" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Polecenie budowania \"%s\" zawiodło.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Ścieżka jest zbyt długa" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Proces potomny zawiódł" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Nadpisujący pakiet nie pasuje z wersją %s" +#: cmdline/apt-get.cc:1031 +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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" +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-inst/extract.cc:498 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "Nie można wykonać operacji stat na %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "Nie udało się zapisać pliku %s" +msgid "%s has no build depends.\n" +msgstr "%s nie ma zależności dla budowania.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Failed to close file %s" -msgstr "Nie udało się zamknąć pliku %s" +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-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, 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 "" +"%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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1337 #, 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 "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-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1376 #, 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" +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-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archiwum jest za krótkie" +#: cmdline/apt-get.cc:1382 +#, 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" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Nie udało się odczytać nagłówków archiwum" +#: cmdline/apt-get.cc:1405 +#, 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-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Nie udało się utworzyć potoków" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Nie udało się spełnić zależności dla budowania %s." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Nie udało się uruchomić programu gzip " +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Nie udało się przetworzyć zależności dla budowania" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Uszkodzone archiwum" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Dziennik zmian %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Obsługiwane moduły:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Nieznany typ nagłówka TAR %u, składnik %s" +#: cmdline/apt-get.cc:1657 +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" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nie udało się wykonać operacji stat na pliku %s." +#: 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" -#: 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 "Uruchamianie 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 "System pakietów \"%s\" nie jest obsługiwany" - -#: 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" +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/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Wrote %i records.\n" -msgstr "Zapisano %i rekordów.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s został już ustawiony jako zainstalowany ręcznie.\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 "Zapisano %i rekordów z %i brakującymi plikami.\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s został już ustawiony jako zainstalowany automatycznie.\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 "Zapisano %i rekordów z %i niepasującymi plikami\n" +msgid "%s was already set on hold.\n" +msgstr "%s został już zatrzymany.\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 "Zapisano %i rekordów z %i brakującymi plikami i %i niepasującymi\n" +msgid "%s was already not hold.\n" +msgstr "%s został już odznaczony jako zatrzymany.\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 "Nie udało się znaleźć wpisu uwierzytelnienia dla: %s" +msgid "%s set on hold.\n" +msgstr "%s został zatrzymany.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Błędna suma kontrolna dla: %s" +msgid "Canceled hold on %s.\n" +msgstr "Odznaczono zatrzymanie %s\n" -#: 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." +# 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/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-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/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nie uruchomiła się poprawnie" +#: 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 "Proszę włożyć do napędu \"%s\" dysk o nazwie: \"%s\" i nacisnąć enter." - -#: 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." - -#: 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." - -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Nie udało się odczytać list źródeł." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Pusty magazyn podręczny pakietów" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Magazyn podręczny pakietów jest uszkodzony" +msgid "Unable to read the cdrom database %s" +msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Magazyn podręczny pakietów jest w niezgodnej wersji" +#: 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:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Magazyn podręczny pakietów jest uszkodzony - jest zbyt mały" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Niewłaściwa płyta CD" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\"" - -#: 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" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Wymaga" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Wymaga wstępnie" - -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugeruje" - -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Poleca" - -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "W konflikcie z" - -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zastępuje" - -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Dezaktualizuje" - -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Narusza zależności" +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 "Enhances" -msgstr "Rozszerza" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Nie odnaleziono dysku." -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "ważny" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Nie odnaleziono pliku" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "wymagany" +#: 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 "standard" -msgstr "standardowy" +#: 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:335 -msgid "optional" -msgstr "opcjonalny" +#: 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:335 -msgid "extra" -msgstr "dodatkowy" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Logowanie się" -#: apt-pkg/pkgrecords.cc:38 -#, c-format -msgid "Index file type '%s' is not supported" -msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nie można określić nazwy zdalnego systemu" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Magazyn podręczny ma niezgodny system wersji" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nie udało się określić nazwy lokalnego systemu" -#. 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 "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ć." +msgid "The server refused the connection and said: %s" +msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %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ć." +#: methods/ftp.cc:225 +#, c-format +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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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: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" +#: 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" + +#: 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" -#: apt-pkg/acquire-item.cc:1677 +#: 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 "" -"Plik Release dla %s wygasnął (nieprawidłowy od %s). Aktualizacje z tego " -"repozytorium nie będą wykonywane." +msgid "Unable to fetch file, server said '%s'" +msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Przekroczony czas oczekiwania na dane" + +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" +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ć " -#: 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 "" -"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 "Connecting to %s (%s)" +msgstr "Łączenie z %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 "Błąd 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 "" -"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 "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-item.cc:1933 +#: methods/connect.cc:100 #, 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\"" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nie udało się zainicjalizować połączenia z %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 "" -"Pliki indeksu pakietów są uszkodzone. Brak pola Filename: dla pakietu %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/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Blok producenta %s nie zawiera odcisku" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nie udało się połączyć z %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 "Brakuje katalogu list %spartial." +msgid "Connecting to %s" +msgstr "Łączenie z %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Brakuje katalogu archiwów %spartial." +msgid "Could not resolve '%s'" +msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Nie udało się zablokować katalogu %s" +msgid "Temporary failure resolving '%s'" +msgstr "Tymczasowy błąd przy tłumaczeniu \"%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 "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Pobieranie pliku %li z %li (pozostało %s)" +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/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pobieranie pliku %li z %li" +msgid "Unable to connect to %s:%s:" +msgstr "Nie udało się połączyć z %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 "" -"Nie udało się pobrać niektórych plików indeksu, zostały one zignorowane lub " -"użyto ich starszej wersji." +"Błąd wewnętrzny: Prawidłowy podpis, ale nie udało się ustalić odcisku klucza!" -#: 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" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Napotkano przynajmniej jeden nieprawidłowy podpis." -#: 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 "" -"Wartość %s jest nieprawidłowa dla APT::Default-Release, ponieważ takie " -"wydanie nie jest dostępne w źródłach" - -#: apt-pkg/policy.cc:422 -#, 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" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Nierozpoznany typ przypinania %s" - -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Brak (lub zerowy) priorytet przypięcia" +"Nie udało się uruchomić gpgv by zweryfikować podpis (czy gpgv jest " +"zainstalowane?)" -#: 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 "" -"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)" -#: 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:184 +msgid "Unknown error executing gpgv" +msgstr "Nieznany błąd podczas uruchamiania gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: 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" + +#: 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 "" -"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." +"Następujące podpisy nie mogły zostać zweryfikowane z powodu braku klucza " +"publicznego:\n" -#: 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/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Puste pliki nie mogą być prawidłowymi archiwami" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odmontowanie 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:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Użycie %s jako punktu montowania CD-ROM-u\n" +#: 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:599 -msgid "Waiting for disc...\n" -msgstr "Oczekiwanie na płytę...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Błąd czytania z serwera" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montowanie CD-ROM-u...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Błąd przy pisaniu do pliku" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identyfikacja... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Operacja select nie powiodła się" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etykieta: %s \n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Przekroczenie czasu połączenia" -#: 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:649 +msgid "Error writing to output file" +msgstr "Błąd przy pisaniu do pliku wyjściowego" -#: 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/server.cc:51 +msgid "Waiting for headers" +msgstr "Oczekiwanie na nagłówki" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Nieprawidłowa linia nagłówka" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Znaleziono etykietę \"%s\"\n" +#: 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: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: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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Płyta nosi nazwę: \n" -"\"%s\"\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/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopiowanie list pakietów..." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisywanie nowej listy źródeł\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Nieznany format daty" -#: 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:496 +msgid "Bad header data" +msgstr "Błędne dane nagłówka" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Połączenie nie powiodło się" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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." +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Błąd wewnętrzny" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Budowanie drzewa zależności" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Obliczanie aktualizacji..." -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandydujące wersje" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Gotowe" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generowanie zależności" +#: 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 "Odczyt informacji o stanie" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Nie udało się otworzyć pliku stanu %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 "Nie udało się zapisać tymczasowego pliku stanu %s" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Naprawianie zależności..." -#: apt-pkg/tagfile.cc:140 -#, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Nie udało się zanalizować pliku pakietu %s (1)" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " nie udało się." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Nie udało się naprawić 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: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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Zainstalowany]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Zainstalowany]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +msgid "The following packages have been kept back:" +msgstr "Następujące pakiety zostały zatrzymane:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Następujące pakiety zostaną zaktualizowane:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Zostaną zainstalowane STARE wersje następujących pakietów:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Zostaną zmienione następujące zatrzymane pakiety:" + +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, 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:714 #, 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:718 #, 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:740 +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:746 +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:757 +msgid "Y" +msgstr "T" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "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\" jest nieznany w linii %u listy źródeł %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:95 +#: apt-private/private-update.cc:90 #, c-format -msgid "Installing %s" -msgstr "Instalowanie %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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Konfigurowanie %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-show.cc:156 #, c-format -msgid "Removing %s" -msgstr "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:98 -#, c-format -msgid "Completely removing %s" -msgstr "Całkowite usuwanie %s" +#: 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 "Proszę odnotować zniknięcie %s" +#: apt-private/private-install.cc:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +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:224 +#, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Przerwane." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Kontynuować?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Nie udało się pobrać niektórych plików" + +#: apt-private/private-install.cc:322 +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:326 +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:331 +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:332 +msgid "Aborting install." +msgstr "Przerywanie instalacji" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:368 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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Uwaga: dpkg wykonał to automatycznie i celowo." + +#: apt-private/private-install.cc:393 +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:1651 +#: apt-private/private-install.cc:501 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 "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " -"braku wolnej pamięci" +"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:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" + +#: apt-private/private-install.cc:515 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" +"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:519 +#, 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:521 +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-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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Brak raportu programu apport, ponieważ komunikat błędu wskazuje na błąd " -"wejścia/wyjścia dpkg" +"Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:616 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "" -"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " -"używa?" - -# 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?" +"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:640 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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Polecane pakiety:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:851 #, 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:1243 +#: apt-private/private-install.cc:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Błąd " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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]" + +#: 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" -#: 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" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Nieprawidłowe ustawienie domyślne!" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nie udało się zamknąć 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 "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-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-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "Opcja %s: Specyfikacja elementu konfiguracji musi zawierać =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3317,12 +3330,7 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nie można wykonać operacji stat na %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nie udało się pobrać wersji debconf. Czy debconf jest zainstalowany?" @@ -3442,17 +3450,17 @@ msgstr "Nie dopasowano żadnej nazwy" msgid "Some files are missing in the package file group `%s'" msgstr "Brakuje pewnych plików w grupie plików pakietów \"%s\"" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Baza była uszkodzona, plik został przeniesiony do %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Baza jest przestarzała, próbuję zaktualizować %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3460,105 +3468,105 @@ msgstr "" "Niepoprawny format bazy. Jeśli zaktualizowano ze starszej wersji apt, proszę " "usunąć i utworzyć ponownie bazę danych." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nie udało się otworzyć pliku bazy %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Nie udało się odczytać dowiązania %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Archiwum nie posiada rekordu kontrolnego" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Nie udało się pobrać kursora" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Nie udało się odczytać katalogu %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Nie można wykonać operacji stat na %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Błędy odnoszą się do pliku " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Nie udało się przetłumaczyć nazwy %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Przejście po drzewie nie powiodło się" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Nie udało się otworzyć %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Odłączenie %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Nie udało się odczytać dowiązania %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Nie udało się usunąć %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nie udało się dowiązać %s do %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Osiągnięto ograniczenie odłączania %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archiwum nie posiadało pola pakietu" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nie posiada wpisu w pliku override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " opiekunem %s jest %s, a nie %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nie posiada wpisu w pliku override źródeł\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nie posiada również wpisu w pliku override binariów\n" diff --git a/po/pt.po b/po/pt.po index 5376bc3a7..854bd36ef 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" @@ -18,3267 +18,3280 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.0\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Cache de pacotes vazia" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "O ficheiro de cache de pacotes está corrompido" + +#: apt-pkg/pkgcache.cc:161 +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:164 +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:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "O ficheiro do pacote %s está dessincronizado." +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: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/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "A cache de pacotes foi gerada para uma arquitectura diferente" -#: 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:324 +msgid "Depends" +msgstr "Depende" -#: 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:324 +msgid "PreDepends" +msgstr "Pré-Depende" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Sugere" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomenda" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Em Conflito" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Substitui" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Obsoleta" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Estraga" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Aumenta" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "necessário" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "padrão" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Não foi possível encontrar o pacote %s" +msgid "Index file type '%s' is not supported" +msgstr "Tipo do ficheiro de índice '%s' não é suportado" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Ficheiros de Pacotes :" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erro de compilação de regex - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "A cache possui um sistema de versões incompatível" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Ocorreu um erro ao processar %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"A cache está dessincronizada, não pode x-referenciar um ficheiro de pacote" +"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " +"suportar." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacotes Marcados:" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(não encontrado)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nenhum)" +#: apt-pkg/pkgcachegen.cc:1233 +#, 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" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Marcação do Pacote: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "A ler as listas de pacotes" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de Versão:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "A obter File Provides" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado em %s %s\n" +msgid "Unable to write to %s" +msgstr "Não conseguiu escrever para %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 "" -"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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Erro de I/O ao gravar a cache de código fonte" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Enviar cenário a resolver" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "Enviar pedido para resolvedor" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falhou ao montar '%s' para '%s'" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Preparar para receber solução" -#: 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/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-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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Executar resolvedor externo" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "os argumentos não estão em pares" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "falhou renomear, %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 "" -"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-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Código de verificação hash não coincide" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Tamanho incorrecto" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operação %s inválida" -#: 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/acquire-item.cc:1679 +#, 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)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, 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" +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" -#: 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'" +#: apt-pkg/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossível encontrar o pacote %s" +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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s está definido para ser instalado manualmente.\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:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, 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 "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"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 "" -"Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " -"e 'apt-mark manual'." - -#: 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" +"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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, 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" +msgid "GPG error: %s: %s" +msgstr "Erro GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões " -"'%s' em:\n" -"%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:791 +#: apt-pkg/acquire-item.cc:2038 +#, 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'" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Por favor utilize:\n" -"bzr branch %s\n" -"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" +"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " +"para o pacote %s." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Não foi possível determinar o espaço livre em %s" +msgid "List directory %spartial is missing." +msgstr "Falta directório de listas %spartial." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Você não possui espaço livre suficiente em %s" +msgid "Archives directory %spartial is missing." +msgstr "Falta o directório de arquivos %spartial." -#. 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.cc:100 #, 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 lock directory %s" +msgstr "Impossível criar acesso exclusivo ao directório %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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "É necessário obter %sB de arquivos de código fonte.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "A obter o ficheiro %li de %li (%s restantes)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter código fonte %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falhou obter alguns arquivos." - -#: 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" +msgid "Retrieving file %li of %li" +msgstr "A obter o ficheiro %li de %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Falhou obter %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 "" -"A saltar a descompactação do pacote de código fonte já descompactado em %s\n" +"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os " +"antigos foram usados em seu lugar." + +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "O comando de descompactação '%s' falhou.\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"O valor '%s' é inválido para APT::Default-Release porque tal lançamento não " +"está disponível nas fontes" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" +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:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "O comando de compilação '%s' falhou.\n" +msgid "Did not understand pin type %s" +msgstr "Não foi possível entender o tipo de marca (pin) %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "O processo filho falhou" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Deve especificar pelo menos um pacote para verificar as dependências de " -"compilaçã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)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Não pode configurar '%s'. " -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" -"Nenhuma informação de arquitectura disponível para %s. Para configuração " -"veja apt.conf(5) APT::Architectures" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "Line %u too long in source list %s." +msgstr "Linha %u é demasiado longa na lista de fontes %s." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "A desmontar o CD-ROM...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s não tem dependências de compilação.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "A aguardar pelo disco...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "A montar o CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "A identificar... " + +#: 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" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " -"em pacotes '%s'" +"Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " +"índices de tradução e %zu assinaturas\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " -"pôde ser encontrado" +"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-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, 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 "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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" 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" +"Este disco tem o nome: \n" +"'%s'\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " -"tem versão candidata" +"O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " +"repositório para o mesmo." + +#: 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" -#: cmdline/apt-get.cc:1380 +#: 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 "Failed to satisfy %s dependency for %s: %s" -msgstr "Falha ao satisfazer a dependência %s para %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Falhou abrir o StateFile %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, 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 "Failed to write temporary StateFile %s" +msgstr "Falha escrever ficheiro temporário StateFile %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Falhou processar as dependências de compilação" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changlog para %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Não foi possível fazer parse ao ficheiro de pacote %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos Suportados:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Não foi encontrado o Release '%s' para '%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 "" -"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" - -#: 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" - -#: 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 não pode ser marcado pois não está instalado.\n" - -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cacheset.cc:493 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s já estava definido para ser instalado manualmente.\n" +msgid "Version '%s' for '%s' was not found" +msgstr "Não foi encontrada a versão '%s' para '%s'" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s já estava definido para ser instalado automaticamente.\n" +msgid "Unable to locate package %s" +msgstr "Não foi possível encontrar o pacote %s" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/cacheset.cc:604 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s já estava marcado para manter.\n" +msgid "Couldn't find task '%s'" +msgstr "Não foi possível encontrar a tarefa '%s'" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/cacheset.cc:610 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s já estava para não manter.\n" +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: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 "Esperou por %s mas não estava lá" +#: apt-pkg/cacheset.cc:616 +#, 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'" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "%s set on hold.\n" -msgstr "%s marcado para manter.\n" +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" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Cancelou manter em %s.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Falhou executar dpkg. É 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." +"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:648 +#, 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:656 #, 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:664 #, 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." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Ficheiro 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/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:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Não foi possível fazer parse ao 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:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Nenhuma secção, 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:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Nenhuma entrada hash no ficheiro 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 'Valid-Until' entry in Release file %s" +msgstr "Entrada inválida, 'Valid-until', no ficheiro de 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/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Entrada, 'Date', inválida no ficheiro Release %s" -#: 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: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:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:170 #, 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] unparseable)" +msgstr "" +"Linha mal formada %lu na lista de fontes %s ([opção] não interpretável)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER falhou, o servidor 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:232 +#: apt-pkg/sourcelist.cc:184 #, 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." +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" 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] não é uma atribuição)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:190 #, 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 ([%s] has no key)" +msgstr "Linha mal formada %lu na lista de fontes %s ([%s] não tem chave)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE falhou, o servidor respondeu: %s" - -#: 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" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "O servidor fechou a ligação" - -#: 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" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Uma resposta sobrecarregou o buffer." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupção de 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 "Erro de escrita" - -#: 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" - -#: 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" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falhou" - -#: 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" +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Linha mal formada %lu na lista de fontes %s ([%s] chave %s não tem valor)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Não foi possível fazer o bind a um socket" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linha mal formada %lu na lista de fontes %s (URI)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Não foi possível executar listen no socket" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linha mal formada %lu na lista de fontes %s (distribuição)" -#: 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/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:792 -msgid "Unable to send PORT command" -msgstr "Não foi possível enviar o comando PORT" +#: 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:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Família de endereços %u desconhecida (AF_*)" +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:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falhou, o servidor respondeu: %s" +msgid "Opening %s" +msgstr "A abrir %s" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Ligação de socket de dados expirou" +#: 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:838 -msgid "Unable to accept connection" -msgstr "Impossível aceitar ligação" +#: 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:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Problema ao calcular o hash do ficheiro" +#: 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:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, 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 "Installing %s" +msgstr "A instalar %s" -#: 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 "A transferência de dados falhou, o servidor respondeu '%s'" +msgid "Configuring %s" +msgstr "A configurar %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Pesquisa" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "A remover %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Não foi possível invocar " +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "A remover completamente %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "A Ligar a %s (%s)" +msgid "Noting disappearance of %s" +msgstr "A notar o desaparecimento de %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 "A correr o 'trigger' de pós-instalação %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 "Não foi possível criar um socket para %s (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" +msgstr "Falta o directório '%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 "Não posso iniciar a ligação para %s:%s (%s)." +msgid "Could not open file '%s'" +msgstr "Não foi possível abrir ficheiro o '%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 "Não foi possível ligar a %s:%s (%s), a conexão expirou" +msgid "Preparing %s" +msgstr "A preparar %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Não foi possível ligar em %s:%s (%s)." +msgid "Unpacking %s" +msgstr "A desempacotar %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 "A ligar a %s" +msgid "Preparing to configure %s" +msgstr "A preparar para configurar %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "Não foi possível resolver '%s'" +msgid "Installed %s" +msgstr "%s instalado" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Falha temporária a resolver '%s'" +msgid "Preparing for removal of %s" +msgstr "A preparar a remoção de %s" -#: 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/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s removido" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" +msgid "Preparing to completely remove %s" +msgstr "A preparar para remover completamente %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Não foi possível ligar a %s:%s:" +msgid "Completely removed %s" +msgstr "Remoção completa de %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" 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." +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Não conseguiu escrever para %s" -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -"Não foi possível executar 'gpgv' para verificar a assinatura (o gpgv está " -"instalado?)" -#. 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:1088 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erro desconhecido ao executar gpgv" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Esperou por %s mas não estava lá" -#: 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:1563 +msgid "Operation was interrupted before it could finish" +msgstr "A operação foi interrompida antes de poder terminar" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1625 +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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problemas de dependências - deixando por configurar" + +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" -"As seguintes assinaturas não puderam ser verificadas porque a chave pública " -"não está disponível:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Ficheiros vazios não podem ser arquivos válidos" +"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " +"de seguimento de um erro anterior." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erro ao escrever para o ficheiro" +#: apt-pkg/deb/dpkgpm.cc:1638 +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" -#: 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/deb/dpkgpm.cc:1645 +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" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erro ao ler do servidor" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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/http.cc:561 -msgid "Error writing to file" -msgstr "Erro ao escrever para ficheiro" +#: apt-pkg/deb/dpkgpm.cc:1679 +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/http.cc:621 -msgid "Select failed" -msgstr "A selecção falhou" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +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?" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "O tempo da ligação expirou" +#: 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:649 -msgid "Error writing to output file" -msgstr "Erro ao escrever para o ficheiro de saída" +#. 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/server.cc:51 -msgid "Waiting for headers" -msgstr "A aguardar por cabeçalhos" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Sem acesso exclusivo" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linha de cabeçalho errada" +#. 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: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" +#. 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:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "O servidor HTTP enviou um cabeçalho Content-Length 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:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "O servidor HTTP enviou um cabeçalho Content-Range inválido" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP possui suporte de range errado" +#: 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:220 -msgid "Unknown date format" -msgstr "Formato de data desconhecido" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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:489 -msgid "Bad header data" -msgstr "Dados de cabeçalho errados" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Não foi possível abrir ficheiro de lock %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "A ligação falhou" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erro interno" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Não foi possível obter acesso exclusivo a %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "A calcular a actualização... " +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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:28 -msgid "Done" -msgstr "Pronto" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:413 +#, 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:422 +#, 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:841 #, 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 "A corrigir dependências..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " falhou." +msgid "Sub-process %s received a segmentation fault." +msgstr "O sub-processo %s recebeu uma falha de segmentação." -#: 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:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "O sub-processo %s recebeu o sinal %u." -#: 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:847 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:104 -msgid " Done" -msgstr " Feito" +#: apt-pkg/contrib/fileutl.cc:849 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: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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Erro de escrita" -#: 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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema ao fechar o ficheiro gzip %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:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Não foi possível abrir ficheiro o %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Falhou criar subprocesso IPC" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Falhou executar compactador " -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Erro de leitura" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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:248 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +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:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problema ao fechar o ficheiro %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is installed" -msgstr "mas %s está instalado" +msgid "Problem renaming the file %s to %s" +msgstr "Problema ao renomear o ficheiro %s para %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "mas %s está para ser instalado" +msgid "Problem unlinking the file %s" +msgstr "Problema ao remover o link do ficheiro %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "mas não é instalável" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problema sincronizando o ficheiro" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "mas é um pacote virtual" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Não foi possível fazer stat %s" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "mas não está instalado" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erro !" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "mas não vai ser instalado" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Pronto" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ou" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Os pacotes a seguir têm dependências não satisfeitas:" +#. 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:502 -msgid "The following NEW packages will be installed:" -msgstr "Serão instalados os seguintes NOVOS pacotes:" +#: 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-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-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:528 -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:550 -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:571 -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:592 -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:612 -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:667 +#: 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:675 +#: 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:706 +#: 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-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossível executar stat ao cdrom" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu downgraded, " -msgstr "%lu a que foi feito o downgrade, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviatura de tipo desconhecida: '%c'" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a remover e %lu não actualizados.\n" +msgid "Opening configuration file %s" +msgstr "A abrir o ficheiro de configuração %s" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:803 #, 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:740 -msgid "[Y/n]" -msgstr "[S/n]" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." -#. 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:746 -msgid "[y/N]" -msgstr "s/N]" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erro de sintaxe %s:%u: Tag mal formada" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Erro de compilação de regex - %s" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" -#: 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:890 apt-pkg/contrib/configuration.cc:895 +#, 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-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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)" -msgstr "" +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-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 +#, c-format +msgid "No keyring installed in %s." +msgstr "Nenhum keyring instalado em %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/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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Erro Interno, Ordering não terminou" +#: 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: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/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" -#. 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 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, 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 argument." +msgstr "A opção %s necessita de um argumento." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "É necessário obter %sB de arquivos.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "Opção %s: Especificação de item de configuração tem de ter um =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, 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 "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:172 +#: apt-pkg/contrib/cmndline.cc:309 #, 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 "Option '%s' is too long" +msgstr "Opção '%s' é demasiado longa" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Você não possui espaço livre suficiente em %s." +msgid "Sense %s is not understood, try true or false." +msgstr "O sentido %s não é compreendido, tente verdadeiro ou falso." -#: 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/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operação %s inválida" -#: 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." +#: 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 não satisfeita:\n" -#. 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!" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Total de nomes de pacotes: " -#: 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 nocivo.\n" -"Para continuar escreva a frase '%s'\n" -" ?] " +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Total de estruturas de pacotes: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortado." +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Pacotes normais: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Deseja continuar?" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Pacotes virtuais puros: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Falhou o download de alguns ficheiros" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Pacotes virtuais únicos: " -#: 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?" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Pacotes virtuais misturados: " -#: 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" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Faltam: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Não foi possível corrigir os pacotes em falta." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Total de versões distintas: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "A abortar a instalação." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Total de descrições distintas: " -#: 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] "" -"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:369 +msgid "Total dependencies: " +msgstr "Total de dependências: " -#: 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." +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Total de relações ver/ficheiro: " -#: 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" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Total de relações Desc/Ficheiro: " -#: 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 "" -"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:376 +msgid "Total Provides mappings: " +msgstr "Total de Mapeamentos 'Provides': " -#. -#. 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:" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Total de strings globbed: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Erro Interno, o AutoRemover estragou coisas" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Espaço total de dependência de versão: " -#: 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] "" -"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:407 +msgid "Total slack space: " +msgstr "Espaço total desperdiçado: " -#: 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] "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" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Espaço total contabilizado: " -#: 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." +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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-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:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:1306 +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: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." +#: cmdline/apt-cache.cc:1472 +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." +"Este comando foi depreceado. Em vez disso por favor utilize 'apt-mark " +"showauto'." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pacotes estragados" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Ficheiros de Pacotes :" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Os seguintes pacotes extra serão instalados:" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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:802 -msgid "Suggested packages:" -msgstr "Pacotes sugeridos:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pacotes Marcados:" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pacotes recomendados:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(não encontrado)" -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalado: " -#: apt-private/private-install.cc:829 -#, 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:1639 +msgid " Candidate: " +msgstr " Candidato: " -#: apt-private/private-install.cc:841 -#, 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:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(nenhum)" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s já está na versão mais recente.\n" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Marcação do Pacote: " -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versão seleccionada '%s' (%s) para '%s'\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabela de Versão:" -#: apt-private/private-install.cc:899 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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' because of '%s'\n" -msgstr "Versão seleccionada '%s' (%s) para '%s' devido a '%s'\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s para %s compilado em %s %s\n" -#. 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" +#: cmdline/apt-cache.cc:1801 +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 "" -"O pacote '%s' não está instalado, por isso não será removido. Queria dizer " -"'%s'?\n" +"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" + +#: 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'" + +#: 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-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, 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 "Failed to mount '%s' to '%s'" +msgstr "Falhou ao montar '%s' para '%s'" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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!" +#: 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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticação ultrapassado.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "os argumentos não estão em pares" -#: 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-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/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalar estes pacotes sem verificação?" +#: 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/private-download.cc:91 apt-pkg/update.cc:77 -#, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falhou obter %s %s\n" +#: 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/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Falha ao baixar %s %s\n" +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/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, 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 " -msgstr "Hit " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Obter:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +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:125 -msgid "Err " -msgstr "Err " +#: 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'" -#: apt-private/acqprogress.cc:146 +#: 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:891 #, 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" -#: 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-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" -#. 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 "Não foi encontrado ficheiro de mirror '%s'" +#: 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" -#. 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:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Não pode ler ficheiro de mirror '%s'" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Não pode ler ficheiro de mirror '%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" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:786 #, 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" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" 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" +"AVISO: o empacotamento de '%s' é mantido no sistema de controle de versões " +"'%s' em:\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 "A tentar sobrescrever um desvio, %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 "" +"Por favor utilize:\n" +"bzr branch %s\n" +"para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adição dupla de desvio %s -> %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Arquivo de configuração duplicado %s/%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:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:884 #, c-format -msgid "The path %s is too long" -msgstr "O caminho %s é demasiado longo" +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: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:893 #, c-format -msgid "Unpacking %s more than once" -msgstr "A descompactar %s mais de uma vez" +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/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:898 #, c-format -msgid "The directory %s is diverted" -msgstr "O directório %s é desviado" +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:152 +#: cmdline/apt-get.cc:904 #, 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" +msgid "Fetch source %s\n" +msgstr "Obter código fonte %s\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "O caminho de desvio é muito longo" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Falhou obter alguns arquivos." -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Download completo e em modo de fazer apenas o download" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "Falha stat %s" +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:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falhou renomear %s para %s" +msgid "Unpack command '%s' failed.\n" +msgstr "O comando de descompactação '%s' falhou.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:965 #, 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 "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\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:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "O comando de compilação '%s' falhou.\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "O caminho é demasiado longo" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "O processo filho falhou" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Substituir o pacote correspondente sem versão para %s" +#: cmdline/apt-get.cc:1031 +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:438 +#: cmdline/apt-get.cc:1056 #, 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 "" +"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:498 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "Não foi possível fazer stat %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/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "Falhou escrever o ficheiro %s" +msgid "%s has no build depends.\n" +msgstr "%s não tem dependências de compilação.\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Failed to close file %s" -msgstr "Falhou fechar 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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1314 #, 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 "" +"%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:132 +#: cmdline/apt-get.cc:1337 #, 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" - -#: 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" +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/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeçalho membro de arquivo inválido %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Cabeçalho membro de arquivo inválido" +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:137 -msgid "Archive is too short" -msgstr "Arquivo é demasiado pequeno" +#: cmdline/apt-get.cc:1382 +#, 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:141 -msgid "Failed to read the archive headers" -msgstr "Falha ao ler os cabeçalhos do arquivo" +#: cmdline/apt-get.cc:1405 +#, 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/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Falhou a criação de pipes" +#: cmdline/apt-get.cc:1420 +#, 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." -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Falhou executar gzip " +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Falhou processar as dependências de compilação" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo corrompido" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Changlog para %s (%s)" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "A soma de controlo do tar falhou, arquivo corrompido" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Módulos Suportados:" -#: 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" +#: cmdline/apt-get.cc:1657 +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/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Não foi possível fazer stat %s." +#: 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/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 "A correr o dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistema de empacotamento '%s' não é suportado" - -#: 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." +msgid "The server refused the connection and said: %s" +msgstr "O servidor recusou a ligação e respondeu: %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." +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER falhou, o servidor 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:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS 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: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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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" + +#: 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" -#: apt-pkg/acquire-item.cc:1677 +#: 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 "" -"O ficheiro Release para %s está expirado (inválido desde %s). Não serão " -"aplicadas as actualizações para este repositório." +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" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribuição em conflito: %s (esperado %s mas obtido %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: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 "" -"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 "Connecting to %s (%s)" +msgstr "A Ligar a %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 "Erro 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 "" -"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 "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:1933 +#: methods/connect.cc:100 #, 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 "Cannot initiate the connection to %s:%s (%s)." +msgstr "Não posso iniciar a ligação para %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 "" -"Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " -"para o pacote %s." +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/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "O bloco de fabricante %s não contém a impressão digital" +msgid "Could not connect to %s:%s (%s)." +msgstr "Não foi possível ligar em %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 directório de listas %spartial." +msgid "Connecting to %s" +msgstr "A ligar a %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Falta o directório de arquivos %spartial." +msgid "Could not resolve '%s'" +msgstr "Não foi possível resolver '%s'" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Impossível criar acesso exclusivo ao directório %s" +msgid "Temporary failure resolving '%s'" +msgstr "Falha temporária a resolver '%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 "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "A obter o ficheiro %li de %li (%s restantes)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "A obter o ficheiro %li de %li" +msgid "Unable to connect to %s:%s:" +msgstr "Não foi possível ligar 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." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Falhou o download de alguns ficheiros de índice. Foram ignorados ou os " -"antigos foram usados em seu lugar." +"Erro interno: Assinatura válida, mas não foi possível determinar a impressão " +"digital da chave?!" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Pelo menos uma assinatura inválida foi encontrada." -#: 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 "" -"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" - -#: 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)" +"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." +"As seguintes assinaturas não puderam ser verificadas porque a chave pública " +"não está disponível:\n" -#: 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." +#: 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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "A desmontar o CD-ROM...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erro ao escrever para o ficheiro" -#: 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: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:599 -msgid "Waiting for disc...\n" -msgstr "A aguardar pelo disco...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erro ao ler do servidor" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "A montar o CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erro ao escrever para ficheiro" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "A identificar... " +#: methods/http.cc:621 +msgid "Select failed" +msgstr "A selecção falhou" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Label Guardada: %s \n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "O tempo da ligação expirou" -#: 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:649 +msgid "Error writing to output file" +msgstr "Erro ao escrever para o ficheiro 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 "" -"Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " -"índices de tradução e %zu assinaturas\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "A aguardar 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 "" -"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:109 +msgid "Bad header line" +msgstr "Linha de cabeçalho errada" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Encontrada a etiqueta '%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 "Isso 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 "" -"Este disco tem o nome: \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 "A copiar listas de pacotes..." +#: 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:863 -msgid "Writing new source list\n" -msgstr "A escrever lista de novas source\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 "As entradas de listas de Source para este Disco são:\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Dados de cabeçalho errados" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "A ligação falhou" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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." +#: methods/server.cc:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:99 +msgid "Unable to correct dependencies" +msgstr "Não foi possível corrigir dependências" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Não foi possível minimizar o conjunto de actualizações" -#: 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:104 +msgid " Done" +msgstr " Feito" -#: 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: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: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-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependências não satisfeitas. Tente utilizar -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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +msgid "The following packages will be REMOVED:" +msgstr "Serão REMOVIDOS os seguintes pacotes:" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:550 +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:571 +msgid "The following packages will be upgraded:" +msgstr "Serão actualizados os seguintes pacotes:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Será feito o DOWNGRADE aos seguintes pacotes:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Os seguintes pacotes mantidos serão mudados:" + +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, 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:714 #, 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:718 #, 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" + +#. 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:740 +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:746 +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:757 +msgid "Y" +msgstr "S" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "N" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "A abrir %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "O comando update não leva argumentos" -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-update.cc:90 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linha mal formada %u na lista de fontes %s (tipo)" +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 "O tipo '%s' não é conhecido na linha %u na lista de fontes %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 "O tipo '%s' não é conhecido na linha %u na lista de fontes %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 "A instalar %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "A configurar %s" +#: apt-private/private-install.cc:93 +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:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "A remover %s" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Erro Interno, Ordering não terminou" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "A remover completamente %s" +#: apt-private/private-install.cc:150 +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: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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "A notar o desaparecimento de %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "É necessário obter %sB/%sB de arquivos.\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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "A correr o 'trigger' de pós-instalação %s" +msgid "Need to get %sB of archives.\n" +msgstr "É necessário obter %sB de arquivos.\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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "Falta o directório '%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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "Não foi possível abrir ficheiro o '%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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "A preparar %s" +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:990 -#, c-format -msgid "Unpacking %s" -msgstr "A desempacotar %s" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "A preparar para configurar %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "%s instalado" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Sim, faça como eu digo!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "A preparar a remoção de %s" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "%s removido" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Abortado." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "A preparar para remover completamente %s" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Deseja continuar?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Remoção completa de %s" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Falhou o download de alguns ficheiros" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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: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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Não foi possível corrigir os pacotes em falta." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "A abortar a instalação." -#: 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:368 +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:" -#: 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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." -#. 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:393 +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:1638 +#: apt-private/private-install.cc:501 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 "" -"Nenhum relatório apport escrito pois a mensagem de erro indica que é um erro " -"de seguimento de um erro anterior." +"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: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" +#. +#. 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:504 apt-private/private-install.cc:655 +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/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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Erro Interno, o AutoRemover estragou coisas" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:515 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" +"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-private/private-install.cc:519 +#, 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:521 +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:614 +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-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" -"Nenhum relatório apport escrito pois a mensagem de erro indica um erro de I/" -"O do dpkg" +"Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " +"(ou especifique uma solução)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" -"Não foi possível obter acesso exclusivo ao directório de administração (%s), " -"outro processo está a utilizá-lo?" +"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-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?" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Pacotes estragados" -#. 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'" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Os seguintes pacotes extra serão instalados:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Sem acesso exclusivo" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Pacotes sugeridos:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Pacotes recomendados:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:1243 +#: apt-private/private-install.cc:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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-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-pkg/contrib/fileutl.cc:412 +#: 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:88 +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:119 +msgid "Ign " +msgstr "Ign " -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Err " + +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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" + +#: 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:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Pronto" +#: 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" -#: 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 "" +"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:184 #, 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 =." -msgstr "Opção %s: Especificação de item de configuração tem de ter um =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3303,12 +3316,7 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Não foi possível fazer stat %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Não pode obter a versão do debconf. O debconf está instalado?" @@ -3426,17 +3434,17 @@ msgstr "Nenhuma selecção coincidiu" msgid "Some files are missing in the package file group `%s'" msgstr "Faltam alguns ficheiros no grupo `%s' do ficheiro do pacote" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "A base de dados estava corrompida, ficheiro renomeado para %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "A base de dados é antiga, a tentar actualizar %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3444,105 +3452,105 @@ msgstr "" "O formato da BD é inválido. Se actualizou a partir de uma versão antiga do " "apt, por favor remova-a e crie novamente a base de dados." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Não foi possível abrir o ficheiro %s da base de dados: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Falhou o readlink %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "O arquivo não tem registo de controlo" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Não foi possível obter um cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Não foi possível ler o directório %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Não foi possível fazer stat %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Os erros aplicam-se ao ficheiro " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Falhou resolver %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Falhou ao percorrer a árvore" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Falhou abrir %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Falhou o readlink %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Falhou o unlink %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falhou ligar %s a %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limite DeLink de %sB atingido.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arquivo não possuía campo package" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " o maintainer de %s é %s, não %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui fonte de entrada de 'override'\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada binária de 'override'\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 53d4a9667..ea4649a1e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese 1;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Cache de pacotes vazio" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "O arquivo de cache de pacotes está corrompido" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "O arquivo de cache de pacotes é uma versão incompatível" -#: cmdline/apt-cache.cc:1254 +#: apt-pkg/pkgcache.cc:164 #, fuzzy -msgid "You must give at least one search pattern" -msgstr "Você deve passar exatamente um padrão" +msgid "The package cache file is corrupted, it is too small" +msgstr "O arquivo de cache de pacotes está corrompido" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:171 +#, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "O cache de pacotes foi gerado para uma arquitetura diferente" + +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Depende" + +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Pré-Depende" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Sugere" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomenda" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Conflita" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Substitui" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Obsoleta" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Quebra" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "requerido" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "padrão" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opcional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Impossível encontrar o pacote %s" +msgid "Index file type '%s' is not supported" +msgstr "Tipo de arquivo de índice '%s' não é suportado" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Arquivos de pacote:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Erro de compilação de regex - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "O cache possui um sistema de versões incompatível" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Um erro ocorreu processando %s (EncontrarPacote)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"O cache está fora de sincronia, não foi possível fazer a referência cruzada " -"de um arquivo de pacote" +"Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " +"suportar." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pacotes alfinetados (\"pinned\"):" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(não encontrado)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instalado: " +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidato: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(nenhum)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pacote alfinetado (\"pin\"): " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Lendo listas de pacotes" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de versão:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Coletando Arquivo \"Provides\"" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s para %s compilado em %s %s\n" +msgid "Unable to write to %s" +msgstr "Impossível escrever 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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Erro de E/S ao gravar cache fonte" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" 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" -#: cmdline/apt-cdrom.cc:76 -#, fuzzy -msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" msgstr "" -"Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-cdrom.cc:139 -#, fuzzy, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Falhou ao renomear %s para %s" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: 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/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "renomeação falhou, %s (%s -> %s)." -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentos não estão em pares" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash Sum incorreto" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Tamanho incorreto" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Impossível achar pacote %s" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operação %s inválida" -#: 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/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:330 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Impossível achar pacote %s" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: 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/acquire-item.cc:1737 +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:423 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Couldn't find package %s" -msgstr "Impossível achar pacote %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s configurado para instalar manualmente.\n" - -#: 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" - -#: 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." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Erro interno, o solucionador de problemas quebrou coisas" - -#: 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" - -#: 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" - -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Impossível encontrar um pacote fonte para %s" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"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:791 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Pulando arquivo já baixado '%s'\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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Não foi possível determinar o espaço livre em %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" + +#: apt-pkg/acquire.cc:88 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:882 +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Diretório de arquivos %spartial está faltando." + +#: apt-pkg/acquire.cc:100 +#, 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:925 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Você não possui espaço livre suficiente em %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Obtendo o arquivo %li de %li (%s restantes)" -#. 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.cc:927 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" - -#. TRANSLATOR: The required space between number and unit is already included -#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:896 -#, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Preciso obter %sB de arquivos fonte.\n" +msgid "Retrieving file %li of %li" +msgstr "Obtendo arquivo %li de %li" -#: cmdline/apt-get.cc:902 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Fetch source %s\n" -msgstr "Obter fonte %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Falhou ao buscar alguns arquivos." +msgid "Failed to fetch %s %s\n" +msgstr "Falhou ao buscar %s %s\n" -#: 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-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 "" +"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os " +"antigos foram usados no lugar." -#: cmdline/apt-get.cc:950 -#, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" +#: 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" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comando de desempacotamento '%s' falhou.\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:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" +#: 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" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comando de construção '%s' falhou.\n" +msgid "Did not understand pin type %s" +msgstr "Não foi possível entender o tipo de \"pin\" %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Processo filho falhou" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" 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/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Não foi possível abrir arquivo %s" + +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, 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 "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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s não tem dependências de construção.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Usando ponto de montagem de CD-ROM %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Aguardando por disco...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montando CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificando... " + +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +"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-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Rótulo encontrado: '%s'\n" + +#: 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" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Falhou ao satisfazer a dependência de %s por %s: Pacote instalado %s é muito " -"novo" +"Esse disco é chamado: \n" +"'%s'\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiando lista de pacotes..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Gravando nova lista de fontes\n" + +#: 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" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." 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" +"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " +"arquivo para o mesmo." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"a dependência de %s por %s não pode ser satisfeita porque o pacote %s não " -"pode ser encontrado" +"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 "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Construindo á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ência" + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, 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 "Failed to write temporary StateFile %s" +msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Falhou ao processar as dependências de construção" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Impossível analisar arquivo de pacote %s (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Impossível analisar arquivo de pacote %s (2)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' para '%s' não foi encontrada" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versão '%s' para '%s' não foi encontrada" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Impossível encontrar o pacote %s" + +#: apt-pkg/cacheset.cc:604 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectando em %s (%s)" +msgid "Couldn't find task '%s'" +msgstr "Impossível achar tarefa %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Módulos para os quais há suporte:" +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Impossível achar pacote %s" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Impossível achar pacote %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" 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/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "mas não está instalado" +msgid "Unable to parse Release file %s" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s configurado para instalar manualmente.\n" +msgid "No sections in Release file %s" +msgstr "Nota, selecionando %s ao invés de %s\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" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s já é a versão mais nova.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Linha inválida no arquivo de desvios: %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s já é a versão mais nova.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Impossível analisar arquivo de pacote %s (1)" -#: 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 "Esperado %s mas este não estava lá" +#: 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)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s configurado para instalar manualmente.\n" +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)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Falhou ao abrir %s" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" +#: 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)" -#: 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/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)" -#: 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/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)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Impossível ler o banco de dados de cdrom %s" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (URI)" -#: 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/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM errado" +#: 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)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:217 #, 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." +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição absoluta)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disco não encontrado." +#: apt-pkg/sourcelist.cc:224 +#, 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)" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Arquivo não encontrado" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Abrindo %s" -#: 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/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/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/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/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/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" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Efetuando login" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Instalando %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Impossível determinar o nome do ponto" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Configurando %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Impossível determinar o nome local" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Removendo %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "%s completamente removido" + +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "O servidor recusou a conexão e disse: %s" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER falhou, servidor disse: %s" +msgid "Running post-installation trigger %s" +msgstr "Executando gatilho pós-instalação %s" -#: methods/ftp.cc:232 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS falhou, servidor disse: %s" +msgid "Directory '%s' missing" +msgstr "Diretório '%s' está faltando" -#: 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/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/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Comando de script de login '%s' falhou, servidor disse: %s" +msgid "Preparing %s" +msgstr "Preparando %s" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE falhou, servidor disse: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Conexão expirou" +msgid "Unpacking %s" +msgstr "Desempacotando %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Servidor fechou a conexão" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Preparando para configurar %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 "Erro de leitura" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "%s instalado" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Uma resposta sobrecarregou o buffer" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Preparando para a remoção de %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Corrupção de protocolo" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s removido" -#: 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/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Preparando para remover completamente %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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "%s completamente removido" -#: 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/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Falhou" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Impossível escrever para %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Não foi possível conectar um socket passivo." +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: 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/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Não foi possível fazer \"bind\" de um socket" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Não foi possível ouvir no socket" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: 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/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Impossível enviar o comando PORT" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Família de endereços %u desconhecida (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT falhou, servidor disse: %s" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Conexão do socket de dados expirou" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Impossível aceitar conexão" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +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/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Impossível obter arquivo, servidor disse '%s'" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Socket de dados expirou" +#: 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" -#: methods/ftp.cc:935 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Transferência de dados falhou, servidor disse '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Pesquisa" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Impossível invocar " +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/connect.cc:76 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectando em %s (%s)" - -#: methods/connect.cc:87 -#, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:94 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, 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 "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:100 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, 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 "%limin %lis" +msgstr "" -#: methods/connect.cc:108 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, 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 "%lis" +msgstr "" -#: methods/connect.cc:126 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Não foi possível conectar em %s:%s (%s)." +msgid "Selection %s not found" +msgstr "Seleção %s não encontrada" -#. 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/contrib/fileutl.cc:191 #, c-format -msgid "Connecting to %s" -msgstr "Conectando a %s" +msgid "Not using locking for read only lock file %s" +msgstr "Não usando travamento para arquivo de trava somente leitura %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:196 #, c-format -msgid "Could not resolve '%s'" -msgstr "Não foi possível resolver '%s'" +msgid "Could not open lock file %s" +msgstr "Não foi possível abrir arquivo de trava %s" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Falha temporária resolvendo '%s'" - -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" - -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Não usando travamento para arquivo de trava montado via nfs %s" -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Impossível conectar em %s %s:" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Não foi possível obter trava %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" 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." -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Não foi possível executar '%s' para verificar a assinatura (o gpgv está " -"instalado?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Erro desconhecido executando gpgv" - -#: 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 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" 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/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Erro escrevendo para o arquivo" +#: apt-pkg/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: 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/contrib/fileutl.cc:847 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)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Erro lendo do servidor" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Sub-processo %s finalizou inesperadamente" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Erro escrevendo para arquivo" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Erro de escrita" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Seleção falhou" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema fechando o arquivo" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Conexão expirou" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Não foi possível abrir arquivo %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Erro escrevendo para arquivo de saída" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Não foi possível abrir \"pipe\" para %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Aguardando por cabeçalhos" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Falhou ao criar sub-processo IPC" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linha de cabeçalho ruim" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Falhou ao executar compactador " -#: 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/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Erro de leitura" -#: 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/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "leitura, ainda restam %lu para serem lidos mas nenhum deixado" -#: 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/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problema fechando o arquivo" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Formato de data desconhecido" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problema sincronizando o arquivo" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Dados de cabeçalho ruins" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema removendo o arquivo" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Conexão falhou" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problema sincronizando o arquivo" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Erro interno" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Impossível executar \"stat\" em %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculando atualização... " +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Erro!" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Pronto" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Pronto" -#: 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... Pronto" -#: 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/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-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Corrigindo dependências..." +#: 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-cachefile.cc:96 -msgid " failed." -msgstr " falhou." +#: 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Impossível corrigir dependências" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Impossível minimizar o conjunto de atualizações" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Impossível abrir %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Pronto" +#: 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-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/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-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Dependências desencontradas. Tente usar -f." +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Falhou ao truncar arquivo" -#: 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: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:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalado]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalado]" +#: 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:240 -msgid "[installed,auto-removable]" +#: 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:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalado]" +#: 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" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalado]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Impossível executar \"stat\" no cdrom" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviação de tipo desconhecida: '%c'" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "mas %s está instalado" +msgid "Opening configuration file %s" +msgstr "Abrindo arquivo de configuração %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "mas %s está para ser instalado" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Erro de sintaxe %s:%u: Bloco inicia sem nome." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "mas não é instalável" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Erro de sintaxe %s:%u: Tag mal formada" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "mas é um pacote virtual" +#: apt-pkg/contrib/configuration.cc:839 +#, 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-output.cc:448 -msgid "but it is not installed" -msgstr "mas não está instalado" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "mas não será instalado" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Erro de sintaxe %s:%u: Muitos \"includes\" aninhados" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ou" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, 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:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Os pacotes a seguir têm dependências desencontradas:" +#: apt-pkg/contrib/configuration.cc:899 +#, 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-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Os NOVOS pacotes a seguir serão instalados:" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Os pacotes a seguir serão REMOVIDOS:" +#: apt-pkg/contrib/configuration.cc:952 +#, 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-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" +#. 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-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Os pacotes a seguir serão atualizados:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Os pacotes a seguir serão REVERTIDOS:" +#: 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" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Os seguintes pacotes mantidos serão mudados:" +#: 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-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (por causa de %s) " +msgid "Option %s requires an argument." +msgstr "Opção %s requer um argumento." -#: apt-private/private-output.cc:675 -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 =." 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!" +"Opção %s: Especificação de item de configuração deve possuir um =." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opção %s requer um argumento inteiro, não '%s'" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalados, " +msgid "Option '%s' is too long" +msgstr "Opção '%s' é muito longa" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu revertidos, " +msgid "Sense %s is not understood, try true or false." +msgstr "Sentido %s não é compreendido, tente verdadeiro ou falso." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu a serem removidos e %lu não atualizados.\n" +msgid "Invalid operation %s" +msgstr "Operação %s inválida" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu pacotes não totalmente instalados ou removidos.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "O pacote %s versão %s tem uma dependência desencontrada:\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:740 -msgid "[Y/n]" -msgstr "[S/n]" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Total de Nomes de Pacotes: " -#. 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:746 -msgid "[y/N]" -msgstr "[s/N]" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Total de Nomes de Pacotes: " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "S" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Pacotes normais: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Pacotes puramente virtuais: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Erro de compilação de regex - %s" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Pacotes virtuais únicos: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "O comando update não leva argumentos" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Pacotes virtuais misturados: " -#: 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:363 +msgid " Missing: " +msgstr " Faltando: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Total de versões distintas: " -#: 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:367 +msgid "Total distinct descriptions: " +msgstr "Total de descrições distintas: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Total de dependências: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Total de relações ver/arquivo: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Total de relações Desc/Arquivo: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Erro interno, Ordenação não finalizou" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Total de mapeamentos \"Provides\": " -#: 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" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Total de strings \"globbed\": " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "É preciso baixar %sB/%sB de arquivos.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Total de espaço de dependência de versã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 -#: apt-private/private-install.cc:160 -#, c-format -msgid "Need to get %sB of archives.\n" -msgstr "É preciso baixar %sB de arquivos.\n" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Total de espaço frouxo: " -#. TRANSLATOR: The required space between number and unit 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 "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" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Total de espaço contabilizado para: " -#. TRANSLATOR: The required space between number and unit 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 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, 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 "Package file %s is out of sync." +msgstr "O arquivo de pacote %s está fora de sincronia." -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Você não possui espaço suficiente em %s." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Você deve passar exatamente um padrão" -#: 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." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +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!" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Arquivos de pacote:" -#: 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" -" ?] " +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" msgstr "" -"Você está prestes a fazer algo potencialmente destrutivo.\n" -"Para continuar digite a frase '%s'\n" -" ?] " +"O cache está fora de sincronia, não foi possível fazer a referência cruzada " +"de um arquivo de pacote" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abortar." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pacotes alfinetados (\"pinned\"):" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Você quer continuar?" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(não encontrado)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Alguns arquivos falharam ao baixar" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalado: " -#: apt-private/private-install.cc:320 -msgid "" -"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?" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidato: " -#: 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(nenhum)" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Impossível corrigir pacotes faltantes." +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Pacote alfinetado (\"pin\"): " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abortando instalação." +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabela de versão:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 em %s %s\n" -#: apt-private/private-install.cc:366 +#: cmdline/apt-cache.cc:1801 +#, fuzzy 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] "" +"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-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +#: 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-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" +#: 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" + +#: cmdline/apt-cdrom.cc:139 +#, fuzzy, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "Falhou ao renomear %s para %s" -#: apt-private/private-install.cc:499 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Hmm, seems like the AutoRemover destroyed something which really\n" -"shouldn't happen. Please file a bug report against apt." +"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 "" -"Hmm, parece que o AutoRemover destruiu algo o que realmente não deveria\n" -"acontecer. Por favor, reporte um bug contra o 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: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:" - -#: 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 "" -"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-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:" - -#: 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." -#: 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:" +#: 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-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)." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentos não estão em pares" -#: apt-private/private-install.cc:638 +#: 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 "" -"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\"." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pacotes quebrados" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Os pacotes extra a seguir serão instalados:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pacotes sugeridos:" - -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pacotes recomendados:" - -#: apt-private/private-install.cc:825 -#, 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" - -#: 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-private/private-install.cc:841 -#, 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" - -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s já é a versão mais nova.\n" +"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-private/private-install.cc:894 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Versão selecionada %s (%s) para %s\n" +msgid "Can not find a package for architecture '%s'" +msgstr "Impossível achar pacote %s" -#: apt-private/private-install.cc:899 +#: cmdline/apt-get.cc:327 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Versão selecionada %s (%s) para %s\n" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Impossível achar pacote %s" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: cmdline/apt-get.cc:330 #, 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" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Impossível achar pacote %s" -#: apt-private/private-install.cc:947 +#: cmdline/apt-get.cc:367 #, 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" +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-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-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" msgstr "" -#: 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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Aviso de autenticação sobreposto.\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?" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Impossível achar pacote %s" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Falhou ao buscar %s %s\n" +msgid "%s set to manually installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, 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 "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%s set to automatically installed.\n" +msgstr "%s configurado para instalar manualmente.\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Atingido " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Obter:" +#: 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-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: 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-private/acqprogress.cc:125 -msgid "Err " -msgstr "Err " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Baixados %sB em %s (%sB/s)\n" +msgid "Unable to find a source package for %s" +msgstr "Impossível encontrar um pacote fonte para %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:786 #, c-format -msgid " [Working]" -msgstr " [Trabalhando]" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Troca de mídia: por favor, insira o disco nomeado\n" -" '%s'\n" -"na unidade '%s' e pressione 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:839 #, c-format -msgid "Unable to read %s" -msgstr "Impossível ler %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Pulando arquivo já baixado '%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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" +msgid "Couldn't determine free space in %s" +msgstr "Não foi possível determinar o espaço livre em %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:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "" +msgid "You don't have enough free space in %s" +msgstr "Você não possui espaço livre suficiente em %s" -#. 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" - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Não foi possível abrir arquivo %s" - -#: methods/mirror.cc:445 +#. 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:893 #, 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?" - -# 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" - -#: 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" - -#: 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" - -#: 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\")" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Falhou ao localizar o elemento hash!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Falhou ao alocar desvio (\"diversion\")" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Erro interno em \"AddDiversion\"" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Preciso obter %sB/%sB de arquivos fonte.\n" -#: apt-inst/filelist.cc:477 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Tentando sobrescrever um desvio, %s -> %s e %s/%s" +msgid "Need to get %sB of source archives.\n" +msgstr "Preciso obter %sB de arquivos fonte.\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adição dupla de desvio %s -> %s" +msgid "Fetch source %s\n" +msgstr "Obter fonte %s\n" -#: 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:922 +msgid "Failed to fetch some archives." +msgstr "Falhou ao buscar alguns arquivos." -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Baixar completo e no modo somente baixar (\"download only\")" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" -msgstr "O caminho %s é muito longo" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Pulando o desempacotamento de fontes já desempacotados em %s\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" -msgstr "Desempacotando %s mais de uma vez" +msgid "Unpack command '%s' failed.\n" +msgstr "Comando de desempacotamento '%s' falhou.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" -msgstr "O diretório %s é desviado (\"diverted\")" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, 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" +msgid "Build command '%s' failed.\n" +msgstr "Comando de construção '%s' falhou.\n" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "O caminho de desvio é muito longo" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Processo filho falhou" -#: 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 "Falhou ao executar \"stat\" %s" +#: cmdline/apt-get.cc:1031 +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/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Falhou ao renomear %s para %s" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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 "Unable to get build-dependency information for %s" +msgstr "Impossível conseguir informações de dependência de construção para %s" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1126 #, 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 "%s has no build depends.\n" +msgstr "%s não tem dependências de construção.\n" -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Arquivo %s/%s sobrescreve arquivo no pacote %s" +#: cmdline/apt-get.cc:1296 +#, 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/extract.cc:498 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Unable to stat %s" -msgstr "Impossível executar \"stat\" em %s" +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/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Failed to write file %s" -msgstr "Falhou ao escrever arquivo %s" +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/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Falhou ao fechar arquivo %s" +#: cmdline/apt-get.cc:1376 +#, 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/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 não é um arquivo DEB válido, membro '%s' faltando" +#: cmdline/apt-get.cc:1382 +#, 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/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Erro interno, não foi possível localizar membro %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Arquivo de controle não interpretável" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Falhou ao satisfazer a dependência de %s por %s: %s" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Assinatura de arquivo inválida" +#: cmdline/apt-get.cc:1420 +#, 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." -#: 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:1425 +msgid "Failed to process build dependencies" +msgstr "Falhou ao processar as dependências de construção" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, 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" +msgid "Changelog for %s (%s)" +msgstr "Conectando em %s (%s)" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Falhou ao criar \"pipes\"" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Módulos para os quais há suporte:" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Falhou ao executar gzip " +#: cmdline/apt-get.cc:1657 +#, 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-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arquivo corrompido" +#: 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-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Checksum do arquivo tar falhou, arquivo corrompido" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: 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" +#: 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/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Impossível executar \"stat\" %s." +#: 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/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +#: 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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -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/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Sistema de empacotamento '%s' não é suportado" +#: 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" -#: 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-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s já é a versão mais nova.\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "Gravados %i registros.\n" +#: 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" -#: 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-mark.cc:275 cmdline/apt-mark.cc:327 +#, fuzzy, c-format +msgid "Canceled hold on %s.\n" +msgstr "Falhou ao abrir %s" -#: 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:345 +msgid "Executing dpkg failed. Are you root?" +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-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 "" -"Gravados %i registros com %i arquivos faltando e %i arquivos que não " -"combinam\n" -#: apt-pkg/indexcopy.cc:515 +#: 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 "" + +#: methods/cdrom.cc:203 #, c-format -msgid "Can't find authentication record for: %s" +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" 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/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum incorreto" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM errado" -#: apt-pkg/acquire-worker.cc:116 +#: methods/cdrom.cc:249 #, c-format -msgid "The method driver %s could not be found." -msgstr "O driver do método %s não pode ser encontrado." +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/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Confira se o pacote 'dpkg-dev' está instalado.\n" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disco não encontrado." -#: apt-pkg/acquire-worker.cc:169 +#: 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" + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Impossível determinar o nome local" + +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Method %s did not start correctly" -msgstr "Método %s não iniciou corretamente" +msgid "The server refused the connection and said: %s" +msgstr "O servidor recusou a conexão e disse: %s" + +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER falhou, servidor disse: %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 "" -"Por favor, insira o disco nomeado: '%s' na unidade '%s' e pressione enter." +msgid "PASS failed, server said: %s" +msgstr "PASS falhou, servidor disse: %s" -#: apt-pkg/cachefile.cc:94 -msgid "The package lists or status file could not be parsed or opened." +#: methods/ftp.cc:252 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." 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." +"Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" +"ProxyLogin está vazio." -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache de pacotes vazio" +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "O arquivo de cache de pacotes está corrompido" +#: methods/ftp.cc:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE falhou, servidor disse: %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/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:169 -#, fuzzy -msgid "The package cache file is corrupted, it is too small" -msgstr "O arquivo de cache de pacotes está corrompido" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Servidor fechou a conexão" -#: apt-pkg/pkgcache.cc:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Este APT não suporta o sistema de versões '%s'" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Uma resposta sobrecarregou o buffer" -#: 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/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Corrupção de protocolo" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depende" +#: 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/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Pré-Depende" +#: 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/pkgcache.cc:321 -msgid "Suggests" -msgstr "Sugere" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Falhou" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Recomenda" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Não foi possível conectar um socket passivo." -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Conflita" +#: 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/pkgcache.cc:322 -msgid "Replaces" -msgstr "Substitui" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Não foi possível fazer \"bind\" de um socket" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Obsoleta" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Não foi possível ouvir no socket" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Quebra" +#: 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/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Impossível enviar o comando PORT" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: methods/ftp.cc:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Família de endereços %u desconhecida (AF_*)" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "requerido" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT falhou, servidor disse: %s" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "padrão" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Conexão do socket de dados expirou" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "opcional" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Impossível aceitar conexão" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: 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/pkgrecords.cc:38 +#: methods/ftp.cc:890 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Tipo de arquivo de índice '%s' não é suportado" +msgid "Unable to fetch file, server said '%s'" +msgstr "Impossível obter arquivo, servidor disse '%s'" -#: 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:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Socket de dados expirou" -#. 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:935 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Transferência de dados falhou, servidor disse '%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." +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Pesquisa" -#: 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:1128 +msgid "Unable to invoke " +msgstr "Impossível invocar " -#: 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/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Conectando em %s (%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." +#: methods/connect.cc:87 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/pkgcachegen.cc:576 +#: methods/connect.cc:94 #, 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" +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/pkgcachegen.cc:1211 +#: methods/connect.cc:100 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Não foi possível iniciar a conexão para %s:%s (%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 listas de pacotes" +#: methods/connect.cc:108 +#, 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" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Coletando Arquivo \"Provides\"" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Não foi possível conectar em %s:%s (%s)." -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#. 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 write to %s" -msgstr "Impossível escrever para %s" +msgid "Connecting to %s" +msgstr "Conectando a %s" -#: 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/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Não foi possível resolver '%s'" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Falha temporária resolvendo '%s'" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: 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/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Impossível conectar em %s %s:" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" +#: 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-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 -#, 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" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Tamanho incorreto" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Ao menos uma assinatura inválida foi encontrada." -#: apt-pkg/acquire-item.cc:173 +#: methods/gpgv.cc:174 #, fuzzy -msgid "Invalid file format" -msgstr "Operação %s inválida" +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/acquire-item.cc:1581 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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)" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Erro desconhecido executando gpgv" -#: 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" +#: 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/acquire-item.cc:1677 -#, c-format +#: methods/gpgv.cc:231 msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"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/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" 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 "" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Erro escrevendo para o arquivo" -#. 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 "" +#: 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/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 "" -"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)." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Erro lendo do servidor" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Erro escrevendo para arquivo" -#: apt-pkg/acquire-item.cc:1991 -#, 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." +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Seleção falhou" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Conexão expirou" -#: 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." +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Erro escrevendo para arquivo de saída" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Diretório de arquivos %spartial está faltando." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Aguardando por cabeçalhos" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Impossível criar trava no diretório de listas" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Linha de cabeçalho ruim" -#. 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/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/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Obtendo arquivo %li de %li" +#: 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/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 "" -"Alguns arquivos de índice falharam para baixar, eles foram ignorados ou os " -"antigos foram usados no lugar." +#: 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/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" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" -#: apt-pkg/policy.cc:83 +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Formato de data desconhecido" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Dados de cabeçalho ruins" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Conexão falhou" + +#: methods/server.cc:572 #, c-format msgid "" -"The value '%s' is invalid for APT::Default-Release as such a release is not " -"available in the sources" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Erro interno" -#: 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-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculando atualização... " -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Pronto" -#: 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)" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -#: 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." +#: apt-private/private-list.cc:123 +msgid "Listing" 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 +#: apt-private/private-list.cc:156 #, 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" +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/cdrom.cc:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Usando ponto de montagem de CD-ROM %s\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Corrigindo dependências..." -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Aguardando por disco...\n" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " falhou." -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montando CD-ROM...\n" +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Impossível corrigir dependências" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificando... " +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Impossível minimizar o conjunto de atualizações" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Rótulo armazenado: %s \n" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Pronto" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Procurando por arquivos de índice no disco...\n" +#: 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/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" +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Dependências desencontradas. Tente usar -f." -#: 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-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Rótulo encontrado: '%s'\n" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalado]" -#: 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" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalado]" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -"Esse disco é chamado: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Copiando lista de pacotes..." -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Gravando nova lista de fontes\n" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalado]" -#: 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" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instalado]" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-output.cc:248 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "[upgradable from: %s]" msgstr "" -"O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " -"arquivo para o mesmo." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-output.cc:252 +msgid "[residual-config]" 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 "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." +#: apt-private/private-output.cc:434 +#, c-format +msgid "but %s is installed" +msgstr "mas %s está instalado" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Construindo árvore de dependências" +#: apt-private/private-output.cc:436 +#, c-format +msgid "but %s is to be installed" +msgstr "mas %s está para ser instalado" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versões candidatas" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "mas não é instalável" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Geração de dependência" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "mas é um pacote virtual" -#: 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-output.cc:448 +msgid "but it is not installed" +msgstr "mas não está instalado" -#: 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-output.cc:448 +msgid "but it is not going to be installed" +msgstr "mas não será instalado" -#: 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-output.cc:453 +msgid " or" +msgstr " ou" -#: 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-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Os pacotes a seguir têm dependências desencontradas:" -#: 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-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Os NOVOS pacotes a seguir serão instalados:" -#: 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-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Os pacotes a seguir serão REMOVIDOS:" -#: 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-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Os pacotes a seguir serão mantidos em suas versões atuais:" -#: apt-pkg/cacheset.cc:603 -#, fuzzy, c-format -msgid "Couldn't find task '%s'" -msgstr "Impossível achar tarefa %s" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Os pacotes a seguir serão atualizados:" -#: 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:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Os pacotes a seguir serão REVERTIDOS:" -#: apt-pkg/cacheset.cc:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "Impossível achar pacote %s" +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Os seguintes pacotes mantidos serão mudados:" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:667 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (por causa de %s) " -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: apt-private/private-output.cc:675 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"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/cacheset.cc:647 +#: apt-private/private-output.cc:706 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu pacotes atualizados, %lu pacotes novos instalados, " -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:710 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu reinstalados, " -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:712 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" - -#: 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-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Nota, selecionando %s ao invés de %s\n" +msgid "%lu downgraded, " +msgstr "%lu revertidos, " -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:714 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" - -#: 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-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-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-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-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)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu a serem removidos e %lu não atualizados.\n" -#: 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:718 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: 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)" +#. 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:740 +msgid "[Y/n]" +msgstr "[S/n]" -#: 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)" +#. 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:746 +msgid "[y/N]" +msgstr "[s/N]" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "S" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Linha mal formada %lu no arquivo de fontes %s (distribuição)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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-update.cc:31 +msgid "The update command takes no arguments" +msgstr "O comando update não leva argumentos" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-update.cc:90 #, 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 "%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 "" -"Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-show.cc:156 #, c-format -msgid "Opening %s" -msgstr "Abrindo %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:371 -#, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)" +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" +msgstr "" -#: 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" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" -#: 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" +#: apt-private/private-install.cc:93 +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:95 -#, c-format -msgid "Installing %s" -msgstr "Instalando %s" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Erro interno, Ordenação não finalizou" -#: 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:150 +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:97 apt-pkg/deb/dpkgpm.cc:1003 +#. 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:157 #, c-format -msgid "Removing %s" -msgstr "Removendo %s" - -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "%s completamente removido" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "É preciso baixar %sB/%sB de arquivos.\n" -#: apt-pkg/deb/dpkgpm.cc:99 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:162 #, c-format -msgid "Noting disappearance of %s" -msgstr "" +msgid "Need to get %sB of archives.\n" +msgstr "É preciso baixar %sB de arquivos.\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:169 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Executando gatilho pós-instalação %s" +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" -#. 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:174 #, c-format -msgid "Directory '%s' missing" -msgstr "Diretório '%s' está faltando" - -#: 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" +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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "Preparando %s" +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:990 -#, c-format -msgid "Unpacking %s" -msgstr "Desempacotando %s" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Preparando para configurar %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "%s instalado" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Sim, faça o que eu digo!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "Preparando para a remoção de %s" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "%s removido" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Abortar." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Preparando para remover completamente %s" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Você quer continuar?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s completamente removido" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Alguns arquivos falharam ao baixar" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +msgid "" +"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: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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Impossível corrigir pacotes faltantes." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Abortando instalação." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:368 +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:372 +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" -msgstr "" +#: apt-private/private-install.cc:393 +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/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 "" +"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/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:504 apt-private/private-install.cc:655 +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/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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Erro Interno, o AutoRemover quebrou coisas" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:515 +#, 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] "" +"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/dpkgpm.cc:1685 -msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "" +#: apt-private/private-install.cc:519 +#, 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/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:521 +#, 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/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-install.cc:614 +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:" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 -#, c-format +#: apt-private/private-install.cc:616 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 "" +"Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " +"(ou especifique uma solução)." -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" +#: apt-private/private-install.cc:640 +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\"." -#. 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:661 +msgid "Broken packages" +msgstr "Pacotes quebrados" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Os pacotes extra a seguir serão instalados:" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Pacotes sugeridos:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Pacotes recomendados:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, c-format -msgid "Selection %s not found" -msgstr "Seleção %s não encontrada" +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: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:855 +#, 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:195 +#: apt-private/private-install.cc:867 #, c-format -msgid "Could not open lock file %s" -msgstr "Não foi possível abrir arquivo de trava %s" +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:218 +#: apt-private/private-install.cc:872 #, 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 "%s is already the newest version.\n" +msgstr "%s já é a versão mais nova.\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:920 +#, 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: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:925 +#, 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: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:967 +#, 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:412 -#, c-format -msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" -msgstr "" +#: apt-private/private-install.cc:973 +#, 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" -#: 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 "Sub-processo %s recebeu uma falha de segmentação." +#: 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:826 -#, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Sub-processo %s recebeu uma falha de segmentação." +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Aviso de autenticação sobreposto.\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-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: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:50 +msgid "Install these packages without verification?" +msgstr "Instalar estes pacotes sem verificação?" -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problema fechando o arquivo" +msgid "Failed to parse %s. Edit again? " +msgstr "Falha ao baixar %s %s\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/private-sources.cc:70 #, c-format -msgid "Could not open file %s" -msgstr "Não foi possível abrir arquivo %s" - -#: 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-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Falhou ao criar sub-processo IPC" - -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Falhou ao executar compactador " +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:88 +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:119 +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:123 +msgid "Err " +msgstr "Err " -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problema sincronizando o arquivo" +#: apt-private/acqprogress.cc:147 +#, 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:237 #, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Erro!" +msgid " [Working]" +msgstr " [Trabalhando]" -#: apt-pkg/contrib/progress.cc:150 +#: apt-private/acqprogress.cc:298 #, 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" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Impossível abrir %s" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configuração padrão ruim!" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Impossível invocar " +#: 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." -#: 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" +#: 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:322 -msgid "Failed to truncate file" -msgstr "Falhou ao truncar arquivo" +# 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" -#: 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 "" +"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-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Erro interno em \"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 "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:184 #, 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 =." -msgstr "" -"Opção %s: Especificação de item de configuração deve possuir um =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3222,12 +3235,7 @@ msgstr "" " -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Impossível executar \"stat\" em %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Não foi possível obter a versão do debconf. O debconf está instalado?" @@ -3346,17 +3354,17 @@ msgstr "Nenhuma seleção combinou" msgid "Some files are missing in the package file group `%s'" msgstr "Alguns arquivos estão faltando no grupo de arquivos do pacotes '%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "BD estava corrompido, arquivo renomeado para %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "BD é antigo, tentando atualizar %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3365,105 +3373,105 @@ msgstr "" "Formato do BD é inválido. Se você atualizou a partir de uma versão antiga do " "apt, por favor, remova e recrie o banco de dados." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Impossível abrir o arquivo BD %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Falhou ao executar \"readlink\" %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Repositório não possui registro de controle" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Impossível obter um cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Impossível ler o diretório %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Impossível executar \"stat\" em %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Erros que se aplicam ao arquivo " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Falhou ao resolver %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Falhou ao percorrer a árvore" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Falhou ao abrir %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Falhou ao executar \"readlink\" %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Falhou ao executar \"unlink\" %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Falhou ao ligar %s a %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limite DeLink de %sB atingido.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Repositório não possuía campo pacote" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " mantenedor de %s é %s, não %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui entrada override fonte\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada override binária\n" diff --git a/po/ro.po b/po/ro.po index 3eb64a846..e33df57dc 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 \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" @@ -19,3188 +19,3201 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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ă." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Cache gol de pachet" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Cache-ul fișierului pachet este deteriorat" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Fișierul cache al pachetului este o versiune incompatibilă" -#: cmdline/apt-cache.cc:1254 +#: apt-pkg/pkgcache.cc:164 #, fuzzy -msgid "You must give at least one search pattern" -msgstr "Trebuie să dați exact un șablon" +msgid "The package cache file is corrupted, it is too small" +msgstr "Cache-ul fișierului pachet este deteriorat" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +#: apt-pkg/pkgcache.cc:171 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Acest APT nu suportă versioning system '%s'" + +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită" + +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Depinde" + +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Pre-depinde" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Sugerează" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Recomandă" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Este în conflict" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Înlocuiește" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Învechit" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Corupe" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" msgstr "" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "important" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "cerut" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "opțional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Nu s-a putut localiza pachetul %s" +msgid "Index file type '%s' is not supported" +msgstr "Tipul de fișier index '%s' nu este suportat" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Fișiere pachet: " +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Eroare de compilare expresie regulată - %s" -#: 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/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Cache are un versioning system incompatibil" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Eroare apărută în timpul procesării %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -"Cache-ul este desincronizat, nu se poate executa x-ref pe un fișier pachet" +"Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest " +"APT." -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pachete alese special:" +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(negăsit)" +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Instalat: " +#: apt-pkg/pkgcachegen.cc:289 +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." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Candidează: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(niciunul)" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nu pot determina starea listei surse de pachete %s" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pachet ales special: " +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Citire liste de pachete" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Tabela de versiuni:" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Colectare furnizori fișier" -#: 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 +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pentru %s compilat la %s %s\n" +msgid "Unable to write to %s" +msgstr "Nu s-a putut scrie în %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" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Eroare IO în timpul salvării sursei cache" + +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" 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" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: 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/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" msgstr "" -#: 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/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "redenumire eșuată, %s (%s -> %s)." -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumentele nu sunt perechi" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Nepotrivire la suma de căutare" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Nepotrivire dimensiune" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Nu pot găsi pachetul %s" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Operațiune invalidă %s" -#: 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/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:330 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Nu pot găsi pachetul %s" +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: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/acquire-item.cc:1737 +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:423 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Couldn't find package %s" -msgstr "Nu pot găsi pachetul %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" - -#: 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" - -#: 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." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" 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 +#: apt-pkg/acquire-item.cc:1972 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nu s-a putut găsi o sursă pachet pentru %s" +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:786 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"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:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Sar peste fișierul deja descărcat '%s'\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blocul vânzător %s nu conține amprentă" + +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "Directorul de liste %spartial lipsește." + +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Directorul de arhive %spartial lipsește." + +#: apt-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Nu pot încuia directorul cu lista" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "N-am putut determina spațiul disponibil în %s" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Se descarcă fișierul %li din %li (%s rămas)" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nu aveți suficient spațiu în %s" +msgid "Retrieving file %li of %li" +msgstr "Se descarcă fișierul %li din %li" -#. 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/update.cc:77 apt-private/private-download.cc:91 #, 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" +msgid "Failed to fetch %s %s\n" +msgstr "Eșec la aducerea lui %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 +#: 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 "" +"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" + +#: apt-pkg/policy.cc:83 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +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" -#: cmdline/apt-get.cc:902 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Fetch source %s\n" -msgstr "Aducere sursa %s\n" +msgid "Did not understand pin type %s" +msgstr "Nu s-a înțeles tipul de pin %s" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Eșec la aducerea unor arhive." +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Fără prioritate (sau zero) specificată pentru pin" -#: 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-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Nu s-a putut deschide fișierul %s" -#: cmdline/apt-get.cc:950 +#: apt-pkg/packagemanager.cc:584 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Sar peste despachetarea sursei deja despachetate în %s\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 "" +"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:962 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Comanda de despachetare '%s' eșuată.\n" +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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Utilizare punct de montare CD-ROM %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Aștept discul...\n" -#: cmdline/apt-get.cc:991 +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Montez CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identificare... " + +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Comanda de construire '%s' eșuată.\n" +msgid "Stored label: %s\n" +msgstr "Etichetă memorată: %s \n" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Procesul copil a eșuat" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Scanez discul de fișierele index...\n" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +# 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 "" -"Trebuie specificat cel puțin un pachet pentru a-i verifica dependențele " -"înglobate" +"Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " +"de traduceri și %zu semnături\n" -#: cmdline/apt-get.cc:1054 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:771 #, 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 "Found label '%s'\n" +msgstr "A fost găsită eticheta „%s”\n" -#: cmdline/apt-get.cc:1101 -#, c-format -msgid "%s has no build depends.\n" -msgstr "%s nu are dependențe înglobate.\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-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:817 +#, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +"Acest disc este numit: \n" +"'%s'\n" + +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Copiez listele de pachete.." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Scriere noua listă sursă\n" + +#: 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-get.cc:1289 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" +"Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +#: apt-pkg/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Eșec la satisfacerea dependenței %s pentru %s: Pachetul instalat %s este " -"prea nou" +"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " +"cauzată de pachete ținute." + +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Se construiește arborele de dependență" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Versiuni candidat" + +#: 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 "Failed to open StateFile %s" +msgstr "Eșec la deschiderea fișierului de stare %s" + +#: 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-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Nu s-a putut analiza fișierul pachet %s (2)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' pentru '%s' n-a fost găsită" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nu s-a putut localiza pachetul %s" + +#: apt-pkg/cacheset.cc:604 #, fuzzy, c-format -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" +msgid "Couldn't find task '%s'" +msgstr "Nu s-a putut găsi sarcina %s" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/cacheset.cc:610 #, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Nu pot găsi pachetul %s" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Nu pot găsi pachetul %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " -"poate fi găsit" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Eșec la prelucrarea dependențelor de compilare" +#: apt-pkg/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Conectare la %s (%s)" - -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Module suportate:" - -#: 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 "" -"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" +msgid "Unable to parse Release file %s" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-pkg/indexrecords.cc:91 +#, fuzzy, c-format +msgid "No sections in Release file %s" +msgstr "Notă, se selectează %s în locul lui %s\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" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "dar nu este instalat" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Linie necorespunzătoare în fișierul-redirectare: %s" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Nu s-a putut analiza fișierul pachet %s (1)" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/sourcelist.cc:170 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s este deja la cea mai nouă versiune.\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 "Așteptat %s, dar n-a fost acolo" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Linie greșită %lu în lista sursă %s (dist)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:184 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "%s este marcat ca fiind instalat manual.\n" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:190 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Eșec la „open” pentru %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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.)" -#: 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/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Linie greșită %lu în lista sursă %s (URI)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nu s-a putut citi baza de date de CD %s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza URI)" -#: 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/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/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "CD-ROM necorespunzător" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:335 #, 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 "Opening %s" +msgstr "Deschidere %s" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disc negăsit." +#: 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Fișier negăsit" +#: 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/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/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/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/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Se instalează %s" -#: 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/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Se configurează %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Se autentifică" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Se șterge %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nu se poate detecta numele perechii" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Șters complet %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nu s-a putut detecta numele local" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Serverul a refuzat conexiunea și a spus: %s" +msgid "Running post-installation trigger %s" +msgstr "Se rulează declanșatorul post-instalare %s" -#: methods/ftp.cc:225 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "USER failed, server said: %s" -msgstr "„USER” a eșuat, serverul a spus: %s" +msgid "Directory '%s' missing" +msgstr "Directorul „%s” lipsește." -#: methods/ftp.cc:232 +#: 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 "PASS failed, server said: %s" -msgstr "„PASS” a eșuat, serverul a spus: %s" +msgid "Preparing %s" +msgstr "Se pregătește %s" -#: 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/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Se despachetează %s" -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:995 #, 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 "Preparing to configure %s" +msgstr "Se pregătește configurarea %s" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "„TYPE” a eșuat, serverul a spus: %s" +msgid "Installed %s" +msgstr "Instalat %s" -#: 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/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Se pregătește ștergerea lui %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Serverul a închis conexiunea" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Șters %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 "Eroare de citire" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Se pregătește ștergerea completă a %s" -#: 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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Șters complet %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protocol corupt" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +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 "Eroare de scriere" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Nu s-a putut scrie în %s" -#: 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/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" msgstr "" -"Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " -"expirat" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Eșec" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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șteptat %s, dar n-a fost acolo" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nu s-a putut realiza conectarea la un socket pasiv" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: 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/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nu s-a putut realiza asocierea la un socket" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Nu s-a putut asculta pe socket" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Nu s-a putut detecta numele socket-ului" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Nu s-a putut trimite comanda PORT" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Familie de adrese necunoscută %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" -#: methods/ftp.cc:811 +#: apt-pkg/deb/dpkgpm.cc:1679 +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 "EPRT failed, server said: %s" -msgstr "„EPRT” a eșuat, serverul a spus: %s" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Timpul de conectare la socket-ul de date expirat" +#: 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" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Nu s-a putut accepta conexiune" +#. 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/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/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/ftp.cc:890 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Timp expirat pentru socket-ul de date" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/ftp.cc:935 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Transferul de date a eșuat, serverul a spus: '%s'" +msgid "%lih %limin %lis" +msgstr "" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Interogare" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nu s-a putut invoca" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "" -#: methods/connect.cc:76 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Conectare la %s (%s)" +msgid "Selection %s not found" +msgstr "Selecția %s nu a fost găsită" -#: methods/connect.cc:87 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Not using locking for read only lock file %s" +msgstr "Nu s-a folosit închiderea pentru fișierul disponibil doar-citire %s" -#: methods/connect.cc:94 +#: apt-pkg/contrib/fileutl.cc:196 #, 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 "Could not open lock file %s" +msgstr "Nu pot deschide fișierul blocat %s" -#: methods/connect.cc:100 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" -#: methods/connect.cc:108 +#: apt-pkg/contrib/fileutl.cc:224 #, 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 "Could not get lock %s" +msgstr "Nu pot determina blocajul %s" -#: methods/connect.cc:126 +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." +msgid "List of files can't be created as '%s' is not a directory" +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/contrib/fileutl.cc:395 #, c-format -msgid "Connecting to %s" -msgstr "Conectare la %s" +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nu s-a putut rezolva „%s”" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:422 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Eșec temporar la rezolvarea lui „%s”" +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" -#: 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/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Subprocesul %s a primit o eroare de segmentare." -#: methods/connect.cc:211 +#: apt-pkg/contrib/fileutl.cc:843 #, 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)" +msgid "Sub-process %s received signal %u." +msgstr "Subprocesul %s a primit o eroare de segmentare." -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nu s-a putut realiza conexiunea cu %s %s:" +#: apt-pkg/contrib/fileutl.cc:847 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)" -#: 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/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Subprocesul %s s-a terminat brusc" -#: 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/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Eroare de scriere" -#: methods/gpgv.cc:174 -#, fuzzy -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "" -"Nu s-a putut executa „%s” pentru verificarea semnăturii (gpgv este instalat?)" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problemă la închiderea fișierului" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:1139 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Could not open file %s" +msgstr "Nu s-a putut deschide fișierul %s" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Eroare necunoscută în timp ce se execută gpgv" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Nu s-a putut deschide conexiunea pentru %s" -#: 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/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Eșec la crearea IPC-ului pentru subproces" -#: methods/gpgv.cc:231 -msgid "" -"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/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Eșec la executarea compresorului" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Eroare de citire" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Eroare la scrierea în fișierul" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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" -#: 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/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "scriere, încă mai am %lu de scris dar nu pot" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Eroare la citirea de la server" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problemă la închiderea fișierului" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Eroare la scrierea în fișier" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problemă în timpul sincronizării fișierului" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Selecția a eșuat" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problemă la dezlegarea fișierului" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Timp de conectare expirat" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problemă în timpul sincronizării fișierului" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Eroare la scrierea fișierului de rezultat" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nu se poate executa „stat” pe %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "În așteptarea antetelor" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Eroare!" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Linie de antet necorespunzătoare" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Terminat" -#: 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/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: 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" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Terminat" -#: 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/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nu s-a putut executa „mmap” cu un fișier gol" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Acest server HTTP are un suport defect de intervale" +#: 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" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Format dată necunoscut" +#: 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/server.cc:489 -msgid "Bad header data" -msgstr "Antet de date necorespunzător" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Nu s-a putut deschide %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Conectare eșuată" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Nu s-a putut invoca" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Eroare internă" +#: 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" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Calculez înnoirea... " +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Eșec la trunchierea fișierului" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Terminat" +#: 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-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: 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-list.cc:131 -msgid "Listing" +#: 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-list.cc:164 +#: apt-pkg/contrib/cdromutl.cc:65 #, 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 stat the mount point %s" +msgstr "Nu pot determina starea punctului de montare %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " eșec." +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Eșec la „stat” pentru CD" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Nu s-au putut corecta dependențele" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Abreviere de tip nerecunoscut: „%c”" -#: 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/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Se deschide fișierul de configurare %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Terminat" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" -#: 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/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Eroare de sintaxă %s:%u: etichetă greșită" -#: 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/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" -#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 -#: apt-private/private-show.cc:89 -msgid "unknown" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Instalat]" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Instalat]" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Eroare de sintaxă %s:%u: incluse de aici" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" + +#: apt-pkg/contrib/configuration.cc:902 +#, 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-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Instalat]" +#: apt-pkg/contrib/configuration.cc:952 +#, 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" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Instalat]" +#. 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-output.cc:248 +#: apt-pkg/contrib/cmndline.cc:121 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opțiunea linie de comandă '%c' [din %s] este necunoscută." -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -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 "Opțiunea linie de comandă %s nu este înțeleasă" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "but %s is installed" -msgstr "dar %s este instalat" +msgid "Command line option %s is not boolean" +msgstr "Opțiunea linie de comandă %s nu este booleană" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "but %s is to be installed" -msgstr "dar %s este pe cale de a fi instalat" +msgid "Option %s requires an argument." +msgstr "Opțiunea %s necesită un argument" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "dar nu este instalabil" +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =." -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "dar este un pachet virtual" +#: 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-output.cc:448 -msgid "but it is not installed" -msgstr "dar nu este instalat" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Opțiunea '%s' este prea lungă" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "dar nu este pe cale să fie instalat" +#: 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-output.cc:453 -msgid " or" -msgstr " sau" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Operațiune invalidă %s" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Următoarele pachete au dependențe neîndeplinite:" +#: 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" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Următoarele pachete NOI vor fi instalate:" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Total nume pachete : " -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Următoarele pachete vor fi ȘTERSE:" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Total nume pachete : " -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Următoarele pachete au fost reținute:" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Pachete normale: " -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Următoarele pachete vor fi ÎNNOITE:" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Pachete virtuale pure: " -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Următoarele pachete vor fi DE-GRADATE:" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Pachete virtuale singulare: " -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Următoarele pachete ținute vor fi schimbate:" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Pachete virtuale mixte: " -#: apt-private/private-output.cc:667 -#, c-format -msgid "%s (due to %s) " -msgstr "%s (datorită %s) " +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Lipsă: " -#: apt-private/private-output.cc:675 -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!" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Total versiuni distincte: " -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu înnoite, %lu nou instalate, " +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Numărul total de descrieri distincte: " -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinstalate, " +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Total dependențe: " -#: apt-private/private-output.cc:712 -#, c-format -msgid "%lu downgraded, " -msgstr "%lu de-gradate, " +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Total relații versiune/fișier: " -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu de șters și %lu neînnoite.\n" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Total relații desc/fișier: " -#: apt-private/private-output.cc:718 -#, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu instalate sau șterse incomplet.\n" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Total cartări Furnizează: " -#. 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:740 -msgid "[Y/n]" -msgstr "" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Total șiruri înglobate: " -#. 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:746 -msgid "[y/N]" -msgstr "" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Total spațiu versiuni ale dependențelor: " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "Y" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Total spațiu intern: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Total spațiu contorizat pentru: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Regex compilation error - %s" -msgstr "Eroare de compilare expresie regulată - %s" +msgid "Package file %s is out of sync." +msgstr "Fișierul pachetului %s este desincronizat." -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Comanda de actualizare nu are argumente" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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] "" -msgstr[2] "" +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Trebuie să dați exact un șablon" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." 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] "" -msgstr[2] "" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Fișiere pachet: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" - -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pachete alese special:" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Eroare internă, Ordering nu s-a terminat" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(negăsit)" -#: 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" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Instalat: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Este nevoie să descărcați %sB/%sB de arhive.\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Candidează: " -#. TRANSLATOR: The required space between number and unit 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 "Este nevoie să descărcați %sB de arhive.\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(niciunul)" -#. TRANSLATOR: The required space between number and unit 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 "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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Pachet ales special: " -#. TRANSLATOR: The required space between number and unit 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 "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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabela de versiuni:" -#: apt-private/private-install.cc:200 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Nu aveți suficient spațiu î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-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ă." - -#. 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!" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pentru %s compilat la %s %s\n" -#: apt-private/private-install.cc:222 -#, c-format +#: cmdline/apt-cache.cc:1801 +#, fuzzy msgid "" -"You are about to do something potentially harmful.\n" -"To continue type in the phrase '%s'\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 "" -"Sunteți pe cale de a face ceva cu potențial distructiv.\n" -"Pentru a continua tastați fraza '%s'\n" -" ?] " +"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/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Renunțare." +#: 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/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vreți să continuați?" +#: 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/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Descărcarea unor fișiere a eșuat" +#: 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-private/private-install.cc:320 +#: cmdline/apt-cdrom.cc:178 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"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 "" -"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-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-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Nu pot corecta pachetele lipsă." +#: 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-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Abandonez instalarea." +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumentele nu sunt perechi" -#: apt-private/private-install.cc:366 +#: cmdline/apt-config.cc:89 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-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." +"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" -# 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" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Nu pot găsi pachetul %s" -#: 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." +#: 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" + +#: 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" + +#: 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" + +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" 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." -#. -#. 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:" +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Nu pot găsi pachetul %s" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-private/private-install.cc:513 -#, fuzzy +#: 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" + +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 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:" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +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] "" -"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-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-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." +#: 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-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-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-private/private-install.cc:614 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Nu s-a putut găsi o sursă pachet pentru %s" + +#: cmdline/apt-get.cc:786 +#, c-format msgid "" -"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " -"solution)." +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet " -"(sau oferiți o altă soluție)." -#: apt-private/private-install.cc:638 +#: cmdline/apt-get.cc:791 +#, 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." +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" 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." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pachete deteriorate" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Sar peste fișierul deja descărcat '%s'\n" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Următoarele extra pachete vor fi instalate:" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "N-am putut determina spațiul disponibil în %s" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Pachete sugerate:" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Nu aveți suficient spațiu în %s" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Pachete recomandate:" +#. 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:893 +#, 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-private/private-install.cc:825 +#. TRANSLATOR: The required 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:898 #, 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" +msgid "Need to get %sB of source archives.\n" +msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" -#: 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" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Aducere sursa %s\n" + +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Eșec la aducerea unor arhive." + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Descărcare completă și în modul doar descărcare" -#: apt-private/private-install.cc:841 +#: cmdline/apt-get.cc:952 #, 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" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:964 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s este deja la cea mai nouă versiune.\n" +msgid "Unpack command '%s' failed.\n" +msgstr "Comanda de despachetare '%s' eșuată.\n" -#: 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" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" -#: 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" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Comanda de construire '%s' eșuată.\n" -#. 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" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Procesul copil a eșuat" -#: 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" +#: cmdline/apt-get.cc:1031 +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" -#: apt-private/private-main.cc:32 +#: cmdline/apt-get.cc:1056 +#, c-format 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!" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Avertisment de autentificare înlocuit.\n" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s" -#: 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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Instalați aceste pachete fără verificare?" - -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Eșec la aducerea lui %s %s\n" +msgid "%s has no build depends.\n" +msgstr "%s nu are dependențe înglobate.\n" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:1296 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Eșec la redenumirea lui %s în %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" +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-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" - -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [În lucru]" - -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:1314 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" 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" - -#: 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" +"Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " +"poate fi găsit" -#. 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:1337 #, c-format -msgid "No mirror file '%s' found " +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" -#. 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:1376 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nu s-a putut deschide fișierul %s" +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" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:1382 #, 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]" +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" -#: 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" +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Conexiune închisă prematur" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Configurări implicite necorespunzătoare!" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Eșec la prelucrarea dependențelor de compilare" -#: 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:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Conectare la %s (%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:1616 +msgid "Supported modules:" +msgstr "Module suportate:" -#: dselect/install:102 +#: cmdline/apt-get.cc:1657 #, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "S-au produs unele erori în timpul despachetării. Se vor configura" +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" -#: dselect/install:103 +#: cmdline/apt-helper.cc:35 #, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "" -"pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate" +msgid "Must specify at least one pair url/filename" +msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" -#: 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-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: dselect/install:105 +#: cmdline/apt-helper.cc:66 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"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”" +#: 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" -# 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" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Eroare internă în „AddDiversion”" - -#: 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" - -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Adăugare dublă de redirectare %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Fișier „conf” duplicat %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Calea %s este prea lungă" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Se despachetează %s de mai multe ori" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Directorul %s este redirectat" - -#: apt-inst/extract.cc:152 -#, 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ă" - -#: 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 "Eșec la „stat” pentru %s" - -#: 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-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Directorul %s este înlocuit de un non-director" - -# XXX: nu-mi place, hash bucket ar trebui tradus mai elegant -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie" - -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Calea este prea lungă" - -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Pachet suprascris fără nici o versiune pentru %s" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Fișierul %s/%s îl suprascrie pe cel din pachetul %s" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Nu se poate executa „stat” pe %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 "Eșec la scrierea fișierului %s" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Eșec la închiderea fișierului %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 "Aceasta nu este o arhivă DEB validă, lipsește membrul „%s”" - -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" -msgstr "Eroare internă, nu pot localiza membrul %s" - -#: 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 +#: cmdline/apt-mark.cc:74 #, 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" +msgid "%s was already set to manually installed.\n" +msgstr "%s este marcat ca fiind instalat manual.\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arhiva este prea scurtă" +#: 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-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Eșec la citirea antetelor arhivei" +#: 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-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Eșec la crearea conexiunilor" +#: 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-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Eșec la executarea lui gzip " +#: 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-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Arhivă deteriorată" +#: 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-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" 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" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nu pot determina starea %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: 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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: 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/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" - -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781 +#: methods/cdrom.cc:203 #, 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" +msgid "Unable to read the cdrom database %s" +msgstr "Nu s-a putut citi baza de date de CD %s" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %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 "" +"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/indexcopy.cc:521 -#, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Nepotrivire la suma de căutare" - -#: 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ă." - -#: 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" - -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoda %s nu s-a lansat corect" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "CD-ROM necorespunzător" -#: 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 "" -"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." -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" -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ă." - -#: apt-pkg/pkgcache.cc:155 -msgid "Empty package cache" -msgstr "Cache gol de pachet" - -#: apt-pkg/pkgcache.cc:161 -msgid "The package cache file is corrupted" -msgstr "Cache-ul fișierului pachet este deteriorat" - -#: 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" +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:174 -#, c-format -msgid "This APT does not support the versioning system '%s'" -msgstr "Acest APT nu suportă versioning system '%s'" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disc 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Fișier negăsit" -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Depinde" +#: 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 "PreDepends" -msgstr "Pre-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 "Suggests" -msgstr "Sugerează" +#: 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:322 -msgid "Recommends" -msgstr "Recomandă" +#. 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 "Conflicts" -msgstr "Este în conflict" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nu se poate detecta numele perechii" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Înlocuiește" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nu s-a putut detecta numele local" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Învechit" +#: 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 "Breaks" -msgstr "Corupe" +#: 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 "Enhances" -msgstr "" +#: 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:334 -msgid "important" -msgstr "important" +#: 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 "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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Eroare la scrierea în fișierul" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Se demontează CD-ul...\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:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Utilizare punct de montare CD-ROM %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Eroare la citirea de la server" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Aștept discul...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Eroare la scrierea în fișier" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Montez CD-ROM...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Selecția a eșuat" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificare... " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Timp de conectare expirat" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Etichetă memorată: %s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Eroare la scrierea fișierului de rezultat" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Scanez discul de fișierele index...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "În așteptarea antetelor" -# 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/server.cc:109 +msgid "Bad header line" +msgstr "Linie de antet necorespunzătoare" -#: 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 "Serverul HTTP a trimis un antet de răspuns necorespunzător" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "A fost găsită eticheta „%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: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: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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Acest disc este numit: \n" -"'%s'\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:819 -msgid "Copying package lists..." -msgstr "Copiez listele de pachete.." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Format dată necunoscut" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Scriere noua listă sursă\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Antet de date necorespunzător" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Conectare eșuată" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " -"cauzată de pachete ținute." - -#: 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." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Se construiește arborele de dependență" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Eroare internă" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Versiuni candidat" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Calculez înnoirea... " -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generare dependențe" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Terminat" -#: 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-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 "Eșec la deschiderea fișierului de stare %s" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:256 +#: apt-private/private-list.cc:156 #, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Eșec la scrierea fișierului temporar 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/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:93 +msgid "Correcting dependencies..." +msgstr "Corectez dependențele..." -#: 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:96 +msgid " failed." +msgstr " eșec." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Nu s-au putut corecta dependențele" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit" -#: 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:104 +msgid " Done" +msgstr " Terminat" -#: 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: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:615 -#, fuzzy, c-format -msgid "Couldn't find any package by glob '%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:626 -#, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" +#: 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: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:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Instalat]" -#: 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:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Instalat]" -#: apt-pkg/cacheset.cc:655 -#, c-format -msgid "Can't select candidate version from package %s as it has no candidate" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Instalat]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Instalat]" + +#: apt-private/private-output.cc:248 #, c-format -msgid "Can't select installed version from package %s as it is not installed" +msgid "[upgradable from: %s]" msgstr "" -#: 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:252 +msgid "[residual-config]" +msgstr "" -#: 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:434 +#, c-format +msgid "but %s is installed" +msgstr "dar %s este instalat" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:436 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" +msgid "but %s is to be installed" +msgstr "dar %s este pe cale de a fi 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:443 +msgid "but it is not installable" +msgstr "dar nu este instalabil" -#: 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:445 +msgid "but it is a virtual package" +msgstr "dar este un pachet virtual" -#: 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:448 +msgid "but it is not installed" +msgstr "dar nu este instalat" -#: 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:448 +msgid "but it is not going to be installed" +msgstr "dar nu este pe cale să fie instalat" -#: 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:453 +msgid " or" +msgstr " sau" -#: 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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Următoarele pachete au dependențe neîndeplinite:" -#: 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:502 +msgid "The following NEW packages will be installed:" +msgstr "Următoarele pachete NOI vor fi instalate:" -#: 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:528 +msgid "The following packages will be REMOVED:" +msgstr "Următoarele pachete vor fi ȘTERSE:" -#: 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:550 +msgid "The following packages have been kept back:" +msgstr "Următoarele pachete au fost reținute:" -#: 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)" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Următoarele pachete vor fi ÎNNOITE:" -#: 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:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Următoarele pachete vor fi DE-GRADATE:" -#: 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ă)" +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Următoarele pachete ținute vor fi schimbate:" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" +msgid "%s (due to %s) " +msgstr "%s (datorită %s) " -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Deschidere %s" +#: apt-private/private-output.cc:675 +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:371 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "Linie greșită %u în lista sursă %s (tip)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu înnoite, %lu nou instalate, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:710 #, 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" +msgid "%lu reinstalled, " +msgstr "%lu reinstalate, " -#: 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" +#: apt-private/private-output.cc:712 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu de-gradate, " -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-output.cc:714 #, c-format -msgid "Installing %s" -msgstr "Se instalează %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu de șters și %lu neînnoite.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#: apt-private/private-output.cc:718 #, c-format -msgid "Configuring %s" -msgstr "Se configurează %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu instalate sau șterse incomplet.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Se șterge %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:740 +msgid "[Y/n]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, fuzzy, c-format -msgid "Completely removing %s" -msgstr "Șters complet %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:746 +msgid "[y/N]" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "Y" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Se rulează declanșatorul post-instalare %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Comanda de actualizare nu are argumente" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 +#: apt-private/private-update.cc:90 #, c-format -msgid "Directory '%s' missing" -msgstr "Directorul „%s” lipsește." +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: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-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 "Se pregătește %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:990 -#, c-format -msgid "Unpacking %s" -msgstr "Se despachetează %s" +#: 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 "Se pregătește configurarea %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." + +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Eroare internă, Ordering nu s-a terminat" + +#: apt-private/private-install.cc:150 +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" + +#. 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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, c-format -msgid "Completely removed %s" -msgstr "Șters complet %s" +msgid "You don't have enough free space in %s." +msgstr "Nu aveți suficient spațiu în %s." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:212 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-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Nu s-a putut scrie î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:222 +msgid "Yes, do as I say!" +msgstr "Da, fă cum îți spun!" -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:224 +#, 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:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Renunțare." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Vreți să continuați?" -#: apt-pkg/deb/dpkgpm.cc:1631 -msgid "No apport report written because MaxReports is reached already" -msgstr "" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Descărcarea unor fișiere a eșuat" -#. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1636 -msgid "dependency problems - leaving unconfigured" +#: apt-private/private-install.cc:322 +msgid "" +"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:1638 +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat" + +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Nu pot corecta pachetele lipsă." + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Abandonez instalarea." + +#: apt-private/private-install.cc:368 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] "" +msgstr[2] "" + +#: apt-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 +# XXX: orice sugestie este bine-venită +#: apt-private/private-install.cc:393 +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:501 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 "" +"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." + +#. +#. 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:504 apt-private/private-install.cc:655 +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-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" + +#: apt-private/private-install.cc:515 +#, fuzzy msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -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-private/private-install.cc:519 +#, 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:" + +#: apt-private/private-install.cc:521 +#, 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-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:614 +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-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"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:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"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." -#: 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-install.cc:661 +msgid "Broken packages" +msgstr "Pachete deteriorate" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Următoarele extra pachete vor fi instalate:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Pachete sugerate:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Pachete recomandate:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "" +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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:855 +#, 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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "" +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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "Selecția %s nu a fost găsită" +msgid "%s is already the newest version.\n" +msgstr "%s este deja la cea mai nouă versiune.\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:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Versiune selectată %s (%s) pentru %s\n" -#: 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-install.cc:925 +#, 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Nu este folosit blocajul pentru fișierul montat nfs %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Nu pot determina blocajul %s" +#: apt-private/private-install.cc:973 +#, 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: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 "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" -#: 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 "Avertisment de autentificare înlocuit.\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 "Unele pachete n-au putut fi autentificate" -#: 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:50 +msgid "Install these packages without verification?" +msgstr "Instalați aceste pachete fără verificare?" -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/private-sources.cc:58 #, fuzzy, c-format -msgid "Sub-process %s received signal %u." -msgstr "Subprocesul %s a primit o eroare de segmentare." +msgid "Failed to parse %s. Edit again? " +msgstr "Eșec la redenumirea lui %s în %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 "Subprocesul %s a întors un cod de eroare (%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 "Subprocesul %s s-a terminat brusc" +#: 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ă la închiderea fișierului" +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Atins " -#: 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/acqprogress.cc:88 +msgid "Get:" +msgstr "Luat:" -#: 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/acqprogress.cc:119 +msgid "Ign " +msgstr "Ignorat " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Eșec la crearea IPC-ului pentru subproces" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Eroare" -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Eșec la executarea compresorului" +#: apt-private/acqprogress.cc:147 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Aduși: %sB în %s (%sB/s)\n" -#: 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/acqprogress.cc:237 +#, c-format +msgid " [Working]" +msgstr " [În lucru]" -#: 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:298 +#, c-format +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/fileutl.cc:1915 -#, fuzzy, c-format -msgid "Problem closing the file %s" -msgstr "Problemă la închiderea fișierului" +#. 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ă în timpul sincronizării fișierului" +msgid "Can not read mirror file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/contrib/fileutl.cc:1938 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "Problem unlinking the file %s" -msgstr "Problemă la dezlegarea fișierului" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problemă în timpul sincronizării fișierului" - -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Eroare!" +msgid "No entry found in mirror file '%s'" +msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/contrib/progress.cc:150 +#: methods/mirror.cc:445 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... Terminat" - -#: 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... Terminat" +#: 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" -#: 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" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Conexiune închisă prematur" -#: 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" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Configurări implicite necorespunzătoare!" -#: 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" +#: 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." -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Nu s-a putut deschide %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?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#: dselect/install:102 #, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Nu s-a putut invoca" +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:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nu s-a putut face mmap cu %lu octeți" +#: 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" -#: 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-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Calea de redirectare este prea lungă" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -msgstr "" -"Opțiunea %s: Specificația configurării articolului trebuie să aibă o =." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3224,12 +3237,7 @@ msgstr "" " -c=? Citește acest fișier de configurare\n" " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nu se poate executa „stat” pe %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nu s-a putut citi versiunea debconf. Este instalat debconf?" @@ -3354,17 +3362,17 @@ msgstr "Nu s-a potrivit nici o selecție" msgid "Some files are missing in the package file group `%s'" msgstr "Unele fișiere lipsesc din grupul fișierului pachet '%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB a fost corupt, fișierul a fost redenumit %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB este vechi, se încearcă înnoirea %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3373,105 +3381,105 @@ msgstr "" "Formatul DB este nevalid. Dacă l-ați înnoit pe apt de la o versiune mai " "veche, ștergeți și recreați baza de date." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nu s-a putut deschide fișierul DB %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Eșec la „readlink” pentru %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arhiva nu are înregistrare de control" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Nu s-a putut obține un cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "A: Nu s-a putut citi directorul %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "A: Nu s-a putut efectua „stat” pentru %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "A: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Erori la fișierul " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Eșec la „resolve” pentru %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Parcurgerea arborelui a eșuat" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Eșec la „open” pentru %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Dezlegare %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Eșec la „readlink” pentru %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Eșec la „unlink” pentru %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Eșec la „link” între %s și %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Limita de %sB a dezlegării a fost atinsă.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arhiva nu are câmp de pachet" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nu are intrare de înlocuire\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s responsabil este %s nu %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nu are nici o intrare sursă de înlocuire\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nu are nici intrare binară de înlocuire\n" diff --git a/po/ru.po b/po/ru.po index ee75cb342..7a6e489c2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -25,3270 +25,3283 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Кэш пакетов повреждён" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Не поддерживаемая версия кэша пакетов" + +#: apt-pkg/pkgcache.cc:164 +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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +msgid "Depends" +msgstr "Зависит" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Зафиксированные пакеты:" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "ПредЗависит" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не найдено)" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Предлагает" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Установлен: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Рекомендует" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Конфликтует" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(отсутствует)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Заменяет" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Фиксатор пакета: " +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Замещает" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблица версий:" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Улучшает" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "важный" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "необходимый" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "стандартный" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "необязательный" + +#: apt-pkg/pkgcache.cc:338 +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" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Ошибка компиляции регулярного выражения — %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Произошла ошибка во время обработки %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." 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." -#: 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/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "" +"Превышено допустимое количество версий, которое способен обработать APT." -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Вставьте диск в устройство и нажмите ввод" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "" +"Превышено допустимое количество описаний, которое способен обработать APT." -#: cmdline/apt-cdrom.cc:139 +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Превышено допустимое количество зависимостей, которое способен обработать " +"APT." + +#: apt-pkg/pkgcachegen.cc:598 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Не удалось примонтировать «%s» к «%s»" +msgid "Package %s %s was not found while processing file dependencies" +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-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Чтение списков пакетов" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Непарные аргументы" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Сбор информации о Provides" -#: 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:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Невозможно записать в %s" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Отправка сценария решателю" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "Отправка запроса решателю" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Подготовка к приёму решения" -#: cmdline/apt-get.cc:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Игнорируется недоступная версия «%s» пакета «%s»" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Не удалось найти пакет %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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s установлен вручную.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "переименовать не удалось, %s (%s -> %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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Хеш сумма не совпадает" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Не совпадает размер" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Неверная операция %s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " -"manual»." +"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " +"в sources.list или файл)" -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Внутренняя ошибка, решатель проблем всё поломал" +#: apt-pkg/acquire-item.cc:1697 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Невозможно найти хеш-сумму «%s» в файле Release" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Недоступен открытый ключ для следующих ID ключей:\n" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1775 +#, c-format +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:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Невозможно найти пакет с исходным кодом для %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"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» поддерживается в системе контроля версий «%s»:\n" -"%s\n" +"Произошла ошибка при проверке подписи. Репозиторий не обновлён и будут " +"использованы предыдущие индексные файлы. Ошибка GPG: %s: %s\n" -#: cmdline/apt-get.cc:791 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Ошибка GPG: %s: %s" + +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\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 "" -"Используйте:\n" -"bzr branch %s\n" -"для получения последних (возможно не выпущенных) обновлений пакета.\n" +"Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " +"вручную исправить этот пакет (возможно, пропущен arch)" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Skipping already downloaded file '%s'\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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Не удалось определить количество свободного места в %s" +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." -#: cmdline/apt-get.cc:882 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Недостаточно места в %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)" -#. 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.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" +msgid "List directory %spartial is missing." +msgstr "Каталог списка %spartial отсутствует." -#. TRANSLATOR: The required 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.cc:92 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Необходимо получить %sб архивов исходного кода.\n" +msgid "Archives directory %spartial is missing." +msgstr "Архивный каталог %spartial отсутствует." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "Fetch source %s\n" -msgstr "Получение исходного кода %s\n" +msgid "Unable to lock directory %s" +msgstr "Невозможно заблокировать каталог %s" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Некоторые архивы не удалось получить." +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Скачивается файл %li из %li (осталось %s)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "Указан режим «только скачивание», и скачивание завершено" +#: apt-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Скачивается файл %li из %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Не удалось получить %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 "" +"Некоторые индексные файлы не скачались. Они были проигнорированы или вместо " +"них были использованы старые версии." + +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Вы должны заполнить sources.list, поместив туда URI источников пакетов" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Команда распаковки «%s» завершилась неудачно.\n" +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, так как выпуск " +"недоступен в источниках" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Неверная запись в файле параметров %s: отсутствует заголовок Package" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Команда сборки «%s» завершилась неудачно.\n" +msgid "Did not understand pin type %s" +msgstr "Неизвестный тип фиксации %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Порождённый процесс завершился неудачно" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Для фиксации не указан приоритет (или указан нулевой)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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». Подробней, смотрите в man 5 " +"apt.conf о APT::Immediate-Configure. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Не удалось настроить «%s»." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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." -"conf(5) APT::Architectures" +"Вследствие возникновения циклических зависимостей типа Конфликтует/" +"ПредЗависит, для продолжения установки необходимо временно удалить " +"существенно важный пакет %s. Это может привести к фатальным последствиям. " +"Если вы действительно хотите продолжить, установите параметр APT::Force-" +"LoopBreak." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Невозможно получить информацию о зависимостях для сборки %s" +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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s не имеет зависимостей для сборки.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Использование %s в качестве точки монтирования CD-ROM\n" + +#: 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 "Идентификация... " -#: cmdline/apt-get.cc:1271 +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как %s не " -"разрешён для пакетов «%s»" +"Найдено индексов: %zu для пакетов, %zu для источников, %zu для переводов и " +"%zu для сигнатур\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " -"найден" +"Не удалось найти ни одного файла пакетов; возможно это не диск Debian или с " +"не той архитектурой?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " -"пакет %s новее, чем надо" +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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как версия-" -"кандидат пакета %s не может удовлетворить требованиям по версии" +"Название диска: \n" +"«%s»\n" -#: cmdline/apt-get.cc:1357 +#: 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 dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " -"имеет версии-кандидата" +"Пакет %s нуждается в переустановке, но найти архив для него не удалось." + +#: 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 "Failed to open StateFile %s" +msgstr "Не удалось открыть StateFile %s" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" +msgid "Failed to write temporary StateFile %s" +msgstr "Не удалось записать временный StateFile %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/tagfile.cc:169 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Зависимости для сборки %s не могут быть удовлетворены." +msgid "Unable to parse package file %s (1)" +msgstr "Невозможно разобрать содержимое пакета %s (1)" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Обработка зависимостей для сборки завершилась неудачно" +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Невозможно разобрать содержимое пакета %s (2)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:490 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Changelog для %s (%s)" +msgid "Release '%s' for '%s' was not found" +msgstr "Выпуск «%s» для «%s» не найден" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Поддерживаемые модули:" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Версия «%s» для «%s» не найдена" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Не удалось найти пакет %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Не удалось найти задачу «%s»" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" +"Не удалось выбрать версии из пакета «%s», так как он полностью виртуальный" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"Не удалось выбрать ни установленную, ни версию кандидата из пакета «%s», так " +"как в нём нет ни той, ни другой" -#: cmdline/apt-helper.cc:35 -#, fuzzy -msgid "Must specify at least one pair url/filename" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" -"Укажите как минимум один пакет, исходный код которого необходимо получить" +"Не удалось выбрать самую новую версию из пакета «%s», так как он полностью " +"виртуальный" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" 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" +#: apt-pkg/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" +"Не удалось выбрать установленную версию из пакета %s, так как он не " +"установлен" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s не может быть помечен, так он не установлен.\n" +msgid "Unable to parse Release file %s" +msgstr "Невозможно разобрать содержимое файла Release (%s)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s уже помечен как установленный вручную.\n" +msgid "No sections in Release file %s" +msgstr "Отсутствуют разделы в файле Release (%s)" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s уже помечен как установленный автоматически.\n" +msgid "No Hash entry in Release file %s" +msgstr "Отсутствуют элементы Hash в файле Release (%s)" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s уже помечен как зафиксированный.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Неправильный элемент «Valid-Until» в файле Release %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s уже помечен как не зафиксированный.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Неправильный элемент «Date» в файле Release %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 -#, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Ожидалось завершение процесса %s, но он не был запущен" +#: apt-pkg/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "%s set on hold.\n" -msgstr "%s помечен как зафиксированный.\n" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Искажённая строка %lu в списке источников %s ([параметр] неразбираем)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, 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." +msgid "Malformed line %lu in source list %s ([option] too short)" 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" -"содержится подробная информация и описание параметров." +"Искажённая строка %lu в списке источников %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/sourcelist.cc:184 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Искажённая строка %lu в списке источников %s (([%s] не назначаем)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Невозможно прочесть базу %s с CD" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Искажённая строка %lu в списке источников %s ([%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/sourcelist.cc:193 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-" -"get update не используется для добавления нового CD" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Ошибочный CD" +"Искажённая строка %lu в списке источников %s (([%s] ключ %s не имеет " +"значения)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется." +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Искажённая строка %lu в списке источников %s (проблема в URI)" -#: 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 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сервер разорвал соединение и сообщил: %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "" +"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "USER failed, server said: %s" -msgstr "Команда USER не выполнена, сервер сообщил: %s" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:217 #, 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 "" -"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" -"ProxyLogin пуст." +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Искажённая строка %lu в списке источников %s (absolute 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 parse)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:335 #, 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 -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 "Opening %s" +msgstr "Открытие %s" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Неизвестное семейство адресов %u (AF_*)" +msgid "Malformed line %u in source list %s (type)" +msgstr "Искажённая строка %u в списке источников %s (тип)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Команда EPRT не выполнена, сервер сообщил: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Время установления соединения для сокета данных истекло" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -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:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Проблема при хешировании файла" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +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), connection timed out" +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 "Не удалось найти IP-адрес для «%s»" +msgid "Removed %s" +msgstr "Удалён %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Временная ошибка при попытке получить IP-адрес «%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 - %s)" - -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Что-то странное произошло при определении «%s:%s» (%i - %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?!" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -"Внутренняя ошибка: Правильная подпись, но не удалось определить отпечаток " -"ключа?!" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Найдена как минимум одна неправильная подпись." +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, 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?)" -msgstr "Не удалось выполнить «gpgv» для проверки подписи (gpgv установлена?)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +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:1088 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Неизвестная ошибка при выполнении gpgv" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Следующие подписи неверные:\n" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Действие прервано до его завершения" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "Отчёты apport не записаны, так достигнут MaxReports" + +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "проблемы с зависимостями — оставляем ненастроенным" + +#: apt-pkg/deb/dpkgpm.cc:1632 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" +"Отчёты apport не записаны, так как сообщение об ошибке указывает на " +"повторную ошибку от предыдущего отказа." -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Пустые файлы не могут быть допустимыми архивами" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"места на диске" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Ошибка записи в файл" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"памяти" -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Ошибка чтения, удалённый сервер прервал соединение" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке о нехватке " +"места на диске" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Ошибка чтения с сервера" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Отчёты apport не записаны, так как получено сообщение об ошибке об ошибке " +"ввода-выводы dpkg" -#: 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 "" +"Не удалось выполнить блокировку управляющего каталога (%s); он уже " +"используется другим процессом?" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Ошибка в select" +#: apt-pkg/deb/debsystem.cc:94 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "" +"Не удалось выполнить блокировку управляющего каталога (%s); у вас есть права " +"суперпользователя?" -#: 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 "" +"Работа dpkg прервана, вы должны вручную запустить «%s» для устранения " +"проблемы. " -#: 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 "%liд %liч %liмин %liс" -#: 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 "%liч %liмин %liс" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "Http-сервер послал неверный заголовок" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liмин %liс" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Http сервер послал неверный заголовок Content-Length" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Http-сервер послал неверный заголовок Content-Range" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Не найдено: %s" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Этот HTTP-сервер не поддерживает скачивание фрагментов файлов" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "" +"Блокировка не используется, так как файл блокировки %s доступен только для " +"чтения" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Неизвестный формат данных" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Не удалось открыть файл блокировки %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Неверный заголовок данных" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "" +"Блокировка не используется, так как файл блокировки %s находится на файловой " +"системе nfs" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Соединение разорвано" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Не удалось получить доступ к файлу блокировки %s" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Внутренняя ошибка" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Список файлов не может быть создан, так как «%s» не является каталогом" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Расчёт обновлений…" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Файл «%s» в каталоге «%s» игнорируется, так как это необычный файл" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Готово" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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:422 +#, 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:841 +#, 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:843 #, 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 signal %u." +msgstr "Порождённый процесс %s получил сигнал %u." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Исправление зависимостей…" +#: apt-pkg/contrib/fileutl.cc:847 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:96 -msgid " failed." -msgstr " не удалось." +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Порождённый процесс %s неожиданно завершился" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Невозможно скорректировать зависимости" - -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Невозможно минимизировать набор обновлений" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: 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:951 +#, 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:1139 +#, 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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:1353 apt-pkg/contrib/fileutl.cc:2125 +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:1411 +msgid "Failed to exec compressor " +msgstr "Не удалось выполнить компрессор " -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Установлен]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: 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:1552 +#, 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-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Установлен]" - -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "write, still have %llu to write but couldn't" +msgstr "ошибка при записи; собирались записать ещё %llu байт, но не смогли" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблема закрытия файла %s" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1964 #, 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:436 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "but %s is to be installed" -msgstr "но %s будет установлен" +msgid "Problem unlinking the file %s" +msgstr "Проблема при удалении файла %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "но он не может быть установлен" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Проблема при синхронизации файла" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "но это виртуальный пакет" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Невозможно получить атрибуты %s" -#: apt-private/private-output.cc:448 -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:448 -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:453 -msgid " or" -msgstr " или" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "…" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -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:502 -msgid "The following NEW packages will be installed:" -msgstr "НОВЫЕ пакеты, которые будут установлены:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Невозможно отобразить в память пустой файл" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Пакеты, которые будут УДАЛЕНЫ:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Не удалось сделать копию файлового дескриптора %i" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Пакеты, которые будут оставлены в неизменном виде:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Невозможно отобразить в память %llu байт" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Пакеты, которые будут обновлены:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Не удалось закрыть mmap" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -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:612 -msgid "The following held packages will be changed:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Невозможно отобразить в память %lu байт" + +#: 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 "" -"Пакеты, которые должны были бы остаться без изменений, но будут заменены:" +"Не хватает места для Dynamic MMap. Увеличьте значение APT::Cache-Start. " +"Текущее значение: %lu. (man 5 apt.conf)" -#: apt-private/private-output.cc:667 +#: 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:675 +#: 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:706 +#: 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:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Невозможно получить атрибуты cdrom" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "переустановлено %lu переустановлено, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Неизвестная аббревиатура типа: «%c»" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "%lu пакетов заменены на старые версии, " +msgid "Opening configuration file %s" +msgstr "Открытие файла настройки %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, 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:718 +#: apt-pkg/contrib/configuration.cc:822 #, 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:740 -msgid "[Y/n]" -msgstr "[Д/н]" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:746 -msgid "[y/N]" +#: apt-pkg/contrib/configuration.cc:879 +#, 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:757 -msgid "Y" -msgstr "д" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "н" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 #, c-format -msgid "Regex compilation error - %s" -msgstr "Ошибка компиляции регулярного выражения — %s" +msgid "Syntax error %s:%u: Included from here" +msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Команде update не нужны аргументы" - -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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: Unsupported directive '%s'" +msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива «%s»" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" +"Синтаксическая ошибка %s:%u: для директивы clear требуется третий параметр в " +"качестве аргумента" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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 "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:82 -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:91 -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:110 -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:148 -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:155 +#: 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 =." +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:160 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необходимо скачать %sБ архивов.\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:167 +#: 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:172 +#: 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:200 +#: 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:210 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 "Пакет %s версии %s имеет неудовлетворённую зависимость:\n" -#: apt-private/private-install.cc:216 apt-private/private-install.cc:238 -msgid "Trivial Only specified but this is not a trivial operation." -msgstr "" -"Запрошено выполнение только тривиальных операций, но это не тривиальная " -"операция." +#: cmdline/apt-cache.cc:317 +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:220 -msgid "Yes, do as I say!" -msgstr "Да, делать, как я скажу!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Обычных пакетов: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Аварийное завершение." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Полностью виртуальных пакетов: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Хотите продолжить?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Одиночных виртуальных пакетов: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Некоторые файлы скачать не удалось" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Смешанных виртуальных пакетов: " -#: 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" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Отсутствует: " -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Всего уникальных версий: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Невозможно исправить ситуацию с пропущенными пакетами." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Всего уникальных описаний: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Аварийное завершение установки." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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" -"теперь берутся из других пакетов:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Всего отношений Версия/Файл: " -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Замечание: это сделано автоматически и специально программой dpkg." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Всего отношений Описание/Файл: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Всего отношений Provides: " -#: 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 "" -"Хм, кажется, что AutoRemover был как-то удалён, чего не должно\n" -"было случиться. Пожалуйста, отправьте сообщение об ошибке в пакете apt." +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +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 "Следующая информация, возможно, поможет вам:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Всего информации о зависимостях: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Внутренняя ошибка, AutoRemover всё поломал" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Пустого места в кэше: " -#: 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] "Следующий пакет устанавливался автоматически и больше не требуется:" -msgstr[1] "" -"Следующие пакеты устанавливались автоматически и больше не требуются:" -msgstr[2] "" -"Следующие пакеты устанавливались автоматически и больше не требуются:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Полное учтённое пространство: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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" -msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" -msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" +msgid "Package file %s is out of sync." +msgstr "Список пакетов %s рассинхронизирован." -#: 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»." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:1306 +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)." -msgstr "" -"Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " -"не указывая имени пакета, (или найдите другое решение)." - -#: 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" -"пакеты ещё не созданы или были удалены из Incoming." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Эта команда устарела. Используйте вместо неё «apt-mark showauto»." -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Сломанные пакеты" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Списки пакетов:" -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Будут установлены следующие дополнительные пакеты:" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Кэш рассинхронизирован, невозможно обнаружить ссылку на список пакетов" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Предлагаемые пакеты:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Зафиксированные пакеты:" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Рекомендуемые пакеты:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(не найдено)" -#: apt-private/private-install.cc:825 -#, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "Пропускается %s — пакет уже установлен и нет команды upgrade.\n" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Установлен: " -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Пропускается %s — пакет не установлен, а запрошено только обновление.\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Переустановка %s невозможна, он не скачивается.\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(отсутствует)" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Уже установлена самая новая версия %s.\n" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Фиксатор пакета: " -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Выбрана версия «%s» (%s) для «%s»\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Таблица версий:" -#: apt-private/private-install.cc:899 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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' because of '%s'\n" -msgstr "Выбрана версия «%s» (%s) для «%s» из-за «%s»\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s для %s скомпилирован %s %s\n" -#. 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" +#: cmdline/apt-cache.cc:1801 +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 "" -"Пакет «%s» не установлен, поэтому не может быть удалён. Возможно имелся в " -"виду «%s»?\n" +"Использование: 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" + +#: 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 "Вставьте диск в устройство и нажмите ввод" -#: apt-private/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакет «%s» не установлен, поэтому не может быть удалён\n" +msgid "Failed to mount '%s' to '%s'" +msgstr "Не удалось примонтировать «%s» к «%s»" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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" -" Для реальной работы apt-get требуются права суперпользователя.\n" -" Учтите, что блокировка не используется,\n" -" поэтому нет полного соответствия с текущей реальной ситуацией!" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "ВНИМАНИЕ: Следующие пакеты невозможно аутентифицировать!" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторите этот процесс для всех имеющихся CD." -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Предупреждение об аутентификации не принято в внимание.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Непарные аргументы" -#: apt-private/private-download.cc:45 apt-private/private-download.cc:52 -msgid "Some packages could not be authenticated" -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/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Установить эти пакеты без проверки?" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: 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-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Не удалось переименовать %s в %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Не удалось найти пакет по регулярному выражению «%s»" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "Игнорируется недоступная версия «%s» пакета «%s»" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "В кэше " +#: cmdline/apt-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Не удалось найти пакет %s" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Получено:" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s установлен вручную.\n" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Игн " +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s выбран для автоматической установки.\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -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»." + +#: 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 "" +"Укажите как минимум один пакет, исходный код которого необходимо получить" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Получено %sБ за %s (%sБ/c)\n" +msgid "Unable to find a source package for %s" +msgstr "Невозможно найти пакет с исходным кодом для %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:786 #, c-format -msgid " [Working]" -msgstr " [Обработка]" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" +"%s\n" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Смена носителя: вставьте диск с меткой\n" -" «%s»\n" -"в устройство «%s» и нажмите ввод\n" +"Используйте:\n" +"bzr branch %s\n" +"для получения последних (возможно не выпущенных) обновлений пакета.\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:839 #, c-format -msgid "Unable to read %s" -msgstr "Невозможно прочитать %s" +msgid "Skipping already downloaded file '%s'\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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to change to %s" -msgstr "Невозможно сменить текущий каталог на %s" +msgid "Couldn't determine free space in %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:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Файл «%s» не найден на зеркале" +msgid "You don't have enough free space in %s" +msgstr "Недостаточно места в %s" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#. 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:893 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Невозможно прочитать файл на зеркале «%s»" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror 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 +#: cmdline/apt-get.cc:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:904 #, c-format -msgid "[Mirror: %s]" -msgstr "[Зеркало: %s]" +msgid "Fetch source %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:922 +msgid "Failed to fetch some archives." +msgstr "Некоторые архивы не удалось получить." -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Соединение закрыто преждевременно" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Указан режим «только скачивание», и скачивание завершено" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Неправильное значение по умолчанию!" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\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:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Команда распаковки «%s» завершилась неудачно.\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Удалить все ранее скачанные .deb файлы?" +#: cmdline/apt-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "Во время распаковки возникли ошибки. Пакеты, которые были установлены," +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "Команда сборки «%s» завершилась неудачно.\n" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "будут настроены. Это может привести к повторению ошибок" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Порождённый процесс завершился неудачно" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" msgstr "" -"или возникновению новых из-за неудовлетворённых зависимостей. Это нормально, " -"важны" +"Для проверки зависимостей для сборки необходимо указать как минимум один " +"пакет" -#: dselect/install:105 +#: cmdline/apt-get.cc:1056 +#, c-format 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 "" -"только ошибки, указанные в этом сообщении. Исправьте их и выполните " -"установку ещё раз" - -#: 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 -#, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Попытка изменения diversion, %s -> %s и %s/%s" +"У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." +"conf(5) APT::Architectures" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Двойное добавление diversion %s -> %s" +msgid "Unable to get build-dependency information for %s" +msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Повторно указан файл настройки %s/%s" +msgid "%s has no build depends.\n" +msgstr "%s не имеет зависимостей для сборки.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "The path %s is too long" -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/extract.cc:132 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Unpacking %s more than once" -msgstr "Повторная распаковка %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " +"найден" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "The directory %s is diverted" -msgstr "Каталог %s входит в список diverted" +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "" +"Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " +"пакет %s новее, чем надо" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:1376 #, 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 "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как версия-" +"кандидат пакета %s не может удовлетворить требованиям по версии" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Failed to stat %s" -msgstr "Не удалось получить атрибуты %s" +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " +"имеет версии-кандидата" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Не удалось переименовать %s в %s" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1420 #, 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 "Не удалось разместить узел в хеше" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Путь слишком длинен" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Файлы заменяются содержимым пакета %s без версии" +msgid "Changelog for %s (%s)" +msgstr "Changelog для %s (%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" - -#: 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 "Это неправильный DEB-архив — отсутствует составная часть «%s»" - -#: apt-inst/deb/debfile.cc:132 -#, 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 -#, 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, архив повреждён" +#: cmdline/apt-get.cc:1616 +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:1657 +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 "Заменяет" +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 "Obsoletes" -msgstr "Замещает" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Диск не найден." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Ломает" +#: 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 "Улучшает" +#: 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 "important" -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 "required" -msgstr "необходимый" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Неправильный URI, локальный URI не должен начинаться с //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартный" +#. 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 "необязательный" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Невозможно определить имя удалённого сервера" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "дополнительный" +#: 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»" +msgid "The server refused the connection and said: %s" +msgstr "Сервер разорвал соединение и сообщил: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Кэш имеет несовместимую систему версий" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "Команда USER не выполнена, сервер сообщил: %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 "Произошла ошибка во время обработки %s (%s%d)" +msgid "PASS failed, server said: %s" +msgstr "Команда PASS не выполнена, сервер сообщил: %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 "" -"Превышено допустимое количество имён пакетов, которое способен обработать " -"APT." +"Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" +"ProxyLogin пуст." -#: 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." +"Команда «%s» сценария входа в систему завершилась неудачно, сервер сообщил: " +"%s" -#: apt-pkg/pkgcachegen.cc:263 -msgid "Wow, you exceeded the number of descriptions 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:266 -msgid "Wow, you exceeded the number of dependencies 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:576 -#, c-format -msgid "Package %s %s was not found while processing file dependencies" -msgstr "Во время обработки файла зависимостей не найден пакет %s %s" +#: 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" -msgstr "Не удалось получить атрибуты списка пакетов исходного кода %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 "Чтение списков пакетов" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Искажение протокола" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Сбор информации о 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 "Невозможно записать в %s" +#: 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" -msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Неудачно" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Отправка сценария решателю" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Невозможно присоединить пассивный сокет" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "Отправка запроса решателю" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Вызов getaddrinfo не смог получить сокет" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Подготовка к приёму решения" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Невозможно присоединиться к сокету" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Не удалось принимать соединения на сокете" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -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" -#: 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 "переименовать не удалось, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Неизвестное семейство адресов %u (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Хеш сумма не совпадает" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Команда EPRT не выполнена, сервер сообщил: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Не совпадает размер" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Время установления соединения для сокета данных истекло" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Неверная операция %s" +#: 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)" -msgstr "" -"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " -"в sources.list или файл)" +#: 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 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Невозможно найти хеш-сумму «%s» в файле Release" +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 "" -"Файл Release для %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:1699 +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Невозможно вызвать " + +#: 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 "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" -#: 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 не содержит отпечатка (fingerprint)" +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 "Не удалось найти IP-адрес для «%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 "Временная ошибка при попытке получить IP-адрес «%s»" -#: apt-pkg/acquire.cc:99 -#, c-format -msgid "Unable to lock directory %s" -msgstr "Невозможно заблокировать каталог %s" +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s'" +msgstr "Что-то странное произошло при определении «%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 "Скачивается файл %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." +"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 "" -"Значение «%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: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 "" -"Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " -"apt.conf о APT::Immediate-Configure. (%d)" +"Следующие подписи не могут быть проверены, так как недоступен открытый " +"ключ:\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 "Размонтирование 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 "Использование %s в качестве точки монтирования CD-ROM\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 +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Неизвестный формат данных" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Неверный заголовок данных" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Соединение разорвано" + +#: methods/server.cc:572 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Название диска: \n" -"«%s»\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копирование списков пакетов…" +#: methods/server.cc:692 +msgid "Internal error" +msgstr "Внутренняя ошибка" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Запись нового списка источников\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Расчёт обновлений…" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Записи в списке источников для этого диска:\n" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +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-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:123 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:156 +#, 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 "Исправление зависимостей…" + +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " не удалось." + +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Невозможно скорректировать зависимости" + +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Невозможно минимизировать набор обновлений" + +#: 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 "" -"Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " -"может быть вызвано отложенными (held) пакетами." +"Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" +"f install»." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Неудовлетворённые зависимости. Попытайтесь использовать -f." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Построение дерева зависимостей" +#: 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 "Версии-кандидаты" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Установлен]" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Генерирование зависимостей" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Установлен]" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Чтение информации о состоянии" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Не удалось открыть StateFile %s" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Установлен]" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Не удалось записать временный StateFile %s" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Установлен]" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:248 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Невозможно разобрать содержимое пакета %s (1)" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/tagfile.cc:237 -#, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Невозможно разобрать содержимое пакета %s (2)" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:434 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Выпуск «%s» для «%s» не найден" +msgid "but %s is installed" +msgstr "но %s уже установлен" -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-output.cc:436 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Версия «%s» для «%s» не найдена" +msgid "but %s is to be installed" +msgstr "но %s будет установлен" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Не удалось найти задачу «%s»" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "но он не может быть установлен" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Не удалось найти пакет по регулярному выражению «%s»" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +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:448 +msgid "but it is not installed" +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:448 +msgid "but it is not going to be installed" +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:453 +msgid " or" +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:467 apt-private/private-output.cc:479 +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 "" -"Не удалось выбрать самую версию кандидата из пакета %s, так как у него нет " -"кандидатов" +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be 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:528 +msgid "The following packages will be REMOVED:" +msgstr "Пакеты, которые будут УДАЛЕНЫ:" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Невозможно разобрать содержимое файла Release (%s)" +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Пакеты, которые будут оставлены в неизменном виде:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Отсутствуют разделы в файле Release (%s)" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +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:592 +msgid "The following packages will be DOWNGRADED:" +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:612 +msgid "The following held packages will be changed:" +msgstr "" +"Пакеты, которые должны были бы остаться без изменений, но будут заменены:" -#: apt-pkg/indexrecords.cc:149 +#: apt-private/private-output.cc:667 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Неправильный элемент «Date» в файле Release %s" +msgid "%s (due to %s) " +msgstr "%s (вследствие %s) " -#: 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:675 +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:170 +#: apt-private/private-output.cc:706 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Искажённая строка %lu в списке источников %s ([параметр] неразбираем)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "обновлено %lu, установлено %lu новых пакетов, " -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Искажённая строка %lu в списке источников %s ([параметр] слишком короткий)" +msgid "%lu reinstalled, " +msgstr "переустановлено %lu переустановлено, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Искажённая строка %lu в списке источников %s (([%s] не назначаем)" +msgid "%lu downgraded, " +msgstr "%lu пакетов заменены на старые версии, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Искажённая строка %lu в списке источников %s ([%s] не имеет ключа)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "для удаления отмечено %lu пакетов, и %lu пакетов не обновлено.\n" -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" -msgstr "" -"Искажённая строка %lu в списке источников %s (([%s] ключ %s не имеет " -"значения)" +msgid "%lu not fully installed or removed.\n" +msgstr "не установлено до конца или удалено %lu пакетов.\n" -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -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:740 +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:746 +msgid "[y/N]" msgstr "" -"Искажённая строка %lu в списке источников %s (проблема в имени дистрибутива)" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Искажённая строка %lu в списке источников %s (анализ URI)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "д" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Искажённая строка %lu в списке источников %s (absolute dist)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "н" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Искажённая строка %lu в списке источников %s (dist parse)" +#: 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] "" +msgstr[1] "" +msgstr[2] "" -#: 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] "" +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-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:84 +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:93 +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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Внутренняя ошибка, Ordering не завершилась" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Выполняется полное удаление %s" +#: apt-private/private-install.cc:150 +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:157 #, 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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Выполняется послеустановочный триггер %s" +msgid "Need to get %sB of archives.\n" +msgstr "Необходимо скачать %sБ архивов.\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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "Да, делать, как я скажу!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Аварийное завершение." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Подготовка к полному удалению %s" +#: apt-private/private-install.cc:245 +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:315 +msgid "Some files failed to download" +msgstr "Некоторые файлы скачать не удалось" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "Невозможно исправить ситуацию с пропущенными пакетами." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Аварийное завершение установки." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Действие прервано до его завершения" +#: apt-private/private-install.cc:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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:504 apt-private/private-install.cc:655 +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:508 +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:515 msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -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] "Следующий пакет устанавливался автоматически и больше не требуется:" +msgstr[1] "" +"Следующие пакеты устанавливались автоматически и больше не требуются:" +msgstr[2] "" +"Следующие пакеты устанавливались автоматически и больше не требуются:" + +#: apt-private/private-install.cc:519 +#, 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-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-install.cc:521 +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-pkg/deb/debsystem.cc:91 -#, c-format -msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" +#: apt-private/private-install.cc:614 +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:616 +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:640 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:661 +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:738 +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:828 +msgid "Suggested packages:" +msgstr "Предлагаемые пакеты:" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 -#, c-format -msgid "%lis" -msgstr "%liс" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Рекомендуемые пакеты:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Ош " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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%%" +msgid "[Mirror: %s]" +msgstr "[Зеркало: %s]" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Невозможно отобразить в память пустой файл" +#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Не удалось создать IPC-канал для порождённого процесса" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Не удалось сделать копию файлового дескриптора %i" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Соединение закрыто преждевременно" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Невозможно отобразить в память %llu байт" +#: 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 "Для продолжения нажмите ввод." -#: 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 "Удалить все ранее скачанные .deb файлы?" -#: 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 "" -"Не хватает места для Dynamic 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 байт." +"только ошибки, указанные в этом сообщении. Исправьте их и выполните " +"установку ещё раз" -#: 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 "Не удалось создать diversion" -#: 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 "Попытка изменения 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-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Путь diversion слишком длинен" -#: apt-pkg/contrib/configuration.cc:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -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 "Не удалось прочесть содержимое 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3311,12 +3324,7 @@ msgstr "" " -c=? Читать указанный файл настройки\n" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Невозможно получить атрибуты %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Невозможно определить версию debconf. Он установлен?" @@ -3440,17 +3448,17 @@ msgstr "Совпадений не обнаружено" msgid "Some files are missing in the package file group `%s'" msgstr "В группе пакетов «%s» отсутствуют некоторые файлы" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "БД была повреждена, файл переименован в %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB устарела, попытка обновить %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3458,105 +3466,105 @@ msgstr "" "Некорректный формат базы данных (DB). Если вы обновляли версию apt, удалите " "и создайте базу данных заново." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Не удалось открыть DB файл %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Не удалось прочесть ссылку %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "В архиве нет поля control" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Невозможно получить курсор" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Не удалось прочитать каталог %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Не удалось прочитать атрибуты %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Ошибки относятся к файлу " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Не удалось проследовать по ссылке %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Не удалось совершить обход дерева" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Не удалось открыть %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Не удалось прочесть ссылку %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Не удалось удалить %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Не удалось создать ссылку %s на %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Превышен лимит в %sB в DeLink.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "В архиве нет поля package" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " Нет записи о переназначении (override) для %s\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакет %s сопровождает %s, а не %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " Нет записи source override для %s\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " Нет записи binary override для %s\n" diff --git a/po/sk.po b/po/sk.po index bd20eb3cd..834ebf9c5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -20,3217 +20,3230 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Súbor vyrovnávacej pamäti balíkov je poškodený" + +#: apt-pkg/pkgcache.cc:161 +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:164 +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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +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:324 +msgid "Suggests" +msgstr "Navrhuje" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nainštalovaná verzia: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Odporúča" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidát: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Koliduje s" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(žiadna)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Nahrádza" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Pripevnený balík:" +#: apt-pkg/pkgcache.cc:326 +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:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Rozširuje" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "dôležitý" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "požadovaný" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "štandardný" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "voliteľný" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s pre %s skompilovaný %s %s\n" +msgid "Index file type '%s' is not supported" +msgstr "Indexový súbor typu „%s“ nie je podporovaný" -#: 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/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Chyba pri preklade regulárneho výrazu - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)" + +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." 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" +"Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať." -#: 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/pkgcachegen.cc:283 +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-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/pkgcachegen.cc:286 +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-cdrom.cc:139 +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "" +"Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať." + +#: apt-pkg/pkgcachegen.cc:598 #, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Pripojenie „%s“ na „%s“ zlyhalo" +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-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:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Načítavajú sa zoznamy balíkov" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenty nie sú vo dvojiciach" +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Collecting File poskytuje" -#: 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ž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-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Do %s sa nedá zapisovať" -#: 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:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" -#: 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/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: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/edsp.cc:241 +msgid "Send request to solver" +msgstr "Poslať požiadavku riešiteľovi" -#: cmdline/apt-get.cc:367 -#, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Pripraviť sa na prijatie riešenia" -#: 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-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:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Balík %s sa nedá nájsť" +#: 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" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s je označený ako manuálne nainštalovaný.\n" +msgid "rename failed, %s (%s -> %s)." +msgstr "premenovanie zlyhalo, %s (%s -> %s)." -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s je označený ako automaticky nainštalovaný.\n" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Nezhoda kontrolných haš súčtov" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Veľkosti sa nezhodujú" + +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Neplatná operácia %s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a " -"„apt-mark manual“." +"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:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" +#: apt-pkg/acquire-item.cc:1697 +#, c-format +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:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Adresár pre sťahovanie sa nedá zamknúť" +#: apt-pkg/acquire-item.cc:1737 +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" -#: 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/acquire-item.cc:1775 +#, 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ú." -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Nedá sa nájsť zdrojový balík pre %s" +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)" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"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 "" -"POZN.: tvorba balíka „%s“ sa spravuje v sytéme na riadenie revízií „%s“ na " -"adrese:\n" -"%s\n" +"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" -#: cmdline/apt-get.cc:791 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Chyba GPG: %s: %s" + +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\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 "" -"Prosím, použite:\n" -"bzr branch %s\n" -"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " -"balíka.\n" +"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:843 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" +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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" +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:882 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Na %s nemáte dostatok voľného miesta" +msgid "Vendor block %s contains no fingerprint" +msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)" -#. 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.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" +msgid "List directory %spartial is missing." +msgstr "Adresár zoznamov %spartial chýba." -#. TRANSLATOR: The required 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.cc:92 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" +msgid "Archives directory %spartial is missing." +msgstr "Archívny adresár %spartial chýba." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "Fetch source %s\n" -msgstr "Stiahnuť zdroj %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Zlyhalo stiahnutie niektorých archívov." - -#: 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ť“" +msgid "Unable to lock directory %s" +msgstr "Adresár %s sa nedá zamknúť" -#: cmdline/apt-get.cc:950 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" - -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Sťahuje sa %li. súbor z %li (zostáva %s)" -#: cmdline/apt-get.cc:963 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" +msgid "Retrieving file %li of %li" +msgstr "Sťahuje sa %li. súbor z %li" -#: cmdline/apt-get.cc:991 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" - -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Proces potomka zlyhal" +msgid "Failed to fetch %s %s\n" +msgstr "Zlyhalo stiahnutie %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 "" -"Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na " -"zostavenie" +"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa " +"použili staršie verzie." + +#: 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:1054 +#: 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 "" -"Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení " -"nájdete v apt.conf(5) APT::Architectures" +"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " +"nie je dostupné v zdrojoch" -#: 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 "Nedajú sa získať závislosti na zostavenie %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:1101 +#: apt-pkg/policy.cc:444 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nemá žiadne závislosti na zostavenie.\n" +msgid "Did not understand pin type %s" +msgstr "Nezrozumiteľné pridržanie typu %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 závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch " -"„%s“" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "%s závislosť pre %s nemožno splniť, pretože sa nedá nájsť balík %s" - -#: cmdline/apt-get.cc:1312 -#, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Zlyhalo splnenie %s závislosti pre %s: Inštalovaný balík %s je príliš nový" +"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:1351 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 #, 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" +msgid "Could not configure '%s'. " +msgstr "Nedá sa nakonfigurovať „%s“." -#: cmdline/apt-get.cc:1357 +#: apt-pkg/packagemanager.cc:584 #, 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ý." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM sa odpája...\n" -#: cmdline/apt-get.cc:1395 +#: 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 -#, c-format -msgid "Changelog for %s (%s)" -msgstr "Záznam zmien %s (%s)" +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Pripája sa CD-ROM...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podporované moduly:" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifikuje sa..." -#: 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" +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Uložená menovka: %s \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" +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Na disku sa hľadajú indexové súbory...\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 "" +"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 +#: apt-pkg/cdrom.cc:771 #, 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" +msgid "Found label '%s'\n" +msgstr "Nájdená menovka: „%s“\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" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Neplatný názov, skúste znova.\n" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cdrom.cc:817 #, 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" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Názov tohto disku je: \n" +"„%s“\n" -#: cmdline/apt-mark.cc:243 -#, c-format -msgid "%s was already not hold.\n" -msgstr "%s bol už nastavený na nepodržanie.\n" +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopírujú sa zoznamy balíkov..." -#: 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" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Zapisuje sa nový zoznam zdrojov\n" -#: 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" +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Položky zoznamu zdrojov pre tento disk sú:\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 "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)." +"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." -#: 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 "" +"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " +"pridržanými balíkmi." -#: methods/cdrom.cc:203 -#, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Nedá sa čítať databáza na CD-ROM %s" +#: 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/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/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Vytvára sa strom závislostí" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Chybné CD" +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandidátske verzie" -#: 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/depcache.cc:168 +msgid "Dependency generation" +msgstr "Generovanie závislostí" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk sa nenašiel." +#: 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Súbor sa nenašiel" +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Nie je možné otvoriť StateFile %s" -#: 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/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Nie je možné zapísať dočasný StateFile %s" -#: 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/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Súbor %s sa nedá spracovať (1)" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neplatné URI, lokálne URI nesmie začínať s //" +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Súbor %s sa nedá spracovať (2)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prihlasovanie" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Nedá sa zistiť názov druhej strany" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Nebola nájdená verzia „%s“ pre „%s“" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Nedá sa zistiť lokálny názov" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Nedá sa nájsť balík %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:604 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Server zamietol naše spojenie s chybou: %s" +msgid "Couldn't find task '%s'" +msgstr "Nebolo možné nájsť úlohu „%s“" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:610 #, c-format -msgid "USER failed, server said: %s" -msgstr "Zlyhalo zadanie používateľa, 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“" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:616 +#, 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“" + +#: apt-pkg/cacheset.cc:627 #, c-format -msgid "PASS failed, server said: %s" -msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" +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/ftp.cc:252 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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 "" -"Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::" -"ProxyLogin je prázdny." +"Nie je možné vybrať nainštalované ani kandidátske verzie z balíka „%s“, " +"pretože nemá žiadnu z nich" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %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/ftp.cc:306 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "Zlyhalo zadanie typu, server odpovedal: %s" +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/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Uplynul čas spojenia" +#: apt-pkg/cacheset.cc:664 +#, c-format +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/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Server ukončil spojenie" +#: apt-pkg/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Nedá spracovať súbor 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 "Chyba pri čítaní" +#: apt-pkg/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Žiadne sekcie v Release súbore %s" -#: 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" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Chýba položka „Hash“ v súbore Release %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 pri zápise" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Chýba položka „Valid-Until“ v súbore Release %s" -#: 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/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Chýba položka „Date“ v súbore Release %s" -#: 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/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)" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Chyba" +#: 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])" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Nedá sa pripojiť pasívny socket." +#: 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)" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo nezískal počúvajúci socket" +#: 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/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Nedá sa nadviazať socket" +#: 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/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Na sockete sa nedá počúvať" +#: 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)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Názov socketu sa nedá zistiť" +#: 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)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Príkaz PORT sa nedá odoslať" +#: 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/ftp.cc:802 +#: apt-pkg/sourcelist.cc:211 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznáma rodina adries %u (AF_*)" +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie URI)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:217 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Uplynulo spojenie dátového socketu" +#: 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/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Spojenie sa nedá prijať" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Otvára sa %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/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“" +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" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Uplynula doba dátového socketu" +#: 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/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Prenos dát zlyhal, server odpovedal „%s“" +msgid "Installing %s" +msgstr "Inštaluje sa %s" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Dotaz" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Nastavuje sa %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Nedá sa vyvolať " +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Odstraňuje sa %s" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Pripája sa k %s (%s)" +msgid "Completely removing %s" +msgstr "Úplne sa odstraňuje %s" -#: 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 "Zaznamenali sme zmiznutie %s" -#: 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 "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)" +msgid "Running post-installation trigger %s" +msgstr "Vykonáva sa spúšťač post-installation %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 "Nedá sa nadviazať spojenie na %s:%s (%s)." +msgid "Directory '%s' missing" +msgstr "Adresár „%s“ chýba" -#: 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 "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia" +msgid "Could not open file '%s'" +msgstr "Nedá sa otvoriť súbor „%s“" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Nedá sa pripojiť k %s:%s (%s)." +msgid "Preparing %s" +msgstr "Pripravuje sa %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 "Connecting to %s" -msgstr "Pripája sa k %s" +msgid "Unpacking %s" +msgstr "Rozbaľuje sa %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Could not resolve '%s'" -msgstr "Nie je možné preložiť „%s“" +msgid "Preparing to configure %s" +msgstr "Pripravuje sa nastavenie %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Dočasné zlyhanie pri preklade „%s“" +msgid "Installed %s" +msgstr "Nainštalovaný balík %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/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Pripravuje sa odstránenie %s" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:1004 #, 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 "Removed %s" +msgstr "Odstránený balík %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Nedá sa pripojiť k %s:%s:" +msgid "Preparing to completely remove %s" +msgstr "Pripravuje sa úplné odstránenie %s" -#: 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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Balík „%s“ je úplne odstránený" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Bola zistená aspoň jedna nesprávna signatúra." +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: 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/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Do %s sa nedá zapisovať" -#. 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:1067 +msgid "Is /dev/pts mounted?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznáma chyba pri spustení gpgv" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Nasledovné signatúry sú neplatné:\n" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Čakalo sa na %s, ale nebolo to tam" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Operácia bola prerušená predtým, než sa stihla dokončiť" + +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "Nezapíše sa správa apport, pretože už bol dosiahnutý limit MaxReports" + +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "problém so závislosťami - ponecháva sa nenakonfigurované" + +#: apt-pkg/deb/dpkgpm.cc:1632 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 "" -"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný " -"kľúč:\n" +"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v " +"nadväznosti na predošlé zlyhanie." -#: 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/deb/dpkgpm.cc:1638 +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ý" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Chyba zápisu do tohto súboru" +#: apt-pkg/deb/dpkgpm.cc:1645 +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" -#: 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/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +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ý" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Chyba pri čítaní zo servera" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Chyba zápisu do súboru" +#: 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?" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Výber zlyhal" +#: apt-pkg/deb/debsystem.cc:94 +#, 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?" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Uplynul čas spojenia" +#. 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 bol prerušený, musíte ručne opraviť problém spustením „%s“. " -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Chyba zápisu do výstupného súboru" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Nie je zamknuté" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čaká sa na hlavičky" +#. 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" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Chybná hlavička" +#. 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" -#: 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" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li min %li s" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP server poslal neplatnú hlavičku Content-Length" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li 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/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Voľba %s nenájdená" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Tento HTTP server má poškodenú podporu rozsahov" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Neznámy formát dátumu" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Súbor zámku %s sa nedá otvoriť" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Zlé dátové záhlavie" +#: apt-pkg/contrib/fileutl.cc:219 +#, 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" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Spojenie zlyhalo" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Zámok %s sa nedá získať" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Vnútorná chyba" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Prepočítava sa aktualizácia... " +#: apt-pkg/contrib/fileutl.cc:395 +#, 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-upgrade.cc:28 -msgid "Done" -msgstr "Hotovo" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"Ignoruje sa „%s“ v adresári „%s“, pretože má neplatnú príponu názvu súboru" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:843 #, 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 signal %u." +msgstr "Podproces %s dostal signál %u." -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Opravujú sa závislosti..." +#: apt-pkg/contrib/fileutl.cc:847 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-cachefile.cc:96 -msgid " failed." -msgstr " zlyhalo." +#: apt-pkg/contrib/fileutl.cc:849 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Závislosti sa nedajú opraviť" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Chyba pri zápise" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Sada na aktualizáciu sa nedá minimalizovať" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problém pri zatváraní gzip súboru %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Hotovo" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Nedá sa otvoriť súbor %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/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Nedá sa otvoriť popisovač súboru %d" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nesplnené závislosti. Skúste použiť -f." +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Nedá sa vytvoriť podproces IPC" -#: 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:1411 +msgid "Failed to exec compressor " +msgstr "Nepodarilo sa spustiť kompresor " -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nainštalovaný]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Chyba pri čítaní" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nainštalovaný]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nainštalovaný]" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problém pri zatváraní súboru %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Nainštalovaný]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problém pri synchronizovaní súboru %s na %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem unlinking the file %s" +msgstr "Problém pri odstraňovaní súboru %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problém pri synchronizovaní súboru" -#: apt-private/private-output.cc:434 -#, c-format -msgid "but %s is installed" -msgstr "ale nainštalovaný je %s" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Nedá sa vyhodnotiť %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is to be installed" -msgstr "ale inštalovať sa bude %s" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ale sa nedá nainštalovať" +msgid "%c%s... Error!" +msgstr "%c%s... Chyba!" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ale je to virtuálny balík" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Hotovo" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ale nie je nainštalovaný" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ale sa nebude inštalovať" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hotovo" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " alebo" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Nedá sa vykonať mmap prázdneho súboru" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Nasledovné balíky majú nesplnené závislosti:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Nedá sa duplikovať popisovač súboru %i" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Nainštalujú sa nasledovné NOVÉ balíky:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "Nedá sa urobiť mmap %llu bajtov" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Nasledovné balíky sa ODSTRÁNIA:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Nedá sa zatvoriť mmap" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:" +#: 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-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Nasledovné balíky sa aktualizujú:" +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Nedá sa urobiť mmap %lu bajtov" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Nasledovné balíky sa DEGRADUJÚ:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Nepodarilo sa skrátiť súbor" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Nasledovné pridržané balíky sa zmenia:" +#: 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 "" +"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-output.cc:667 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (kvôli %s) " +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ý." -#: apt-private/private-output.cc:675 +#: 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 "" -"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n" -"Ak presne neviete, čo robíte, tak to NEROBTE!" +"Napodarilo sa zväčšiť veľkosť MMap, pretože automatické zväčovanie vypol " +"používateľ." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu aktualizovaných, %lu nových nainštalovaných, " +msgid "Unable to stat the mount point %s" +msgstr "Prípojný bod %s sa nedá vyhodnotiť" -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu reinštalovaných, " +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Nedá sa vykonať stat() CD-ROM" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu downgraded, " -msgstr "%lu degradovaných, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Nerozpoznaná skratka typu: „%c“" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" +msgid "Opening configuration file %s" +msgstr "Otvára sa konfiguračný súbor %s" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu iba čiastočne nainštalovaných alebo odstránených.\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:740 -msgid "[Y/n]" -msgstr "" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." -#. 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:746 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaktická chyba %s:%u: Skomolená značka" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Chyba pri preklade regulárneho výrazu - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Príkaz update neprijíma žiadne argumenty" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 #, 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] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:899 #, 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 "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/configuration.cc:902 +#, 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" -#: 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/contrib/configuration.cc:952 +#, 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:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá." +#. 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:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Vnútorná chyba, Triedenie sa neukončilo" +#: 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: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/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" -#. 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 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n" +msgid "Command line option %s is not boolean" +msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Je potrebné stiahnuť %sB archívov.\n" +msgid "Option %s requires an argument." +msgstr "Voľba %s vyžaduje argument." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, 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 "Option %s: Configuration item specification must have an =." +msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, 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 "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:200 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Na %s nemáte dostatok voľného miesta." - -#: 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" +msgid "Option '%s' is too long" +msgstr "Voľba „%s“ je príliš dlhá" -#: 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/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. " -#. 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/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Neplatná operácia %s" -#: apt-private/private-install.cc:222 +#: 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 "" -"Možno sa chystáte vykonať niečo škodlivé.\n" -"Ak chcete pokračovať, opíšte frázu „%s“\n" -" ?]" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Balík %s verzie %s má nesplnené závislosti:\n" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Prerušené." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Celkom názvov balíkov: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Chcete pokračovať?" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Celkom štruktúr balíkov: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Niektoré súbory sa nedajú stiahnuť" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normálnych balíkov: " -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" -"fix-missing" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Čisto virtuálnych balíkov: " -#: 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é" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Jednoduchých virtuálnych balíkov: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Chýbajúce balíky sa nedajú opraviť." +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Zmiešaných virtuálnych balíkov: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Inštalácia sa prerušuje." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Chýbajúcich: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Celkom rôznych verzií: " -#: 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." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Celkom rôznych popisov: " -#: 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" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Celkom závislostí: " -#: 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 "" -"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." +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Celkom vzťahov ver/súbor: " -#. -#. 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:" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Celkom vzťahov popis/súbor: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Vnútorná chyba, AutoRemover niečo pokazil" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Celkom poskytnutých mapovaní: " -#: 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] "" -"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é:" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Celkom globovaných reťazcov: " + +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Celkom miesta závislých verzií: " + +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Celkom jalového miesta: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Celkom priradeného miesta: " + +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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 "Package file %s is out of sync." +msgstr "Súbor balíkov %s je neaktuálny." -#: 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“." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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/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“:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Musíte zadať aspoň jeden vyhľadávací vzor" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " -"navrhnite riešenie)." +"Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark " +"showauto“." -#: 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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Súbory balíka:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Poškodené balíky" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Nainštalujú sa nasledovné extra balíky:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pripevnené balíky:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Navrhované balíky:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(nenájdené)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Odporúčané balíky:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Nainštalovaná verzia: " -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidát: " -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(žiadna)" -#: apt-private/private-install.cc:841 -#, 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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Pripevnený balík:" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s je už najnovšej verzie.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Tabuľka verzií:" -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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 "Vybraná verzia „%s“ (%s) pre „%s“\n" - -#: apt-private/private-install.cc:899 -#, 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 "%s %s for %s compiled on %s %s\n" +msgstr "%s %s pre %s skompilovaný %s %s\n" -#. 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" +#: cmdline/apt-cache.cc:1801 +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 "" -"Balík „%s“ nie je nainštalovaný, nedá sa teda odstrániť. Mali ste na mysli " -"„%s“?\n" +"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" + +#: 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“" + +#: 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-private/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, 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" +msgid "Failed to mount '%s' to '%s'" +msgstr "Pripojenie „%s“ na „%s“ zlyhalo" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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-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-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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Upozornenie o vierohodnosti bolo potlačené.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenty nie sú vo dvojiciach" -#: 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-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ž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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Nainštalovať tieto nekontrolované balíky?" +#: 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“" + +#: 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“" + +#: 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-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:367 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Zlyhalo stiahnutie %s %s\n" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" -#: apt-private/private-sources.cc:58 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Premenovanie %s na %s zlyhalo" +msgid "Can not find version '%s' of package '%s'" +msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "Couldn't find package %s" +msgstr "Balík %s sa nedá nájsť" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s je označený ako manuálne nainštalovaný.\n" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Už existuje " +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s je označený ako automaticky nainštalovaný.\n" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Získava sa:" +#: 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-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: 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-private/acqprogress.cc:125 -msgid "Err " -msgstr "Chyba " +#: 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úť" + +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%sB sa stiahlo za %s (%sB/s)\n" +msgid "Unable to find a source package for %s" +msgstr "Nedá sa nájsť zdrojový balík pre %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:786 #, c-format -msgid " [Working]" -msgstr " [Prebieha spracovanie]" +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-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:791 #, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Výmena nosiča: Vložte disk s názvom\n" -" „%s“\n" -"do mechaniky „%s“ a stlačte Enter\n" +"Prosím, použite:\n" +"bzr branch %s\n" +"ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " +"balíka.\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:839 #, c-format -msgid "Unable to read %s" -msgstr "Nedá sa načítať %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Preskakuje sa už stiahnutý súbor „%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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to change to %s" -msgstr "Nedá sa prejsť do %s" +msgid "Couldn't determine free space in %s" +msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" -#. 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:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Na zrkadle nebol nájdený súbor „%s“" +msgid "You don't have enough free space in %s" +msgstr "Na %s nemáte dostatok voľného miesta" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:287 +#. 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:893 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" - -#: 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" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" -#: methods/mirror.cc:445 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "[Mirror: %s]" -msgstr "[Zrkadlo: %s]" - -#: 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" - -#: 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ť" - -#: 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" - -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Hašovací prvok sa nedá nájsť!" - -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Nedá sa alokovať diverzia" - -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Vnútorná chyba pri AddDiversion" +msgid "Need to get %sB of source archives.\n" +msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:904 #, 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 "Fetch source %s\n" +msgstr "Stiahnuť zdroj %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:922 +msgid "Failed to fetch some archives." +msgstr "Zlyhalo stiahnutie niektorých archívov." -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicitný konfiguračný súbor %s/%s" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" -msgstr "Cesta %s je príliš dlhá" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s sa rozbaľuje viackrát" +msgid "Unpack command '%s' failed.\n" +msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" -msgstr "Adresár %s je divertovaný" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, 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" +msgid "Build command '%s' failed.\n" +msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" -#: 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:1012 +msgid "Child process failed" +msgstr "Proces potomka zlyhal" -#: 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:1031 +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/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Premenovanie %s na %s zlyhalo" +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/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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 "Unable to get build-dependency information for %s" +msgstr "Nedajú sa získať závislosti na zostavenie %s" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" +msgid "%s has no build depends.\n" +msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1296 #, 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 "" +"%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-inst/extract.cc:498 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Unable to stat %s" -msgstr "Nedá sa vyhodnotiť %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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Failed to write file %s" -msgstr "Zápis súboru %s zlyhal" +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-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Failed to close file %s" -msgstr "Zatvorenie súboru %s zlyhalo" +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-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1382 #, 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 "" +"%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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Vnútorná chyba, nedá sa nájsť časť %s" - -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nespracovateľný riadiaci súbor" - -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Neplatný podpis archívu" - -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Chyba pri čítaní záhlavia prvku archívu" +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatná hlavička prvku archívu %s" - -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Neplatné záhlavie prvku archívu" - -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Archív je príliš krátky" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Závislosti na zostavenie %s nemožno splniť." -#: 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:1425 +msgid "Failed to process build dependencies" +msgstr "Spracovanie závislostí na zostavenie zlyhalo" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Vytvorenie rúry zlyhalo" +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "Záznam zmien %s (%s)" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Spustenie gzip zlyhalo " +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Podporované moduly:" -#: 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 "Unknown TAR header type %u, member %s" -msgstr "Neznáma TAR hlavička typu %u, člen %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Nie je možné vykonať stat %s." - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Spúšťa sa dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Systém balíkov „%s“ nie je podporovaný" - -#: 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-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" -#: 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-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 "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\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 +#: 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" +msgid "Unable to read the cdrom database %s" +msgstr "Nedá sa čítať databáza na CD-ROM %s" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Odporúča" +#: 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:322 -msgid "Conflicts" -msgstr "Koliduje s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Chybné CD" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Nahrádza" +#: 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:323 -msgid "Obsoletes" -msgstr "Zneplatňuje" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk sa nenašiel." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Kazí" +#: 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:323 -msgid "Enhances" -msgstr "Rozširuje" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "dôležitý" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "požadovaný" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Neplatné URI, lokálne URI nesmie začínať s //" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "štandardný" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prihlasovanie" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "voliteľný" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Nedá sa zistiť názov druhej strany" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Nedá sa zistiť lokálny názov" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexový súbor typu „%s“ nie je podporovaný" - -#: 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í" +msgid "The server refused the connection and said: %s" +msgstr "Server zamietol naše spojenie s chybou: %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 "Vyskytla sa chyba pri spracovávaní %s (%s%d)" - -#: 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ť." - -#: 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ť." +msgid "USER failed, server said: %s" +msgstr "Zlyhalo zadanie používateľa, server odpovedal: %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ť." +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "Zlyhalo zadanie hesla, server odpovedal: %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 "" -"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:52 apt-pkg/edsp.cc:78 -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:241 -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:320 -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:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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“" + +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Dotaz" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Nedá sa vyvolať " -#: 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 "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“" +msgid "Connecting to %s (%s)" +msgstr "Pripája sa k %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 "Indexové súbory balíka sú narušené. Chýba pole Filename: pre balík %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 "Blok výrobcu %s neobsahuje otlačok (fingerprint)" +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:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:100 #, c-format -msgid "List directory %spartial is missing." -msgstr "Adresár zoznamov %spartial chýba." +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)." -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:108 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Archívny adresár %spartial chýba." +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:99 +#: methods/connect.cc:126 #, c-format -msgid "Unable to lock directory %s" -msgstr "Adresár %s sa nedá zamknúť" +msgid "Could not connect to %s:%s (%s)." +msgstr "Nedá sa pripojiť k %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 "Sťahuje sa %li. súbor z %li (zostáva %s)" +msgid "Connecting to %s" +msgstr "Pripája sa k %s" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Sťahuje sa %li. súbor z %li" +msgid "Could not resolve '%s'" +msgstr "Nie je možné preložiť „%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 "" -"Niektoré indexové súbory sa nepodarilo stiahnuť. Boli ignorované alebo sa " -"použili staršie verzie." +#: methods/connect.cc:205 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "Dočasné zlyhanie pri preklade „%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" +#: 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: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 "" -"„%s“ nie je platná hodnota pre APT::Default-Release, pretože také vydanie " -"nie je dostupné v zdrojoch" +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/policy.cc:422 +#: methods/connect.cc:258 #, 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 "Unable to connect to %s:%s:" +msgstr "Nedá sa pripojiť k %s:%s:" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Nezrozumiteľné pridržanie typu %s" +#: 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/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Bola zistená aspoň jedna nesprávna signatúra." + +#: 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/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 "" -"Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v " -"man 5 apt.conf pod APT::Immediate-Configure (%d)" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Nedá sa nakonfigurovať „%s“." +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznáma chyba pri spustení gpgv" -#: apt-pkg/packagemanager.cc:583 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Nasledovné signatúry sú neplatné:\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 "" -"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." +"Nasledovné signatúry sa nedajú overiť, pretože nie je dostupný verejný " +"kľúč:\n" -#: 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/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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM sa odpája...\n" +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Chyba zápisu do tohto súboru" -#: 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/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:599 -msgid "Waiting for disc...\n" -msgstr "Čaká sa na disk...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Chyba pri čítaní zo servera" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Pripája sa CD-ROM...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Chyba zápisu do súboru" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifikuje sa..." +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Výber zlyhal" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Uložená menovka: %s \n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Uplynul čas spojenia" -#: 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:649 +msgid "Error writing to output file" +msgstr "Chyba zápisu do výstupného 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/server.cc:51 +msgid "Waiting for headers" +msgstr "Čaká sa na hlavičky" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Chybná hlavička" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Nájdená menovka: „%s“\n" +#: 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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Neplatný názov, skúste znova.\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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Názov tohto disku je: \n" -"„%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/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopírujú sa zoznamy balíkov..." +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Tento HTTP server má poškodenú podporu rozsahov" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Zapisuje sa nový zoznam zdrojov\n" +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznámy formát dátumu" -#: 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:496 +msgid "Bad header data" +msgstr "Zlé dátové záhlavie" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Spojenie zlyhalo" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " -"pridržanými balíkmi." -#: 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:692 +msgid "Internal error" +msgstr "Vnútorná chyba" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Vytvára sa strom závislostí" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Prepočítava sa aktualizácia... " -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Kandidátske verzie" +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Hotovo" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Generovanie závislostí" +#: 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 "Načítavajú sa stavové informácie" +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Nie je možné otvoriť 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 "Nie je možné zapísať dočasný StateFile %s" +#: 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-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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nainštalovaný]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Nainštalovaný]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +msgid "but it is not going to be installed" +msgstr "ale sa nebude inštalovať" -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:453 +msgid " or" +msgstr " alebo" + +#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Nasledovné balíky majú nesplnené závislosti:" + +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Nainštalujú sa nasledovné NOVÉ balíky:" + +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Nasledovné balíky sa ODSTRÁNIA:" + +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Nasledovné balíky sa ponechajú v súčasnej verzii:" + +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Nasledovné balíky sa aktualizujú:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Nasledovné balíky sa DEGRADUJÚ:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Nasledovné pridržané balíky sa zmenia:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgid "%s (due to %s) " +msgstr "%s (kvôli %s) " + +#: apt-private/private-output.cc:675 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" msgstr "" -"Skomolený riadok %lu v zozname zdrojov %s (nie je možné spracovať [option])" +"UPOZORNENIE: Nasledovné dôležité balíky sa odstránia.\n" +"Ak presne neviete, čo robíte, tak to NEROBTE!" -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:706 #, 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)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu aktualizovaných, %lu nových nainštalovaných, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:710 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu reinštalovaných, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:712 #, 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ľúč)" +msgid "%lu downgraded, " +msgstr "%lu degradovaných, " -#: apt-pkg/sourcelist.cc:193 +#: apt-private/private-output.cc:714 #, 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)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (URI)" +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:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Skomolený riadok %lu v zozname zdrojov %s (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:740 +msgid "[Y/n]" +msgstr "" -#: 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)" +#. 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:746 +msgid "[y/N]" +msgstr "" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "" + +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Príkaz update neprijíma žiadne argumenty" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "Otvára sa %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 "Skomolený riadok %u v zozname zdrojov %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“ je neznámy na riadku %u v zozname zdrojov %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/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" +#: 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 "Inštaluje sa %s" +#: apt-private/private-install.cc:84 +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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Nastavuje sa %s" +#: apt-private/private-install.cc:93 +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:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "Odstraňuje sa %s" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Vnútorná chyba, Triedenie sa neukončilo" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Úplne sa odstraňuje %s" +#: apt-private/private-install.cc:150 +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: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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "Zaznamenali sme zmiznutie %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Je potrebné stiahnuť %sB/%sB archívov.\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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Vykonáva sa spúšťač post-installation %s" +msgid "Need to get %sB of archives.\n" +msgstr "Je potrebné stiahnuť %sB archívov.\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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "Adresár „%s“ chýba" +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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "Nedá sa otvoriť súbor „%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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "Pripravuje sa %s" +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:990 -#, c-format -msgid "Unpacking %s" -msgstr "Rozbaľuje sa %s" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Pripravuje sa nastavenie %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "Nainštalovaný balík %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:222 +msgid "Yes, do as I say!" +msgstr "Áno, urob to, čo vravím!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "Pripravuje sa odstránenie %s" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "Odstránený balík %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Prerušené." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Pripravuje sa úplné odstránenie %s" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Chcete pokračovať?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Balík „%s“ je úplne odstránený" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Niektoré súbory sa nedajú stiahnuť" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" +"fix-missing" -#: 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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Chýbajúce balíky sa nedajú opraviť." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Inštalácia sa prerušuje." -#: 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:368 +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/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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Pozn.: Toto robí dpkg automaticky a zámerne." -#. 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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je to chyba v " -"nadväznosti na predošlé zlyhanie." +"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." + +#. +#. 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Vnútorná chyba, AutoRemover niečo pokazil" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:515 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ý" +"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-private/private-install.cc:519 +#, 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" + +#: apt-private/private-install.cc:521 +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/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:614 +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:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:616 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 "" -"Nezapíše sa správa apport, pretože chybová správa indikuje, že je disk " -"zaplnený" +"Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " +"navrhnite riešenie)." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:640 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 "" -"Nezapíše sa správa apport, pretože chybová správa indikuje V/V chybu dpkg" - -#: 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-pkg/deb/debsystem.cc:94 -#, 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?" - -#. 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 bol prerušený, musíte ručne opraviť problém spustením „%s“. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Nie je zamknuté" +"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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Odporúčané balíky:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +msgid "Get:" +msgstr "Získava sa:" -#: apt-pkg/contrib/fileutl.cc:1514 -#, 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" +#: apt-private/acqprogress.cc:119 +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 "zápis, treba zapísať ešte %llu, no nedá sa to" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Chyba " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem closing the file %s" -msgstr "Problém pri zatváraní súboru %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%sB sa stiahlo za %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1927 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problém pri synchronizovaní súboru %s na %s" +msgid " [Working]" +msgstr " [Prebieha spracovanie]" -#: apt-pkg/contrib/fileutl.cc:1938 +#: apt-private/acqprogress.cc:298 #, c-format -msgid "Problem unlinking the file %s" -msgstr "Problém pri odstraňovaní súboru %s" - -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problém pri synchronizovaní súboru" +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/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... Chyba!" +msgid "No mirror file '%s' found " +msgstr "Na zrkadle nebol nájdený súbor „%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... Hotovo" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +msgid "Can not read mirror file '%s'" +msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: methods/mirror.cc:315 #, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Hotovo" +msgid "No entry found in mirror file '%s'" +msgstr "Nepodarilo sa prečítať súbor „%s“ na zrkadle" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Nedá sa vykonať mmap prázdneho súboru" +#: methods/mirror.cc:445 +#, c-format +msgid "[Mirror: %s]" +msgstr "[Zrkadlo: %s]" + +#: 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é" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Nedá sa duplikovať popisovač súboru %i" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Chybné predvolené nastavenie!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Nedá sa urobiť mmap %llu 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 "Stlačte Enter, ak chcete pokračovať." -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Nedá sa zatvoriť mmap" +#: 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?" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Nedá sa synchronizovať mmap" +#: 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é" -#: apt-pkg/contrib/mmap.cc:290 -#, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Nedá sa urobiť mmap %lu bajtov" +#: 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" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Nepodarilo sa skrátiť súbor" +#: 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/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 "" -"Nedostatok miesta pre dynamický MMap. Prosím, zväčšite veľkosť APT::Cache-" -"Start. Aktuálna hodnota: %lu. (man 5 apt.conf)" +"chyby nad touto správou. Opravte ich a potom znovu spusťte [I]nštalovať" -#: 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 "" -"Napodarilo sa zväčšiť veľkosť MMap, pretože limit %lu už bol dosiahnutý." +#: dselect/update:30 +msgid "Merging available information" +msgstr "Zlučujú sa dostupné informácie" -#: 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/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/cdromutl.cc:65 -#, c-format -msgid "Unable to stat the mount point %s" -msgstr "Prípojný bod %s sa nedá vyhodnotiť" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Hašovací prvok sa nedá nájsť!" -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Nedá sa vykonať stat() CD-ROM" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Nedá sa alokovať diverzia" -#: apt-pkg/contrib/configuration.cc:519 -#, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Nerozpoznaná skratka typu: „%c“" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Vnútorná chyba pri AddDiversion" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Opening configuration file %s" -msgstr "Otvára sa konfiguračný súbor %s" +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/configuration.cc:801 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." +msgid "Double add of diversion %s -> %s" +msgstr "Dvojité pridanie diverzie %s -> %s" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaktická chyba %s:%u: Skomolená značka" +msgid "Duplicate conf file %s/%s" +msgstr "Duplicitný konfiguračný súbor %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 "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" +msgid "The path %s is too long" +msgstr "Cesta %s je príliš dlhá" -#: 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 "" -"Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni" +msgid "Unpacking %s more than once" +msgstr "%s sa rozbaľuje viackrát" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" +msgid "The directory %s is diverted" +msgstr "Adresár %s je divertovaný" -#: 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 "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" +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/configuration.cc:897 -#, c-format -msgid "Syntax error %s:%u: Unsupported directive '%s'" -msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" +#: 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:900 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 stat %s" +msgstr "%s sa nedá vyhodnotiť" -#: 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 "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" +msgid "Failed to rename %s to %s" +msgstr "Premenovanie %s na %s zlyhalo" -#. 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 nie je nainštalovaný žiaden zväzok kľúčov." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Adresár %s sa nahradí neadresárom" -#: apt-pkg/contrib/cmndline.cc:121 +#: 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á" + +#: apt-inst/extract.cc:421 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Parameter príkazového riadka „%c“ [z %s] je neznámy" +msgid "Overwrite package match with no version for %s" +msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %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 "Nezrozumiteľný parameter %s na príkazovom riadku" +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/cmndline.cc:168 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Parameter príkazového riadku %s nie je pravdivostná hodnota" +msgid "Unable to stat %s" +msgstr "Nedá sa vyhodnotiť %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 "Voľba %s vyžaduje argument." +msgid "Failed to write file %s" +msgstr "Zápis súboru %s zlyhal" -#: 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 =." -msgstr "Parameter %s: Zadanie konfiguračnej položky musí obsahovať =." +msgid "Failed to close file %s" +msgstr "Zatvorenie súboru %s zlyhalo" -#: 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 "Voľba %s vyžaduje ako argument celé číslo (integer), nie „%s“" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Toto nie je platný DEB archív, chýba časť „%s“" -#: apt-pkg/contrib/cmndline.cc:309 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option '%s' is too long" -msgstr "Voľba „%s“ je príliš dlhá" +msgid "Internal error, could not locate member %s" +msgstr "Vnútorná chyba, nedá sa nájsť časť %s" -#: apt-pkg/contrib/cmndline.cc:341 +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nespracovateľný riadiaci súbor" + +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neplatný podpis archívu" + +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Chyba pri čítaní záhlavia prvku archívu" + +#: apt-inst/contrib/arfile.cc:96 #, c-format -msgid "Sense %s is not understood, try true or false." -msgstr "Nezrozumiteľný význam %s, skúste true alebo false. " +msgid "Invalid archive member header %s" +msgstr "Neplatná hlavička prvku archívu %s" -#: apt-pkg/contrib/cmndline.cc:391 +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neplatné záhlavie prvku archívu" + +#: apt-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Archív je príliš krátky" + +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Chyba pri čítaní hlavičiek archívu" + +#: apt-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Vytvorenie rúry zlyhalo" + +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3254,12 +3267,7 @@ msgstr "" " -c=? Načíta tento konfiguračný súbor\n" " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Nedá sa vyhodnotiť %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nedá sa určiť verzia programu debconf. Je debconf nainštalovaný?" @@ -3376,17 +3384,17 @@ msgstr "Nevyhovel žiaden výber" msgid "Some files are missing in the package file group `%s'" msgstr "V súbore balíka skupiny „%s“ chýbajú niektoré súbory" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB je narušená, súbor je premenovaný na %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB je neaktuálna, prebieha pokus o aktualizáciu %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3394,105 +3402,105 @@ msgstr "" "Formát DB je neplatný. Ak ste aktualizovali staršiu verziu apt, musíte " "odstrániť a znovu vytvoriť databázu." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Nedá sa otvoriť DB súbor %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Nie je možné vykonať readlink %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Archív nemá riadiaci záznam" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Nedá sa získať kurzor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Adresár %s sa nedá čítať\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s sa nedá vyhodnotiť\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Chyby sa týkajú súboru " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Chyba pri preklade %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Prechod stromom zlyhal" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s sa nedá otvoriť" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Odlinkovanie %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Nie je možné vykonať readlink %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Nie je možné vykonať unlink %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Nepodarilo sa zlinkovať %s s %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Bol dosiahnutý odlinkovací limit %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Archív neobsahuje pole „package“" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žiadnu položku override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správcom %s je %s, nie %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žiadnu položku „source override“\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá žiadnu položku „binary override“\n" diff --git a/po/sl.po b/po/sl.po index 16b5499fc..c75dbfcc4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic \n" "Language-Team: Slovenian \n" @@ -20,3224 +20,3237 @@ msgstr "" "X-Poedit-Language: Slovenian\n" "X-Poedit-SourceCharset: utf-8\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Prazen predpomnilnik paketov" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Datoteka s predpomnilnikom paketov je pokvarjena" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Različica datoteke s predpomnilnikom paketov ni združljiva" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Datoteka paketa %s ni usklajena." +msgid "This APT does not support the versioning system '%s'" +msgstr "Ta APT ne podpira sistema različic '%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 "Noben paket ni bil najden" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo" -#: 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:324 +msgid "Depends" +msgstr "Odvisen od" -#: 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:324 +msgid "PreDepends" +msgstr "Predodvisen od" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Priporoča" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Priporoča" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "V sporu z" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Zamenja" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Zastara" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Pokvari" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Izboljša" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "pomembno" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "obvezno" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "običajni" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "izbirno" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "dodatno" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Ni mogoče najti paketa %s" +msgid "Index file type '%s' is not supported" +msgstr "Vrsta datoteke s kazalom '%s' ni podprta" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Datoteke paketa:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Napaka med prevajanjem logičnega izraza - %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-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Predpomnilnik ima neustrezen sistem različic" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Pripeti paketi:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Med obdelovanjem %s je prišlo do napake (%s%d)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ni najdeno)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Nameščen: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(brez)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Bucika paketa: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Preglednica različic:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Ni mogoče določiti seznama izvornih paketov %s" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Branje seznama paketov" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Zbiranje dobaviteljev datotek" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s za %s kodno preveden na %s %s\n" +msgid "Unable to write to %s" +msgstr "Ni mogoče pisati na %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 "" -"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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Napaka VI med shranjevanjem predpomnilnika virov" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Pošlji scenarij reševalniku" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "Pošlji zahtevo reševalniku" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Priklapljanje '%s' na '%s' je spodletelo" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Priprava za rešitev prejemanja" -#: 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/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-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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "Izvedi zunanji reševalnik" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenti niso v parih" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "preimenovanje je spodletelo, %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 "" -"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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Neujemanje vsote razpršil" -#: 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-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Neujemanje velikosti" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Neveljavno opravilo %s" -#: 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/acquire-item.cc:1679 +#, 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)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Izbiranje '%s' kot vir paketa namesto '%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:423 -#, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "Prezri nerazpoložljivo različico '%s' paketa '%s'" +#: apt-pkg/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "Ni mogoče najti paketa %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:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s je bil nastavljen na ročno nameščen.\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s je nastavljen na samodejno nameščen.\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." +"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 "" -"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " -"manual'." - -#: 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" +"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " +"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Ni mogoče zakleniti mape prejemov" +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" +msgstr "Napaka GPG: %s: %s" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1972 +#, 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 "" -"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" +"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:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Izvornega paketa za %s ni mogoče najti" +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:786 +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\n" -"%s\n" +"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " +"%s." -#: cmdline/apt-get.cc:791 +#: apt-pkg/vendorlist.cc:85 #, c-format -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" +msgid "Vendor block %s contains no fingerprint" +msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Preskok že prejete datoteke '%s'\n" +msgid "List directory %spartial is missing." +msgstr "Mapa seznama %spartial manjka." -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Ni mogoče določiti prostega prostora v %s" +msgid "Archives directory %spartial is missing." +msgstr "Mapa arhivov %spartial manjka." -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:100 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Nimate dovolj prostora na %s" +msgid "Unable to lock directory %s" +msgstr "Mape %s ni mogoče zakleniti" -#. 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 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" -#. TRANSLATOR: The required 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.cc:927 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" +msgid "Retrieving file %li of %li" +msgstr "Pridobivanje datoteke %li od %li" -#: cmdline/apt-get.cc:902 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Fetch source %s\n" -msgstr "Dobi vir %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Nekaterih arhivov ni mogoče pridobiti." +msgid "Failed to fetch %s %s\n" +msgstr "Ni mogoče dobiti %s %s\n" -#: 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-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." -#: cmdline/apt-get.cc:950 -#, 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" +#: 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:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Ukaz odpakiranja '%s' ni uspel.\n" +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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" +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:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Ukaz gradnje '%s' ni uspel.\n" +msgid "Did not understand pin type %s" +msgstr "Ni mogoče razumeti vrste bucike %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Podrejeno opravilo ni uspelo" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Prednost bucike ni navedena ali pa je nič." -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite preveriti odvisnosti " -"za gradnjo" +"Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " +"APT::Immediate-Configure za podrobnosti. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Ni mogoče nastaviti '%s' " -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 "" -"Za %s ni bilo mogoče najti podatkov o arhitekturi. Za nastavitev si oglejte " -"apt.conf(5) APT::Architectures" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" +msgid "Line %u too long in source list %s." +msgstr "Vrstica %u v seznamu virov %s je predolga." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Odklapljanje CD-ROM-a ...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s nima odvisnosti za gradnjo.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Uporabljanje CD-ROM-ove priklopne točke %s\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Čakanje na disk ...\n" + +#: 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 "Stored label: %s\n" +msgstr "Shranjena oznaka: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Preiskovanje diska za datoteke kazala ...\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker %s ni dovoljen na paketih '%s'" +"Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " +"%zu podpisov\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 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" +"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?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, 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 "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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " -"%s ne more zadostiti zahtev različice" +"Ta disk se imenuje: \n" +"'%s'\n" -#: cmdline/apt-get.cc:1357 +#: 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 "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"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 "" -"odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " -"%s nima različice kandidata" +"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " +"povzročili zadržani paketi." + +#: 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" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Odpiranje DatotekeStanja %s je spodletelo" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." +msgid "Failed to write temporary StateFile %s" +msgstr "Pisanje začasne DatotekeStanja %s je spodletelo" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Obdelava odvisnosti za gradnjo je spodletela" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Ni mogoče razčleniti datoteke paketa %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Dnevnik sprememb za %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Ni mogoče razčleniti datoteke paketa %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Podprti moduli:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Izdaje '%s' za '%s' ni mogoče najti" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Različice '%s' za '%s' ni mogoče najti" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Ni mogoče najti paketa %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Ni mogoče najti naloge '%s'" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" + +#: apt-pkg/cacheset.cc:616 +#, 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:627 +#, 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" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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 "" -"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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" -"Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" +"Ni mogoče izbrati nameščene različice ali različice kandidata iz paketa " +"'%s', saj nima nobenega od njiju" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:648 +#, 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" -#: 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/cacheset.cc:656 +#, 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" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cacheset.cc:664 #, 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 "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" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:83 #, 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 "Unable to parse Release file %s" +msgstr "Ni mogoče razčleniti Release datoteke %s" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "paket %s je bil že nastavljen kot samodejno nameščen.\n" +msgid "No sections in Release file %s" +msgstr "Ni izbir v Release datoteki %s" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:136 #, c-format -msgid "%s was already set on hold.\n" -msgstr "paket %s je bil že nastavljen kot na čakanju.\n" +msgid "No Hash entry in Release file %s" +msgstr "Ni vnosa razpršila v Release datoteki %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s was already not hold.\n" -msgstr "paket %s je bil že nastavljen kot ne na čakanju.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Neveljaven vnos 'Veljavno-do' v Release datoteki %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/indexrecords.cc:168 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Program je čakal na %s a ga ni bilo tam" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: 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-pkg/sourcelist.cc:170 #, c-format -msgid "%s set on hold.\n" -msgstr "paket %s je nastavljen kot na čakanju.\n" +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)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "Čakanje za %s je bilo preklicano.\n" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Slabo oblikovana vrstica %lu na seznamu virov %s ([možnost] prekratka)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" +#: 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)" -#: 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/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)" -#: 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/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)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:206 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-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 "" -"Uporabite apt-cdrom, če želite, da APT prepozna CD. apt-get update ne more " -"sam dodati novih CD-ROM-ov" +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (URI)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Napačen CD-ROM" +#: 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)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:211 #, 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 "Malformed line %lu in source list %s (URI parse)" +msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Diska ni mogoče najti." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Datoteke ni mogoče najti" - -#: 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" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Nastavitev časa spremembe je spodletela" - -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "Neveljaven URI. Krajevni URI-ji se morajo začeti z //" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Prijavljanje" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Ni mogoče ugotoviti imena gostitelja" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Ni mogoče določiti krajevnega imena" - -#: 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" - -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:217 #, 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 (absolute dist)" +msgstr "" +"Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS je spodletel, strežnik je odgovoril: %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 (dist parse)" msgstr "" -"Naveden je bil posredniški strežnik, ne pa tudi prijavni skript. Acquire::" -"ftp::ProxyLogin je prazen." +"Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Ukaz prijavne skripte '%s' ni uspel, strežnik je odgovoril: %s" +msgid "Opening %s" +msgstr "Odpiranje %s" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE je spodletel, strežnik je odgovoril: %s" - -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "Povezava je zakasnela" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Strežnik je zaprl povezavo" - -#: 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" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Odgovor je prekoračil predpomnilnik." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Okvara protokola" - -#: 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" - -#: 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" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Ni mogoče povezati podatkovnega vtiča. Povezava je zakasnela." - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Spodletelo" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Ni mogoče povezat pasivnega vtiča." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ni mogel dobiti poslušajočega vtiča" - -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Ni mogoče povezati vtiča" - -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Ni mogoče poslušati na vtiču" +msgid "Malformed line %u in source list %s (type)" +msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Ni mogoče določiti imena vtiča" +#: 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:792 -msgid "Unable to send PORT command" -msgstr "Ni mogoče poslati ukaza PORT" +#: 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:802 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Neznan naslov družine %u (AF_*)" +msgid "Installing %s" +msgstr "Nameščanje %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 ni uspel, strežnik je odgovoril: %s" - -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Povezava podatkovne vtičnice je zakasnela" - -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Ni mogoče sprejeti povezave" - -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Težava med razprševanjem datoteke" +msgid "Configuring %s" +msgstr "Nastavljanje %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 "Ni mogoče pridobiti datoteke, strežnik je odgovoril '%s'" +msgid "Removing %s" +msgstr "Odstranjevanje %s" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Podatkovna vtič je potekel" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s je bil popolnoma odstranjen" -#: methods/ftp.cc:935 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" +msgid "Noting disappearance of %s" +msgstr "%s je izginil" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Poizvedba" +#: apt-pkg/deb/dpkgpm.cc:100 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Poganjanje sprožilca po namestitvi %s" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Ni mogoče klicati " +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 +#, c-format +msgid "Directory '%s' missing" +msgstr "Mapa '%s' manjka" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Povezovanje z %s (%s)" +msgid "Could not open file '%s'" +msgstr "Ni mogoče odpreti datoteke '%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 "Pripravljanje %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 "Ni mogoče ustvariti vtiča za %s (f=%u t=%u p=%u)" +msgid "Unpacking %s" +msgstr "Razširjanje %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:995 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Ni mogoče začeti povezave z %s:%s (%s)." +msgid "Preparing to configure %s" +msgstr "Pripravljanje na nastavljanje %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 "Ni se mogoče povezati z %s:%s (%s). Povezava je zakasnela." +msgid "Installed %s" +msgstr "%s je bil nameščen" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Ni se mogoče povezati z %s:%s (%s)." +msgid "Preparing for removal of %s" +msgstr "Pripravljanje na odstranitev %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 "Povezovanje z %s" +msgid "Removed %s" +msgstr "%s je bil odstranjen" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:1009 #, c-format -msgid "Could not resolve '%s'" -msgstr "Ni mogoče razrešiti '%s'" +msgid "Preparing to completely remove %s" +msgstr "Pripravljanje na popolno odstranitev %s" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Začasna napaka med razreševanjem '%s'" +msgid "Completely removed %s" +msgstr "%s je bil popolnoma odstranjen" -#: methods/connect.cc:209 +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" +msgid "Can not write log (%s)" +msgstr "Ni mogoče pisati na %s" -#: methods/connect.cc:211 -#, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Ni se mogoče povezati z %s:%s:" +msgid "Waited for %s but it wasn't there" +msgstr "Program je čakal na %s a ga ni bilo tam" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Opravilo je bilo prekinjeno preden se je lahko končalo" + +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" msgstr "" -"Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" +"Poročilo apport ni bilo napisano, ker je bilo število MaxReports že doseženo" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Najden je bil vsaj en neveljaven podpis." +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "težave odvisnosti - puščanje nenastavljenega" -#: 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/deb/dpkgpm.cc:1632 +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." -#. 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 a disk full " +"error" msgstr "" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"polnega diska" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Neznana napaka med izvajanjem gpgv" +#: apt-pkg/deb/dpkgpm.cc:1645 +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" -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Naslednji podpisi so bili neveljavni:\n" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +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" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1679 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 "" -"Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n" +"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " +"dpkg V/I" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Prazne datoteke ne morejo biti veljavni arhivi" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +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/http.cc:509 -msgid "Error writing to the file" -msgstr "Napaka med pisanjem v datoteko" +#: apt-pkg/deb/debsystem.cc:94 +#, 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?" -#: 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" +#. 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 je bil prekinjen. Za popravilo napake morate ročno pognati '%s'. " -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Napaka med branjem s strežnika" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Ni zaklenjeno" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Napaka med pisanjem v datoteko" +#. 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/http.cc:621 -msgid "Select failed" -msgstr "Izbira ni uspela" +#. 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:626 -msgid "Connection timed out" -msgstr "Povezava je zakasnela" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%limin %lis" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Napaka med pisanjem v izhodno datoteko" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%lis" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Čakanje na glave" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Izbire %s ni mogoče najti" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Neveljavna vrstica glave" +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" -#: 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:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Ni mogoče odprti zaklenjene datoteke %s" -#: 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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" -#: 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:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Ni mogoče zakleniti 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:361 apt-pkg/contrib/fileutl.cc:475 +#, 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/server.cc:220 -msgid "Unknown date format" -msgstr "Neznana oblika datuma" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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/server.cc:489 -msgid "Bad header data" -msgstr "Napačni podatki glave" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Povezava ni uspela" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"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/server.cc:654 -msgid "Internal error" -msgstr "Notranja napaka" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Pod-opravilo %s je prejelo segmentacijsko napako." -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Preračunavanje nadgradnje ... " +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Pod-opravilo %s je prejelo signal %u." -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Opravljeno" +#: apt-pkg/contrib/fileutl.cc:847 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-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:849 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-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Napaka pisanja" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:951 #, 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 "Problem closing the gzip file %s" +msgstr "Težava med zapiranjem gzip datoteke %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Popravljanje odvisnosti ..." +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Ni mogoče odpreti datoteke %s" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " spodletelo." +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Ni mogoče odpreti opisnika datotek %d" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Ni mogoče popraviti odvisnosti" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Ni mogoče ustvariti podopravila IPD" -#: 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/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Ni mogoče izvesti stiskanja " -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Opravljeno" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Napaka branja" -#: 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-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Nerešene odvisnosti. Poskusite uporabiti -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:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nameščeno]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nameščeno]" +#: apt-pkg/contrib/fileutl.cc:1552 +#, 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-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, 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-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nameščeno]" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Težava med zapiranjem datoteke %s" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Nameščeno]" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Težava med preimenovanje datoteke %s v %s" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Problem unlinking the file %s" +msgstr "Težava med razvezovanjem datoteke %s" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Težava med usklajevanjem datoteke" -#: apt-private/private-output.cc:434 -#, c-format -msgid "but %s is installed" -msgstr "vendar je paket %s nameščen" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Ni mogoče določiti %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "but %s is to be installed" -msgstr "vendar bo paket %s nameščen" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "vendar se ga ne da namestiti" +msgid "%c%s... Error!" +msgstr "%c%s ... Napaka!" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "vendar je navidezen paket" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s ... Narejeno" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "vendar ni nameščen" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "vendar ne bo nameščen" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Narejeno" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ali" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "mmap prazne datoteke ni mogoč" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Naslednji paketi imajo nerešene odvisnosti:" +#: 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-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Naslednji NOVI paketi bodo nameščeni:" +#: 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-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Naslednji novi paketi bodo ODSTRANJENI:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Ni mogoče zapreti mmap" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Naslednji paketi so bili zadržani:" +#: 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:571 -msgid "The following packages will be upgraded:" -msgstr "Naslednji paketi bodo nadgrajeni:" +#: 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:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Naslednji paketi bodo POSTARANI:" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Ni mogoče obrezati datoteke" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Naslednji zadržani paketi bodo spremenjeni:" +#: 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:667 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%s (due to %s) " -msgstr "%s (zaradi %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:675 +#: 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 "" -"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" -"Tega NE storite, razen če ne veste natanko kaj počenjate!" +"Ni mogoče povečati velikosti MMap, ker je samodejno povečevanje onemogočeno." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu nadgrajenih, %lu na novo nameščenih, " +msgid "Unable to stat the mount point %s" +msgstr "Ni mogoče določiti priklopne točke %s" -#: apt-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu posodobljenih, " +#: 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:712 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu downgraded, " -msgstr "%lu postaranih, " +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Neprepoznana vrsta okrajšave: '%c'" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" +msgid "Opening configuration file %s" +msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:803 #, 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:740 -msgid "[Y/n]" -msgstr "" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Skladenjska napaka %s:%u: Blok se začne brez imena." -#. 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:746 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Skladenjska napaka %s:%u: Dodatna krama za vrednostjo." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: apt-pkg/contrib/configuration.cc:879 +#, 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:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Regex compilation error - %s" -msgstr "Napaka med prevajanjem logičnega izraza - %s" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Ukaz update ne sprejema argumentov" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Skladenjska napaka %s:%u: Vključeno od tu" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:899 #, 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 "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." +#: apt-pkg/contrib/configuration.cc:902 +#, 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" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:952 #, 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 "Syntax error %s:%u: Extra junk at end of file" +msgstr "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" -#: 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 "V %s ni nameščenih zbirk ključev." -#: 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/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana." -#: 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/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 "Možnosti ukazne vrstice %s ni mogoče razumeti" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Notranja napaka, Urejanje se ni končalo" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Možnost ukazne vrstice %s ni boolova vrednost" -#: 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/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: 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 +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "Možnost %s: Določilo predmeta nastavitve zahtevajo =." -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Potrebno je dobiti %sB arhivov.\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Možnost %s zahteva celoštevilski argument, ne '%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 +#: apt-pkg/contrib/cmndline.cc:309 #, 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" +msgid "Option '%s' is too long" +msgstr "Možnost '%s' je predolga" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:341 #, 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" +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-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Na %s je premalo prostora." +msgid "Invalid operation %s" +msgstr "Neveljavno opravilo %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 "Prišlo je do težav in -y je bil uporabljen brez --force-yes" +#: cmdline/apt-cache.cc:149 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paket %s različica %s ima nerešene odvisnosti:\n" -#: 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." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Vseh imen paketov: " -#. 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!" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Skupno struktur paketov : " -#: 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" -" ?] " +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Običajni paketi: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Prekini." +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Čisti navidezni paketi: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Ali želite nadaljevati?" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Posamezni navidezni paketi: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Prejem nekaterih datotek ni uspel" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Mešani navidezni paketi: " -#: apt-private/private-install.cc:320 -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." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Manjka: " -#: 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" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Vseh različic: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Ni mogoče popraviti manjkajočih paketov." +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Skupno različnih opisov: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Prekinjanje namestitve." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Vseh odvisnosti: " -#: 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] "" -"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:" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Vseh povezav Raz/Dat: " -#: 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." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Skupno razmerij opisov/datotek: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Program ne bi smel brisati stvari, ni mogoče zagnati " -"SamodejnegaOdstranjevalnika" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Vseh dobljenih preslikav: " -#: 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 "" -"Videti je, da je SamodejniOdstranjevalnik nekaj uničil, kar se ne bi smelo " -"zgoditi\n" -"Pošljite poročilo o hrošču v apt." +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Vseh razširjenih nizov: " -#. -#. 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:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Celotna velikost z odvisnostmi različice: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Celotna ohlapna velikost: " -#: 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] "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:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Celotna velikost, izračunana za: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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" +msgid "Package file %s is out of sync." +msgstr "Datoteka paketa %s ni usklajena." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Podati morate vsaj en iskalni vzorec" -#: 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)." +#: cmdline/apt-cache.cc:1472 +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-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." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Datoteke paketa:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Pokvarjeni paketi" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Naslednji dodatni paketi bodo nameščeni:" - -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Predlagani paketi:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Pripeti paketi:" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Priporočeni paketi:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(ni najdeno)" -#: apt-private/private-install.cc:825 -#, 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" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Nameščen: " -#: apt-private/private-install.cc:829 -#, 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" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidat: " -#: apt-private/private-install.cc:841 -#, 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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(brez)" -#: apt-private/private-install.cc:846 -#, 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:1672 +msgid " Package pin: " +msgstr " Bucika paketa: " -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Izbrana različica '%s' (%s) za '%s'\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Preglednica različic:" -#: apt-private/private-install.cc:899 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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' because of '%s'\n" -msgstr "Izbrana različica '%s' (%s) za '%s' namesto '%s'\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s za %s kodno preveden na %s %s\n" -#. 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" +#: cmdline/apt-cache.cc:1801 +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 "" -"Paket '%s' ni nameščen, zato ni bil odstranjen. Ali ste mislili '%s'?\n" +"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" + +#: 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'" + +#: 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-private/private-install.cc:947 +#: cmdline/apt-cdrom.cc:139 #, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Paket '%s' ni nameščen, zato ni bil odstranjen\n" +msgid "Failed to mount '%s' to '%s'" +msgstr "Priklapljanje '%s' na '%s' je spodletelo" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 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!" +"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 "" -"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!" +#: 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-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Opozorilo overitve je bilo prepisano.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenti niso v parih" -#: 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-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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Ali želite te pakete namestiti brez preverjanja?" +#: 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-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-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-private/private-sources.cc:58 +#: cmdline/apt-get.cc:330 #, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Ni mogoče preimenovati %s v %s" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Z logičnim izrazom '%s' ni mogoče najti nobenega paketa" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:367 #, 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 " -msgstr "Zadetek " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Dobi:" - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Prezr " +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Nap " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Pridobljenih %sB v %s (%sB/s)\n" +msgid "Couldn't find package %s" +msgstr "Ni mogoče najti paketa %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format -msgid " [Working]" -msgstr " [Delo]" +msgid "%s set to manually installed.\n" +msgstr "%s je bil nastavljen na ročno nameščen.\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 je nastavljen na samodejno nameščen.\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 "" -"Sprememba medija: vstavite disk z oznako\n" -" '%s'\n" -"v enoto '%s' in pritisnite vnosno tipko\n" +"Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in '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 "Ni mogoče brati %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" -#: 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" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Ni mogoče zakleniti mape prejemov" -#. 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 " +#: 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" -#. 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:766 cmdline/apt-get.cc:1091 #, 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" +msgid "Unable to find a source package for %s" +msgstr "Izvornega paketa za %s ni mogoče najti" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:786 #, 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" - -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Napačna privzeta nastavitev!" - -#: 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." - -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Ali želite izbrisati vse predhodno prejete datoteke .deb?" - -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -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" - -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo " -"napake" +"OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\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" -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" +"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/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Ni mogoče najti razpršenega elementa!" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Preskok že prejete datoteke '%s'\n" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Ni mogoče dodeliti odklona" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Ni mogoče določiti prostega prostora v %s" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Notranja napaka v AddDiversion" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Nimate dovolj prostora na %s" -#: apt-inst/filelist.cc:477 +#. 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:893 #, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" -#: apt-inst/filelist.cc:506 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dvojni seštevek odklona %s -> %s" +msgid "Need to get %sB of source archives.\n" +msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Dvojnik datoteke z nastavitvami %s/%s" +msgid "Fetch source %s\n" +msgstr "Dobi vir %s\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Nekaterih arhivov ni mogoče pridobiti." + +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Prejem je dokončan in uporabljen je način samo prejema" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "The path %s is too long" -msgstr "Pot %s je predolga" +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/extract.cc:132 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Unpacking %s more than once" -msgstr "Odpakiranje %s več kot enkrat" +msgid "Unpack command '%s' failed.\n" +msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:965 #, c-format -msgid "The directory %s is diverted" -msgstr "Mapa %s je odklonjena" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:993 #, 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" +msgid "Build command '%s' failed.\n" +msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: 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:1012 +msgid "Child process failed" +msgstr "Podrejeno opravilo ni uspelo" -#: 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:1031 +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/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Ni mogoče preimenovati %s v %s" +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/extract.cc:249 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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" +msgid "Unable to get build-dependency information for %s" +msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Pot je predolga" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s nima odvisnosti za gradnjo.\n" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Prepiši zadetek paketa brez vnosa različice za %s" +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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" +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-inst/extract.cc:498 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unable to stat %s" -msgstr "Ni mogoče določiti %s" +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-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1376 #, c-format -msgid "Failed to write file %s" -msgstr "Zapisovanje datoteke %s je spodletelo" +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-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1382 #, c-format -msgid "Failed to close file %s" -msgstr "Napaka med zapiranjem datoteke %s" +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-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "To ni veljaven arhiv DEB. Manjka član '%s'." +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" -#: apt-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Internal error, could not locate member %s" -msgstr "Notranja napaka. Ni mogoče najti člana %s." +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "Nadzorne datoteke ni mogoče razčleniti" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Obdelava odvisnosti za gradnjo je spodletela" -#: 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 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, 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" - -#: 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" +msgid "Changelog for %s (%s)" +msgstr "Dnevnik sprememb za %s (%s)" -#: 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:1616 +msgid "Supported modules:" +msgstr "Podprti moduli:" -#: apt-inst/contrib/extracttar.cc:308 -#, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Neznana vrsta glave TAR %u, član %s" +#: cmdline/apt-get.cc:1657 +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" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Ni mogoče določiti %s." +#: 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" -#: 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 "Poganjanje 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 "Paketni sistem '%s' ni podprt" - -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -msgstr "Ni mogoče določiti ustrezne vrste paketnega sistema" +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:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:74 #, c-format -msgid "Wrote %i records.\n" -msgstr "Zapisanih je bilo %i zapisov.\n" +msgid "%s was already set to manually installed.\n" +msgstr "paket %s je bil že nastavljen na ročno nameščen.\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 "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" +msgid "%s was already set to automatically installed.\n" +msgstr "paket %s je bil že nastavljen kot samodejno nameščen.\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 "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" +msgid "%s was already set on hold.\n" +msgstr "paket %s je bil že nastavljen kot na čakanju.\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 "" -"Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami in %i " -"neujemajočimi datotekami.\n" +msgid "%s was already not hold.\n" +msgstr "paket %s je bil že nastavljen kot ne na čakanju.\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 "Ni mogoče najti zapisa overitve za: %s" +msgid "%s set on hold.\n" +msgstr "paket %s je nastavljen kot na čakanju.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Neujemanje razpršila za: %s" +msgid "Canceled hold on %s.\n" +msgstr "Čakanje za %s je bilo preklicano.\n" -#: 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-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Izvajanje dpkg je spodletelo. Ali ste skrbnik?" -#: 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-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/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Način %s se ni začel pravilno" +#: 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 "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" +msgid "Unable to read the cdrom database %s" +msgstr "Ni mogoče brati podatkovne zbirke %s na CD-ROM-u" -#: apt-pkg/pkgcache.cc:166 -msgid "The package cache file is an incompatible version" -msgstr "Različica datoteke s predpomnilnikom paketov ni združljiva" +#: 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:169 -msgid "The package cache file is corrupted, it is too small" -msgstr "Datoteka predpomnilnika paketa je okvarjena. Je premajhna" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Napačen CD-ROM" -#: apt-pkg/pkgcache.cc:174 +#: methods/cdrom.cc:249 #, 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 "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:322 -msgid "Conflicts" -msgstr "V sporu z" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Diska ni mogoče najti." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Zamenja" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Datoteke ni mogoče najti" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Zastara" +#: 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/pkgcache.cc:323 -msgid "Breaks" -msgstr "Pokvari" +#: 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/pkgcache.cc:323 -msgid "Enhances" -msgstr "Izboljša" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "pomembno" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Prijavljanje" -#: apt-pkg/pkgcache.cc:334 -msgid "required" -msgstr "obvezno" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Ni mogoče ugotoviti imena gostitelja" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "običajni" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Ni mogoče določiti krajevnega imena" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "izbirno" +#: 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/pkgcache.cc:335 -msgid "extra" -msgstr "dodatno" +#: methods/ftp.cc:225 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:232 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Vrsta datoteke s kazalom '%s' ni podprta" +msgid "PASS failed, server said: %s" +msgstr "PASS je spodletel, strežnik je odgovoril: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Predpomnilnik ima neustrezen sistem različic" +#: 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." -#. 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 "Med obdelovanjem %s je prišlo do napake (%s%d)" - -#: 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." +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: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:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE je spodletel, strežnik je odgovoril: %s" -#: 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:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 +msgid "Connection timeout" +msgstr "Povezava je zakasnela" -#: 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:350 +msgid "Server closed the connection" +msgstr "Strežnik je zaprl povezavo" -#: apt-pkg/pkgcachegen.cc:576 -#, 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" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Odgovor je prekoračil predpomnilnik." -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Ni mogoče določiti seznama izvornih paketov %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Okvara protokola" -#: 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:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Ni mogoče ustvariti vtiča" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Zbiranje dobaviteljev datotek" +#: 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/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Ni mogoče pisati na %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Spodletelo" -#: 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:718 +msgid "Could not connect passive socket." +msgstr "Ni mogoče povezat pasivnega vtiča." -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Pošlji scenarij reševalniku" +#: 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/edsp.cc:241 -msgid "Send request to solver" -msgstr "Pošlji zahtevo reševalniku" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Ni mogoče povezati vtiča" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Priprava za rešitev prejemanja" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Ni mogoče poslušati na vtiču" -#: 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" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Ni mogoče določiti imena vtiča" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "Izvedi zunanji reševalnik" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Ni mogoče poslati ukaza PORT" -#: 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 "preimenovanje je spodletelo, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Neznan naslov družine %u (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Neujemanje vsote razpršil" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ni uspel, strežnik je odgovoril: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Neujemanje velikosti" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Povezava podatkovne vtičnice je zakasnela" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Neveljavno opravilo %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Ni mogoče sprejeti povezave" -#: 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: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:1597 +#: methods/ftp.cc:890 #, 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" +msgid "Unable to fetch file, server said '%s'" +msgstr "Ni mogoče pridobiti datoteke, strežnik je odgovoril '%s'" -#: 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:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Podatkovna vtič je potekel" -#: 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 "" -"Datoteka Release za %s je potekla (neveljavna od %s). Posodobitev za to " -"skladišče ne bo uveljavljena." +msgid "Data transfer failed, server said '%s'" +msgstr "Prenos podatkov ni uspel, strežnik je odgovoril '%s'" -#: apt-pkg/acquire-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Poizvedba" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Ni mogoče klicati " -#: 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 "" -"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " -"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n" +msgid "Connecting to %s (%s)" +msgstr "Povezovanje z %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 "Napaka 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 "" -"Ni bilo mogoče najti datoteke za paket %s. Morda boste morali ročno " -"popraviti ta paket (zaradi manjkajočega arhiva)." +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/acquire-item.cc:1933 +#: methods/connect.cc:100 #, 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 "Cannot initiate the connection to %s:%s (%s)." +msgstr "Ni mogoče začeti povezave z %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 "" -"Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje za paket " -"%s." +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/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Ponudnikov blok %s ne vsebuje prstnega podpisa" +msgid "Could not connect to %s:%s (%s)." +msgstr "Ni se mogoče povezati z %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 "Mapa seznama %spartial manjka." +msgid "Connecting to %s" +msgstr "Povezovanje z %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Mapa arhivov %spartial manjka." +msgid "Could not resolve '%s'" +msgstr "Ni mogoče razrešiti '%s'" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "Mape %s ni mogoče zakleniti" +msgid "Temporary failure resolving '%s'" +msgstr "Začasna napaka med razreševanjem '%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 "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Pridobivanje datoteke %li od %li (%s preostalo)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Pridobivanje datoteke %li od %li" +msgid "Unable to connect to %s:%s:" +msgstr "Ni se mogoče povezati z %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 "" -"Prejem nekaterih datotek kazala je spodletel. Bile so prezrte ali pa so bile " -"namesto njih uporabljene stare." +"Notranja napaka: Dober podpis, toda ni mogoče določiti podpisa ključa?!" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Najden je bil vsaj en neveljaven podpis." -#: apt-pkg/policy.cc:83 +#: 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 "" -"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 "" -"Vrednost '%s' je neveljavna za APT::Default-Release in zato takšna izdaja ni " -"na voljo v virih" - -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Neveljaven zapis v datoteki možnosti %s, ni glave paketa" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Ni mogoče razumeti vrste bucike %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Neznana napaka med izvajanjem gpgv" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Prednost bucike ni navedena ali pa je nič." +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Naslednji podpisi so bili neveljavni:\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 "" -"Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " -"APT::Immediate-Configure za podrobnosti. (%d)" +"Naslednjih podpisov ni mogoče preveriti, ker javni ključ ni na voljo:\n" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "Ni mogoče nastaviti '%s' " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Prazne datoteke ne morejo biti veljavni arhivi" -#: 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 "" -"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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Napaka med pisanjem v datoteko" -#: 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/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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Odklapljanje CD-ROM-a ...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Napaka med branjem s strežnika" -#: 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/http.cc:561 +msgid "Error writing to file" +msgstr "Napaka med pisanjem v datoteko" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Čakanje na disk ...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Izbira ni uspela" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Priklapljanje CD-ROM-a ...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Povezava je zakasnela" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identificiranje ... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Napaka med pisanjem v izhodno datoteko" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Shranjena oznaka: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Čakanje na glave" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Preiskovanje diska za datoteke kazala ...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Neveljavna vrstica glave" -#: apt-pkg/cdrom.cc:734 +#: 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" + +#: 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" + +#: 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" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Neznana oblika datuma" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Napačni podatki glave" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Povezava ni uspela" + +#: methods/server.cc:572 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Najdenih je bilo %zu kazal paketov, %zu kazal virov, %zu kazalov prevodov in " -"%zu podpisov\n" -#: 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:692 +msgid "Internal error" +msgstr "Notranja napaka" + +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Preračunavanje nadgradnje ... " + +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Opravljeno" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Nobenih datotek paketov ni mogoče najti, morda to ni disk Debian ali pa je " -"arhitektura napačna?" -#: apt-pkg/cdrom.cc:771 +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:156 #, c-format -msgid "Found label '%s'\n" -msgstr "Najdena je bila oznaka '%s'\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] "" +msgstr[3] "" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "To ni veljavno ime, poskusite znova.\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Popravljanje odvisnosti ..." -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Ta disk se imenuje: \n" -"'%s'\n" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " spodletelo." -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kopiranje seznama paketov ..." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Ni mogoče popraviti odvisnosti" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Pisanje novega seznama virov\n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Ni mogoče pomanjšati zbirke za nadgradnjo" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Izvorni vnosi za ta disk so:\n" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Opravljeno" -#: 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." +#: 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/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Nerešene odvisnosti. Poskusite uporabiti -f." + +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -"Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " -"povzročili zadržani paketi." -#: 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-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Nameščeno]" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Gradnja drevesa odvisnosti" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nameščeno]" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Različice kandidatov" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Ustvarjanje odvisnosti" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nameščeno]" -#: 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-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Nameščeno]" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-output.cc:248 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Odpiranje DatotekeStanja %s je spodletelo" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Pisanje začasne DatotekeStanja %s je spodletelo" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:434 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Ni mogoče razčleniti datoteke paketa %s (1)" +msgid "but %s is installed" +msgstr "vendar je paket %s nameščen" -#: apt-pkg/tagfile.cc:237 +#: apt-private/private-output.cc:436 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Ni mogoče razčleniti datoteke paketa %s (2)" +msgid "but %s is to be installed" +msgstr "vendar bo paket %s nameščen" -#: 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-output.cc:443 +msgid "but it is not installable" +msgstr "vendar se ga ne da namestiti" -#: 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-output.cc:445 +msgid "but it is a virtual package" +msgstr "vendar je navidezen paket" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Ni mogoče najti naloge '%s'" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "vendar ni nameščen" -#: 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:448 +msgid "but it is not going to be installed" +msgstr "vendar ne bo nameščen" -#: 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-private/private-output.cc:453 +msgid " or" +msgstr " ali" -#: 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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Naslednji paketi imajo nerešene odvisnosti:" -#: 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 "" -"Ni mogoče izbrati nameščene različice ali različice kandidata iz paketa " -"'%s', saj nima nobenega od njiju" +#: apt-private/private-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Naslednji NOVI paketi bodo nameščeni:" -#: 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" +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Naslednji novi paketi bodo ODSTRANJENI:" -#: 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:550 +msgid "The following packages have been kept back:" +msgstr "Naslednji paketi so bili zadržani:" -#: 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" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Naslednji paketi bodo nadgrajeni:" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Ni mogoče razčleniti Release datoteke %s" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Naslednji paketi bodo POSTARANI:" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "Naslednji zadržani paketi bodo spremenjeni:" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:667 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "Ni vnosa razpršila v Release datoteki %s" +msgid "%s (due to %s) " +msgstr "%s (zaradi %s) " -#: 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:675 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"OPOZORILO: Naslednji nujni paketi bodo odstranjeni.\n" +"Tega NE storite, razen če ne veste natanko kaj počenjate!" -#: apt-pkg/indexrecords.cc:149 +#: apt-private/private-output.cc:706 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Neveljavne vnos 'Datum' v Release datoteki %s" - -#: 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)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu nadgrajenih, %lu na novo nameščenih, " -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:710 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu posodobljenih, " -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:712 #, 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)" +msgid "%lu downgraded, " +msgstr "%lu postaranih, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:714 #, 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)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:718 #, 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)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu ne popolnoma nameščenih ali odstranjenih.\n" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#. 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:740 +msgid "[Y/n]" msgstr "" -"Slabo oblikovana vrstica %lu na seznamu virov %s ([%s] ključ %s nima " -"vrednosti)" -#: 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)" +#. 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:746 +msgid "[y/N]" +msgstr "" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "" -#: apt-pkg/sourcelist.cc:211 +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +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 "Malformed line %lu in source list %s (URI parse)" -msgstr "Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev URI)" +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/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." msgstr "" -"Slabo oblikovana vrstica %lu v seznamu virov %s (absolutna distribucija)" -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-show.cc:156 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" +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] "" + +#: apt-private/private-show.cc:163 +msgid "not a real package (virtual)" msgstr "" -"Slabo oblikovana vrstica %lu v seznamu virov %s (razčlenitev distribucije)" -#: apt-pkg/sourcelist.cc:335 -#, c-format -msgid "Opening %s" -msgstr "Odpiranje %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Notranja napaka, NamestiPakete je bil klican z pokvarjenimi paketi!" -#: 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)" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Odstraniti je treba pakete, a je odstranjevanje onemogočeno." -#: 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" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Notranja napaka, Urejanje se ni končalo" -#: 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" +#: apt-private/private-install.cc:150 +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:95 +#. 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:157 #, c-format -msgid "Installing %s" -msgstr "Nameščanje %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:162 #, c-format -msgid "Configuring %s" -msgstr "Nastavljanje %s" +msgid "Need to get %sB of archives.\n" +msgstr "Potrebno je dobiti %sB arhivov.\n" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:169 #, c-format -msgid "Removing %s" -msgstr "Odstranjevanje %s" +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:98 +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: apt-private/private-install.cc:174 #, c-format -msgid "Completely removing %s" -msgstr "%s je bil popolnoma odstranjen" +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:99 +#: apt-private/private-install.cc:202 #, c-format -msgid "Noting disappearance of %s" -msgstr "%s je izginil" +msgid "You don't have enough free space in %s." +msgstr "Na %s je premalo prostora." -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Poganjanje sprožilca po namestitvi %s" +#: apt-private/private-install.cc:212 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" -#. 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-install.cc:218 apt-private/private-install.cc:240 +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:842 apt-pkg/deb/dpkgpm.cc:864 -#, c-format -msgid "Could not open file '%s'" -msgstr "Ni mogoče odpreti datoteke '%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:222 +msgid "Yes, do as I say!" +msgstr "Da, naredi tako kot pravim!" -#: apt-pkg/deb/dpkgpm.cc:989 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing %s" -msgstr "Pripravljanje %s" +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:990 -#, c-format -msgid "Unpacking %s" -msgstr "Razširjanje %s" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Prekini." -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "Pripravljanje na nastavljanje %s" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Ali želite nadaljevati?" -#: apt-pkg/deb/dpkgpm.cc:997 -#, c-format -msgid "Installed %s" -msgstr "%s je bil nameščen" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Prejem nekaterih datotek ni uspel" -#: apt-pkg/deb/dpkgpm.cc:1002 -#, c-format -msgid "Preparing for removal of %s" -msgstr "Pripravljanje na odstranitev %s" +#: apt-private/private-install.cc:322 +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-pkg/deb/dpkgpm.cc:1004 -#, c-format -msgid "Removed %s" -msgstr "%s je bil odstranjen" +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Pripravljanje na popolno odstranitev %s" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Ni mogoče popraviti manjkajočih paketov." -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s je bil popolnoma odstranjen" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Prekinjanje namestitve." -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" -msgstr "" +#: apt-private/private-install.cc:368 +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-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:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Opomba: To je dpkg storil samodejno in namenoma." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" +#: apt-private/private-install.cc:393 +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-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:501 +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." -#: 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-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" +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:" -#. 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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:515 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." +"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/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:519 +#, 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:521 +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-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:614 +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-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:616 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 "" -"Poročilo apport je bilo napisano, ker sporočilo o napaki nakazuje na težavo " -"na krajevnem sistemu" +"Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " +"navedite rešitev)." -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:640 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 "" -"Poročilo apport ni bilo napisano, ker sporočilo o napaki nakazuje na napako " -"dpkg V/I" +"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-pkg/deb/debsystem.cc:91 -#, c-format -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?" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Pokvarjeni paketi" -#: apt-pkg/deb/debsystem.cc:94 -#, 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?" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Naslednji dodatni paketi bodo nameščeni:" -#. 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 je bil prekinjen. Za popravilo napake morate ročno pognati '%s'. " +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Predlagani paketi:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Ni zaklenjeno" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Priporočeni paketi:" -#. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:406 +#: apt-private/private-install.cc:851 #, 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 "%s je preskočen, ker je že nameščen in ne potrebuje nadgradnje.\n" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:855 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:867 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:872 #, c-format -msgid "%lis" -msgstr "%lis" +msgid "%s is already the newest version.\n" +msgstr "Najnovejša različica %s je že nameščena.\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:920 #, c-format -msgid "Selection %s not found" -msgstr "Izbire %s ni mogoče najti" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Izbrana različica '%s' (%s) za '%s'\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:925 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "Brez uporabe zaklepanja za zaklenjeno datoteko le za branje %s" +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:195 +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 #, c-format -msgid "Could not open lock file %s" -msgstr "Ni mogoče odprti zaklenjene datoteke %s" +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:218 +#: apt-private/private-install.cc:973 #, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "Brez uporabe zaklepanja za datoteko %s, priklopljeno z NTFS" +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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Ni mogoče zakleniti datoteke %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 "" +"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: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" +#: 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: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" +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Opozorilo overitve je bilo prepisano.\n" -#: 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" +#: 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-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Ali želite te pakete namestiti brez preverjanja?" + +#: 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: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 "" -"Preziranje datoteke '%s' v mapi '%s', ker nima veljavne pripone imena datotek" -#: 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-search.cc:51 +msgid "Full Text Search" +msgstr "" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "Zadetek " + +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Dobi:" + +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Prezr " -#: apt-pkg/contrib/fileutl.cc:826 +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Nap " + +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Sub-process %s received signal %u." -msgstr "Pod-opravilo %s je prejelo signal %u." +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Pridobljenih %sB v %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Sub-process %s returned an error code (%u)" -msgstr "Pod-opravilo %s je vrnilo kodo napake (%u)" +msgid " [Working]" +msgstr " [Delo]" -#: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232 +#: apt-private/acqprogress.cc:298 #, c-format -msgid "Sub-process %s exited unexpectedly" -msgstr "Pod-opravilo %s se je nepričakovano zaključilo" +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/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 "Težava med zapiranjem gzip datoteke %s" +msgid "No mirror file '%s' found " +msgstr "Datoteke zrcalnih strežnikov '%s' ni mogoče najti " -#: 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 "Ni mogoče odpreti datoteke %s" +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" -#: 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 "Ni mogoče odpreti opisnika datotek %d" +msgid "[Mirror: %s]" +msgstr "[Zrcalni strežnik: %s]" -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Ni mogoče ustvariti podopravila IPD" +#: 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/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Ni mogoče izvesti stiskanja " +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Povezava se je prezgodaj zaprla" -#: 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" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Napačna privzeta nastavitev!" -#: 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" +#: 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/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "Težava med zapiranjem datoteke %s" +#: 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/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Težava med preimenovanje datoteke %s v %s" +#: dselect/install:102 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Med razširajanjem je prišlo do nekaterih napak. Paketi, ki so bili nameščeni" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Težava med razvezovanjem datoteke %s" +#: 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 "" +"ali do napak zaradi manjkajočih odvisnosti. To je v redu, pomembne so samo " +"napake" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Težava med usklajevanjem datoteke" +#: dselect/install:105 +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" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s ... Napaka!" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Združevanje razpoložljivih podaktov" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s ... Narejeno" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode je poklical stabilno povezano vozlišče" -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Ni mogoče najti razpršenega elementa!" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s ... Narejeno" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Ni mogoče dodeliti odklona" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "mmap prazne datoteke ni mogoč" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Notranja napaka v AddDiversion" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:477 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Ni mogoče podvojiti opisnika datotek %i" +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Poskus prepisovanja odklona, %s -> %s in %s/%s" -#: apt-pkg/contrib/mmap.cc:119 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "Ni mogoče narediti mmap %llu bajtov" - -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Ni mogoče zapreti mmap" - -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Ni mogoče uskladiti mmap" +msgid "Double add of diversion %s -> %s" +msgstr "Dvojni seštevek odklona %s -> %s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "Ni mogoče narediti mmap %lu bajtov" - -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Ni mogoče obrezati datoteke" +msgid "Duplicate conf file %s/%s" +msgstr "Dvojnik datoteke z nastavitvami %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 "" -"Dinamičnemu MMap je zmanjkalo prostora. Povečajte velikost APT::Cache-Start. " -"Trenutna vrednost: %lu. (man 5 apt.conf)" +msgid "The path %s is too long" +msgstr "Pot %s je predolga" -#: 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 "" -"Ni mogoče povečati velikosti MMap, ker je omejitev %lu bajtov že dosežena." +msgid "Unpacking %s more than once" +msgstr "Odpakiranje %s več kot enkrat" -#: 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-inst/extract.cc:142 +#, c-format +msgid "The directory %s is diverted" +msgstr "Mapa %s je odklonjena" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Ni mogoče določiti priklopne točke %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/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Ni mogoče določiti CD-ROM-a" +#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "Pot odklona je predloga" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Neprepoznana vrsta okrajšave: '%c'" +msgid "Failed to stat %s" +msgstr "Napaka med določitvijo %s" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Opening configuration file %s" -msgstr "Odpiranje nastavitvene datoteke %s" +msgid "Failed to rename %s to %s" +msgstr "Ni mogoče preimenovati %s v %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 "Skladenjska napaka %s:%u: Blok se začne brez imena." +msgid "The directory %s is being replaced by a non-directory" +msgstr "Mapa %s je bil zamenjana z ne-mapo" -#: apt-pkg/contrib/configuration.cc:820 -#, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Skladenjska napaka %s:%u: Slabo oblikovana oznaka." +#: 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-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-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Pot je predolga" -#: 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 "" -"Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnji ravni." +msgid "Overwrite package match with no version for %s" +msgstr "Prepiši zadetek paketa brez vnosa različice za %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:438 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Skladenjska napaka %s:%u: Preveč vgnezdenih vključitev" +msgid "File %s/%s overwrites the one in the package %s" +msgstr "Datoteka %s/%s prepisuje datoteko v paketu %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 "Skladenjska napaka %s:%u: Vključeno od tu" +msgid "Unable to stat %s" +msgstr "Ni mogoče določiti %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 "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" +msgid "Failed to write file %s" +msgstr "Zapisovanje datoteke %s je spodletelo" -#: 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 "" -"Skladenjska napaka %s:%u: počisti ukaz zahteva drevo možnosti kot argument" +msgid "Failed to close file %s" +msgstr "Napaka med zapiranjem datoteke %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 "Skladenjska napaka %s:%u: Dodatna krama na koncu datoteke" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "To ni veljaven arhiv DEB. Manjka član '%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 ni nameščenih zbirk ključev." +msgid "Internal error, could not locate member %s" +msgstr "Notranja napaka. Ni mogoče najti člana %s." -#: apt-pkg/contrib/cmndline.cc:121 -#, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Možnost ukazne vrstice '%c' [iz %s] ni poznana." +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Nadzorne datoteke ni mogoče razčleniti" -#: 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 "Možnosti ukazne vrstice %s ni mogoče razumeti" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Neveljaven podpis arhiva" -#: apt-pkg/contrib/cmndline.cc:168 -#, c-format -msgid "Command line option %s is not boolean" -msgstr "Možnost ukazne vrstice %s ni boolova vrednost" +#: apt-inst/contrib/arfile.cc:84 +msgid "Error reading archive member header" +msgstr "Napaka med branjem glave člana arhiva" -#: 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 "Možnost %s zahteva argument." +msgid "Invalid archive member header %s" +msgstr "Neveljavna glava arhiva člana %s" -#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 -#, c-format -msgid "Option %s: Configuration item specification must have an =." -msgstr "Možnost %s: Določilo predmeta nastavitve zahtevajo =." +#: apt-inst/contrib/arfile.cc:108 +msgid "Invalid archive member header" +msgstr "Neveljavna glava člana arhiva" -#: 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-inst/contrib/arfile.cc:137 +msgid "Archive is too short" +msgstr "Arhiv je prekratek" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Možnost '%s' je predolga" +#: apt-inst/contrib/arfile.cc:141 +msgid "Failed to read the archive headers" +msgstr "Glav arhiva ni mogoče brati" -#: 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-inst/contrib/extracttar.cc:124 +msgid "Failed to create pipes" +msgstr "Ni mogoče ustvariti pip" -#: apt-pkg/contrib/cmndline.cc:391 +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3261,12 +3274,7 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Ni mogoče določiti %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni mogoče ugotoviti različice debconfa. Je sploh nameščen?" @@ -3383,17 +3391,17 @@ msgstr "Nobena izbira se ne ujema" msgid "Some files are missing in the package file group `%s'" msgstr "Nekatere datoteke manjkajo v skupini datotek paketov `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Podatkovna zbirka je pokvarjena, datoteka je preimenovana v %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "PZ je star, poskušanje nadgradnje %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3401,105 +3409,105 @@ msgstr "" "Oblika podatkovne zbirke je neveljavna. V kolikor ste nadgradili s starejše " "različice apt, podatkovno zbirko odstranite in jo znova ustvarite." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Ni mogoče odprti datoteke PZ %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Napaka med branjem povezave %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arhiv nima nadzornega zapisa" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Ni mogoče najti kazalke" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "O: ni mogoče brati mape %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "O: Ni mogoče določiti %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "O: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "N: Napake se sklicujejo na datoteko " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Ni mogoče razrešiti %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Hoja drevesa je spodletela" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Ni mogoče odprti %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " RazVeži %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Napaka med branjem povezave %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Napaka med odvezovanjem %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Napaka med povezovanjem %s in %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Dosežena meja RazVezovanja %sB.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arhiv ni imel polja s paketom" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s nima prepisanega vnosa\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Vzdrževalec %s je %s in ne %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s nima izvornega vnosa prepisa\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nima tudi binarnega vnosa prepisa\n" diff --git a/po/sv.po b/po/sv.po index 55b56e645..c83cbdcf2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -19,3214 +19,3227 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Paketcachefilen är skadad" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Paketcachefilens version är inkompatibel" + +#: apt-pkg/pkgcache.cc:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "Paketcachefilen är skadad" + +#: apt-pkg/pkgcache.cc:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +msgid "PreDepends" +msgstr "Förberoende av" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Föreslår" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Rekommenderar" + +# "Konfliktar"? +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Står i konflikt med" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Ersätter" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +# "Föråldrar"? +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Föråldrar" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Gör sönder" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Utökar" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "viktigt" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "nödvändigt" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "valfri" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Kunde inte hitta paketet %s" +msgid "Index file type '%s' is not supported" +msgstr "Indexfiler av typ \"%s\" stöds inte" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "\"Package\"-filer:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Fel vid kompilering av reguljärt uttryck - %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" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Cachen har ett inkompatibelt versionssystem" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Fastnålade paket:" +# 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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Fel uppstod vid hantering av %s (FindPkg)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(hittades inte)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Installerad: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidat: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ingen)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Paketnålning: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Paketet %s %s hittades inte när filberoenden hanterades" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Versionstabell:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kunde inte ta status på källkodspaketlistan %s" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Läser paketlistor" + +# Bättre ord? +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Samlar filtillhandahållningar" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s för %s kompilerad den %s %s\n" +msgid "Unable to write to %s" +msgstr "Kunde inte skriva till %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 "" -"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\"" - -#: 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" - -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Misslyckades med att montera \"%s\" till \"%s\"" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "In-/utfel vid lagring av källcache" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" msgstr "" -#: 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." - -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Argumenten gavs inte parvis" - -#: 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/edsp.cc:241 +msgid "Send request to solver" 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" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: 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/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: 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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" +msgstr "" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, 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 "rename failed, %s (%s -> %s)." +msgstr "namnbyte misslyckades, %s (%s -> %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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash-kontrollsumman stämmer inte" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "Kunde inte hitta paketet %s" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Storleken stämmer inte" -#: 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 är satt till manuellt installerad.\n" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Felaktig åtgärd %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s är satt till automatiskt installerad.\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." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" 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/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Kunde inte tolka \"Release\"-filen %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-pkg/acquire-item.cc:1737 +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" -#: 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/acquire-item.cc:1775 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Kunde inte hitta något källkodspaket för %s" +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:786 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +"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 "" -"OBSERVERA: paketering av \"%s\" hanteras i versionshanteringssystemet \"%s\" " -"på:\n" +"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:791 -#, fuzzy, c-format +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG-fel: %s: %s" + +#: apt-pkg/acquire-item.cc:1972 +#, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\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 "" -"Använd:\n" -"bzr get %s\n" -"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" +"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)." -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Hoppar över redan hämtade filen \"%s\"\n" +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Kunde inte fastställa ledigt utrymme i %s" +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:882 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" +msgid "Vendor block %s contains no fingerprint" +msgstr "Leverantörsblocket %s saknar fingeravtryck" -#. 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.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" +msgid "List directory %spartial is missing." +msgstr "Listkatalogen %spartial saknas." -#. TRANSLATOR: The required 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.cc:92 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Behöver hämta %sB källkodsarkiv.\n" +msgid "Archives directory %spartial is missing." +msgstr "Arkivkatalogen %spartial saknas." -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:100 #, 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." +msgid "Unable to lock directory %s" +msgstr "Kunde inte låsa katalogen %s" -#: 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" +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Hämtar fil %li av %li (%s återstår)" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "Packar inte upp redan uppackad källkod i %s\n" +msgid "Retrieving file %li of %li" +msgstr "Hämtar fil %li av %li" -#: cmdline/apt-get.cc:962 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Uppackningskommandot \"%s\" misslyckades.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Misslyckades med att hämta %s %s\n" + +#: 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." + +#: 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" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:83 #, 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 "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" -#: cmdline/apt-get.cc:991 +# "Package" är en sträng i konfigurationsfilen +#: apt-pkg/policy.cc:422 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Byggkommandot \"%s\" misslyckades.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Barnprocessen misslyckades" +#: apt-pkg/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Förstod inte nåltypen %s" -#: 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" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Prioritet ej angiven (eller noll) för nål" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +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:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Kunde inte öppna filen \"%s\"" + +#: apt-pkg/packagemanager.cc:584 +#, 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 "" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Kunde inte hämta information om byggberoenden för %s" +msgid "Line %u too long in source list %s." +msgstr "Rad %u är för lång i källistan %s." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "Avmonterar CD-ROM...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s har inga byggberoenden.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Använder cd-rom-monteringspunkten %s\n" -#: cmdline/apt-get.cc:1271 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Väntar på skiva...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Monterar cd-rom...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Identifierar... " + +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +"Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " +"signaturer\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +"Kunde inte hitta några paketfiler. Detta är kanske inte en Debian-skiva " +"eller felaktig arkitektur?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "Found label '%s'\n" +msgstr "Hittade etiketten \"%s\"\n" + +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "Namnet är ogiltigt, försök igen.\n" + +#: apt-pkg/cdrom.cc:817 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade " -"paketet %s är för nytt" +"Denna skiva heter: \n" +"\"%s\"\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kopierar paketlistor..." + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Skriver ny källista\n" + +#: apt-pkg/cdrom.cc:874 +msgid "Source list entries for this disc are:\n" +msgstr "Poster i källistan för denna skiva:\n" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga " -"versioner av paketet %s tillfredsställer versionskraven" +"Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " -"hittas" +"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " +"tillbakahållna paket." + +#: 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." + +#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Bygger beroendeträd" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Kandiderande versioner" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Beroendegenerering" + +#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 +msgid "Reading state information" +msgstr "Läser tillståndsinformation" -#: cmdline/apt-get.cc:1380 +#: apt-pkg/depcache.cc:250 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Misslyckades med att öppna StateFile %s" + +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Misslyckades med att skriva temporär StateFile %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/tagfile.cc:169 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Byggberoenden för %s kunde inte tillfredsställas." +msgid "Unable to parse package file %s (1)" +msgstr "Kunde inte tolka paketfilen %s (1)" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Misslyckades med att behandla byggberoenden" +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Kunde inte tolka paketfilen %s (2)" -# Felmeddelande för misslyckad chdir -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Version \"%s\" för \"%s\" hittades inte" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Kunde inte hitta paketet %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Kunde inte hitta funktionen \"%s\"" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" + +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Ansluter till %s (%s)" +msgid "Couldn't find any package by glob '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Moduler som stöds:" +#: apt-pkg/cacheset.cc:627 +#, 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" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +"Kan inte välja installerad version eller kandidatversion från paketet \"%s\" " +"eftersom det inte har någon av dem" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:648 +#, 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" -#: 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/cacheset.cc:656 +#, c-format +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" -#: 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" +#: apt-pkg/cacheset.cc:664 +#, c-format +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" -#: 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/indexrecords.cc:83 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "Kunde inte tolka \"Release\"-filen %s" -#: 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/indexrecords.cc:91 +#, c-format +msgid "No sections in Release file %s" +msgstr "Inga sektioner i Release-filen %s" -#: 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/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "Ingen Hash-post i Release-filen %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/indexrecords.cc:149 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Väntade på %s men den fanns inte där" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Ogiltig \"Valid-Until\"-post i Release-filen %s" -#: 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" +#: apt-pkg/indexrecords.cc:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Ogiltig \"Date\"-post i Release-filen %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Misslyckades med att öppna %s" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Rad %lu i källistan %s har fel format (URI-tolkning)" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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)" -#: 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/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)" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Kunde inte läsa cd-rom-databasen %s" +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/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/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)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Fel cd-rom" +#: 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)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:208 #, 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." +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Rad %lu i källistan %s har fel format (dist)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Skivan hittades inte." +#: 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/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Filen hittades inte" +#: 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/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/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/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Misslyckades ställa in ändringstid" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Öppnar %s" -#: 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/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)" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Loggar in" +#: 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/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Kunde inte fastställa namnet på partnern" +#: 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" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Kunde inte fastställa det lokala namnet" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "Installerar %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Servern nekade anslutningen och sade: %s" +msgid "Configuring %s" +msgstr "Konfigurerar %s" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER misslyckades, servern sade: %s" +msgid "Removing %s" +msgstr "Tar bort %s" -#: methods/ftp.cc:232 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS misslyckades, servern sade: %s" +msgid "Completely removing %s" +msgstr "Tar bort hela %s" -#: 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." +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "Uppmärksammar försvinnandet av %s" -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" +msgid "Running post-installation trigger %s" +msgstr "Kör efterinstallationsutlösare %s" -#: methods/ftp.cc:306 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE misslyckades, servern sade: %s" +msgid "Directory '%s' missing" +msgstr "Katalogen \"%s\" saknas" -#: 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/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/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Servern stängde anslutningen" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "Förbereder %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 "Läsfel" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "Packar upp %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Ett svar spillde bufferten." +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Förbereder konfigurering av %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Protokollet skadat" +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Installerade %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 "Skrivfel" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Förbereder borttagning av %s" -#: 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/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Tog bort %s" -#: 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/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Förbereder borttagning av hela %s" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Misslyckades" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Tog bort hela %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Kunde inte ansluta passivt uttag (socket)." +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: 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/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Kunde inte skriva till %s" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Kunde inte binda ett uttag (socket)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Kunde inte lyssna på uttaget (socket)" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Kunde inte fastställa uttagets namn (socket)" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Väntade på %s men den fanns inte där" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Kunde inte sända PORT-kommando" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Okänd adressfamilj %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "Ingen apport-rapport skrevs därför att MaxReports redan har uppnåtts" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT misslyckades, servern sade: %s" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "beroendeproblem - lämnar okonfigurerad" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" +#: apt-pkg/deb/dpkgpm.cc:1632 +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." -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Kunde inte ta emot anslutningen" +#: apt-pkg/deb/dpkgpm.cc:1638 +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" -#: 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/deb/dpkgpm.cc:1645 +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" -#: methods/ftp.cc:890 -#, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Kunde inte hämta filen, servern sade \"%s\"" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +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" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" +#: apt-pkg/deb/dpkgpm.cc:1679 +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" -#: methods/ftp.cc:935 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Dataöverföringen misslyckades, servern sade \"%s\"" - -# 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 " +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?" -# Felmeddelande för misslyckad chdir -#: methods/connect.cc:76 +#: apt-pkg/deb/debsystem.cc:94 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Ansluter till %s (%s)" +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Kunde inte låsa administrationskatalogen (%s). Är du root?" -#: methods/connect.cc:87 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +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. " -# [f]amilj, [t]yp, [p]rotokoll -#: methods/connect.cc:94 -#, c-format -msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Inte låst" -#: methods/connect.cc:100 +#. 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 "Kunde inte initiera anslutningen till %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 "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns" +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 "Kunde inte ansluta till %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 "Ansluter till %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 "Kunde inte slå upp \"%s\"" +msgid "Selection %s not found" +msgstr "Valet %s hittades inte" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Temporärt fel vid uppslagning av \"%s\"" +msgid "Not using locking for read only lock file %s" +msgstr "Använder inte låsning för skrivskyddade låsfilen %s" -# 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/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kunde inte öppna låsfilen %s" -# Okänd felkod; %i = koden -#: methods/connect.cc:211 +#: apt-pkg/contrib/fileutl.cc:219 #, 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 "Not using locking for nfs mounted lock file %s" +msgstr "Använder inte låsning för nfs-monterade låsfilen %s" -#: methods/connect.cc:258 +#: apt-pkg/contrib/fileutl.cc:224 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Kunde inte ansluta till %s:%s:" +msgid "Could not get lock %s" +msgstr "Kunde inte erhålla låset %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" msgstr "" -"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " -"fingeravtryck?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Minst en ogiltig signatur träffades på." -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" -"Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/contrib/fileutl.cc:413 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Okänt fel vid körning av gpgv" - -#: 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 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " -"tillgänglig:\n" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Underprocessen %s råkade ut för ett segmenteringsfel." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Fel vid skrivning till filen" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Underprocessen %s tog emot signal %u." -#: 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/contrib/fileutl.cc:847 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)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Fel vid läsning från server" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Underprocessen %s avslutades oväntat" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Fel vid skrivning till fil" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Skrivfel" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "\"Select\" misslyckades" +#: apt-pkg/contrib/fileutl.cc:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problem med att stänga gzip-filen %s" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Anslutningen överskred tidsgränsen" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Kunde inte öppna filen %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Fel vid skrivning till utdatafil" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Kunde inte öppna filhandtag %d" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Väntar på rubriker" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Misslyckades med att skapa underprocess-IPC" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Felaktig rubrikrad" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Misslyckades med att starta komprimerare " -#: 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/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Läsfel" -#: 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/contrib/fileutl.cc:1552 +#, 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" -#: 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/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "skrivning, har fortfarande %lu att skriva men kunde inte" -#: 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/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Problem med att stänga filen %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Okänt datumformat" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problem med att byta namn på filen %s till %s" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Felaktiga data i huvud" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Problem med att avlänka filen %s" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Anslutningen misslyckades" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problem med att synkronisera filen" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Internt fel" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Kunde inte ta status på %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Beräknar uppgradering... " +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Fel!" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Färdig" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Färdig" -#: 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 "" - -#: 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] "" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Färdig" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Korrigerar beroenden..." +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Kan inte utföra mmap på en tom fil" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " misslyckades." +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Kunde inte duplicera filhandtag %i" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Kunde inte korrigera beroenden" +#: 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Kunde inte minimera uppgraderingsuppsättningen" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Kunde inte stänga mmap" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Färdig" +#: 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-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/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Kunde inte utföra mmap på %lu byte" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Otillfredsställda beroenden. Prova med -f." +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Misslyckades med att kapa av filen" -#: 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: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-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/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." -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/mmap.cc:449 +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." -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Installerat]" +#: 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-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Installerat]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Kunde inte ta status på cd-romen." -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Okänd typförkortning: \"%c\"" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "men %s är installerat" +msgid "Opening configuration file %s" +msgstr "Öppnar konfigurationsfilen %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "men %s kommer att installeras" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Syntaxfel %s:%u: Block börjar utan namn." -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "men det kan inte installeras" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntaxfel %s:%u: Felformat märke" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "men det är ett virtuellt paket" +#: apt-pkg/contrib/configuration.cc:839 +#, 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-output.cc:448 -msgid "but it is not installed" -msgstr "men det är inte installerat" +#: apt-pkg/contrib/configuration.cc:879 +#, 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-output.cc:448 -msgid "but it is not going to be installed" -msgstr "men det kommer inte att installeras" +#: apt-pkg/contrib/configuration.cc:886 +#, 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-output.cc:453 -msgid " or" -msgstr " eller" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntaxfel %s:%u: Inkluderad härifrån" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Följande paket har beroenden som inte kan tillfredsställas:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Följande NYA paket kommer att installeras:" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Följande paket kommer att TAS BORT:" +#: apt-pkg/contrib/configuration.cc:952 +#, 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-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Följande paket har hållits tillbaka:" +#. 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-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Följande paket kommer att uppgraderas:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Följande paket kommer att NEDGRADERAS:" +#: 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-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Följande tillbakahållna paket kommer att ändras:" +#: 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-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (på grund av %s) " +msgid "Option %s requires an argument." +msgstr "Flaggan %s kräver ett argument." -#: apt-private/private-output.cc:675 -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 =." 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!" +"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu att uppgradera, %lu att nyinstallera, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\"" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu att installera om, " +msgid "Option '%s' is too long" +msgstr "Flaggan \"%s\" är för lång" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu att nedgradera, " +msgid "Sense %s is not understood, try true or false." +msgstr "Förstår inte %s, prova med \"true\" eller \"false\"." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu att ta bort och %lu att inte uppgradera.\n" +msgid "Invalid operation %s" +msgstr "Felaktig åtgärd %s" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu är inte helt installerade eller borttagna.\n" +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" -#. 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:740 -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:746 -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:757 -msgid "Y" -msgstr "J" - -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "" - -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Fel vid kompilering av reguljärt uttryck - %s" - -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Uppdateringskommandot tar inga argument" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Totalt antal paketnamn: " -#: 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:319 +msgid "Total package structures: " +msgstr "Totala paketstrukturer: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Vanliga paket: " -#: 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:360 +msgid " Pure virtual packages: " +msgstr " Helt virtuella paket: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Enstaka virtuella paket: " -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "Internt fel. InstallPackages anropades med trasiga paket!" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Blandade virtuella paket: " -#: 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." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Saknade: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Internt fel. Sorteringen färdigställdes inte" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Totalt antal olika versioner: " -#: 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" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "Totalt antal olika beskrivningar: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Behöver hämta %sB/%sB arkiv.\n" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Totalt antal beroenden: " -#. TRANSLATOR: The required space between number and unit 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 "Behöver hämta %sB arkiv.\n" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Totalt antal version/filrelationer: " -#. TRANSLATOR: The required space between number and unit 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 "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" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Totalt antal beskrivning/filrelationer: " -#. TRANSLATOR: The required space between number and unit 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 "After this operation, %sB disk space will be freed.\n" -msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Totalt antal tillhandahållningsmarkeringar: " -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Totalt antal sökmönstersträngar: " -#: 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" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Totalt utrymme för versionsberoenden: " -#: 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." +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Totalt bortkastat utrymme: " -#. 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!" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Totalt utrymme som kan redogöras för: " -#: apt-private/private-install.cc:222 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 "" -"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:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Avbryter." +msgid "Package file %s is out of sync." +msgstr "Paketfilen %s är inte synkroniserad." -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Vill du fortsätta?" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Misslyckades med att hämta vissa filer" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Du måste ange minst ett sökmönster" -#: apt-private/private-install.cc:320 -msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" -"fix-missing." -#: 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-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Kunde inte korrigera saknade paket." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "\"Package\"-filer:" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Avbryter installationen." +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Cachen är inte synkroniserad, kan inte korsreferera en paketfil" -#: 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] "" -"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:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Fastnålade 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." +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(hittades inte)" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" -"Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Installerad: " -#: 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 "" -"Hmm, det verkar som AutoRemover förstörde något som verkligen\n" -"inte skulle hända. Skicka in en felrapport mot paketet apt." +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidat: " -#. -#. 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:" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(ingen)" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Internt fel, AutoRemover förstörde något" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Paketnålning: " -#: 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] "" -"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:" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Versionstabell:" -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, 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 "%s %s for %s compiled on %s %s\n" +msgstr "%s %s för %s kompilerad den %s %s\n" -#: apt-private/private-install.cc:519 +#: cmdline/apt-cache.cc:1801 #, 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 "" -"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-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." +"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å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\"." - -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Trasiga paket" - -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Följande ytterligare paket kommer att installeras:" +"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" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Föreslagna paket:" +#: 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-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Rekommenderade paket:" +#: 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-private/private-install.cc:825 +#: cmdline/apt-cdrom.cc:139 #, c-format -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" +msgid "Failed to mount '%s' to '%s'" +msgstr "Misslyckades med att montera \"%s\" till \"%s\"" -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\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 "" -"Hoppar över %s, det är inte installerat och endast uppgraderingar har " -"begärts.\n" -#: apt-private/private-install.cc:841 -#, 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" +#: 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-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s är redan den senaste versionen.\n" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Argumenten gavs inte parvis" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Valde version \"%s\" (%s) för \"%s\"\n" +#: 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-private/private-install.cc:899 +#: cmdline/apt-get.cc:245 #, fuzzy, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Valde version \"%s\" (%s) för \"%s\"\n" +msgid "Can not find a package for architecture '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#. TRANSLATORS: Note, this is not an interactive question -#: apt-private/private-install.cc:941 +#: cmdline/apt-get.cc:327 #, 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" +msgid "Can not find a package '%s' with version '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: apt-private/private-install.cc:947 +#: cmdline/apt-get.cc:330 #, 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-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!" - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "VARNING: Följande paket kunde inte autentiseras!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Autentiseringsvarning åsidosatt.\n" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Kunde inte hitta något paket enligt reguljära uttrycket \"%s\"" -#: 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-get.cc:367 +#, 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" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Installera dessa paket utan verifiering?" +#: 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-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:454 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Misslyckades med att hämta %s %s\n" +msgid "Couldn't find package %s" +msgstr "Kunde inte hitta paketet %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" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "" +msgid "%s set to automatically installed.\n" +msgstr "%s är satt till automatiskt installerad.\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" +#: 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 "" -# Måste vara tre bokstäver(?) -# "Hit" = aktuell version är fortfarande giltig -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Bra " - -# "Get:" = hämtar ny version -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Läs:" +#: 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" -# "Ign" = hoppar över -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Ign " +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Kunde inte låsa hämtningskatalogen" -# "Err" = fel vid hämtning -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Fel " +#: 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-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "Hämtade %sB på %s (%sB/s)\n" +msgid "Unable to find a source package for %s" +msgstr "Kunde inte hitta något källkodspaket för %s" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:786 #, c-format -msgid " [Working]" -msgstr " [Arbetar]" +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-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-get.cc:791 +#, fuzzy, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -"Mediabyte: Mata in skivan med etiketten\n" -" \"%s\"\n" -"i enheten \"%s\" och tryck på Enter\n" +"Använd:\n" +"bzr get %s\n" +"för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\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:839 #, c-format -msgid "Unable to read %s" -msgstr "Kunde inte läsa %s" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Hoppar över redan hämtade filen \"%s\"\n" -# 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 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "Unable to change to %s" -msgstr "Kunde inte byta till %s" +msgid "Couldn't determine free space in %s" +msgstr "Kunde inte fastställa ledigt utrymme i %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:884 #, c-format -msgid "No mirror file '%s' found " -msgstr "Ingen spegelfil \"%s\" hittades " - -#. 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 " - -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Ingen spegelfil \"%s\" hittades " +msgid "You don't have enough free space in %s" +msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: methods/mirror.cc:445 +#. 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:893 #, c-format -msgid "[Mirror: %s]" -msgstr "[Spegel: %s]" - -#: 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" - -#: 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!" - -#: 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." - -#: 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?" - -# 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" - -#: 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" - -#: 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" - -#: dselect/install:105 -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" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "DropNode anropat på fortfarande länkad nod" +#. TRANSLATOR: The required 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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Misslyckades med att hitta hash-elementet!" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Hämtar källkoden %s\n" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Misslyckades med att allokera omdirigering" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Misslyckades med att hämta vissa arkiv." -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Internt fel i AddDiversion" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: apt-inst/filelist.cc:477 +#: cmdline/apt-get.cc:952 #, 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" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Packar inte upp redan uppackad källkod i %s\n" -#: apt-inst/filelist.cc:506 +#: cmdline/apt-get.cc:964 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Omdirigeringen %s -> %s inlagd två gånger" +msgid "Unpack command '%s' failed.\n" +msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Duplicerad konfigurationsfil %s/%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-inst/extract.cc:101 apt-inst/extract.cc:172 +#: cmdline/apt-get.cc:993 #, c-format -msgid "The path %s is too long" -msgstr "Sökvägen %s är för lång" +msgid "Build command '%s' failed.\n" +msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Packar upp %s flera gånger" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Barnprocessen misslyckades" -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Katalogen %s är omdirigerad" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:1056 #, 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 "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: 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:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Kunde inte hämta information om byggberoenden för %s" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to stat %s" -msgstr "Misslyckades med att ta status på %s" +msgid "%s has no build depends.\n" +msgstr "%s har inga byggberoenden.\n" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1296 +#, 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" + +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Failed to rename %s to %s" -msgstr "Misslyckades med att byta namn på %s till %s" +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-inst/extract.cc:249 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Katalogen %s ersätts av en icke-katalog" +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-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:1376 +#, 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-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Sökvägen är för lång" +#: cmdline/apt-get.cc:1382 +#, 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-inst/extract.cc:421 +#: cmdline/apt-get.cc:1405 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "Skriv över paketträff utan version 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-inst/extract.cc:438 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Filen %s/%s skriver över den i paketet %s" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Kunde inte ta status på %s" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Misslyckades med att behandla byggberoenden" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 -#, c-format -msgid "Failed to write file %s" -msgstr "Misslyckades med att skriva filen %s" +# Felmeddelande för misslyckad chdir +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Ansluter till %s (%s)" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Misslyckades med att stänga filen %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 "Detta är inte ett giltigt DEB-arkiv, delen \"%s\" saknas" - -#: apt-inst/deb/debfile.cc:132 -#, 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" - -#: apt-inst/contrib/arfile.cc:96 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ogiltig arkivdelsrubrik %s" - -#: 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 "Unknown TAR header type %u, member %s" -msgstr "Okänd TAR-rubriktyp %u, del %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Kunde inte ta status på %s." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Moduler som stöds:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +#, 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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "Kör dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Paketsystemet \"%s\" stöds inte" - -# -#: 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-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/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 "" -#: 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-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 "Skrev %i poster med %i filer som inte stämmer\n" +#: 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/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-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/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "Kan inte hitta autentiseringspost för: %s" +#: 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/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash-kontrollsumman stämmer inte för: %s" +#: 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/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "Metoddrivrutinen %s kunde inte hittas." +#: 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/acquire-worker.cc:118 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" +msgid "%s set on hold.\n" +msgstr "%s är satt till manuellt installerad.\n" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Metoden %s startade inte korrekt" +#: 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/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 "" -"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" +#: 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 "Paketcachefilen är skadad" +#: 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 "Denna APT saknar stöd för versionssystemet \"%s\"" - -#: apt-pkg/pkgcache.cc:179 -msgid "The package cache was built for a different architecture" -msgstr "Paketcachen byggdes för en annan arkitektur" - -#: apt-pkg/pkgcache.cc:321 -msgid "Depends" -msgstr "Beroende av" - -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Förberoende av" +msgid "Unable to read the cdrom database %s" +msgstr "Kunde inte läsa cd-rom-databasen %s" -#: apt-pkg/pkgcache.cc:321 -msgid "Suggests" -msgstr "Föreslår" +#: 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:322 -msgid "Recommends" -msgstr "Rekommenderar" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Fel cd-rom" -# "Konfliktar"? -#: apt-pkg/pkgcache.cc:322 -msgid "Conflicts" -msgstr "Står i konflikt med" +#: 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:322 -msgid "Replaces" -msgstr "Ersätter" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Skivan hittades inte." -# "Föråldrar"? -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Föråldrar" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Filen hittades inte" -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Gör sönder" +#: 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/pkgcache.cc:323 -msgid "Enhances" -msgstr "Utökar" +#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 +msgid "Failed to set modification time" +msgstr "Misslyckades ställa in ändringstid" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "viktigt" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "nödvändigt" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Loggar in" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Kunde inte fastställa namnet på partnern" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "valfri" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Kunde inte fastställa det lokala namnet" -#: 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 "Servern nekade anslutningen och sade: %s" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:225 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "Indexfiler av typ \"%s\" stöds inte" +msgid "USER failed, server said: %s" +msgstr "USER misslyckades, servern sade: %s" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Cachen har ett inkompatibelt versionssystem" +#: methods/ftp.cc:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS misslyckades, servern sade: %s" -# 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/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." -#: 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." +#: 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: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:306 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE misslyckades, servern sade: %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." +#: 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/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:350 +msgid "Server closed the connection" +msgstr "Servern stängde anslutningen" -#: 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" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Ett svar spillde bufferten." -#: apt-pkg/pkgcachegen.cc:1211 -#, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kunde inte ta status på källkodspaketlistan %s" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Protokollet skadat" -#: 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:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Kunde inte skapa ett uttag (socket)" -# Bättre ord? -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Samlar filtillhandahållningar" +#: 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/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Kunde inte skriva till %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Misslyckades" -#: 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:718 +msgid "Could not connect passive socket." +msgstr "Kunde inte ansluta passivt uttag (socket)." -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: 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/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Kunde inte binda ett uttag (socket)" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Kunde inte lyssna på uttaget (socket)" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Kunde inte fastställa uttagets namn (socket)" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Kunde inte sända PORT-kommando" -#: 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 "namnbyte misslyckades, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Okänd adressfamilj %u (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Hash-kontrollsumman stämmer inte" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT misslyckades, servern sade: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Storleken stämmer inte" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Felaktig åtgärd %s" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Kunde inte ta emot anslutningen" -#: 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:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problem med att lägga filen till hashtabellen" -#: 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:890 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Kunde inte hämta filen, servern sade \"%s\"" -#: 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:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" -#: 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 "Dataöverföringen misslyckades, servern sade \"%s\"" + +# 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 " -#: apt-pkg/acquire-item.cc:1699 +# Felmeddelande för misslyckad chdir +#: methods/connect.cc:76 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" +msgid "Connecting to %s (%s)" +msgstr "Ansluter till %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 "" -"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 "[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 +# [f]amilj, [t]yp, [p]rotokoll +#: methods/connect.cc:94 #, c-format -msgid "GPG error: %s: %s" -msgstr "GPG-fel: %s: %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/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 "" -"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 "Cannot initiate the connection to %s:%s (%s)." +msgstr "Kunde inte initiera anslutningen till %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 "" +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-item.cc:1991 +#: methods/connect.cc:126 #, 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 connect to %s:%s (%s)." +msgstr "Kunde inte ansluta till %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 "Leverantörsblocket %s saknar fingeravtryck" +msgid "Connecting to %s" +msgstr "Ansluter till %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 "Listkatalogen %spartial saknas." +msgid "Could not resolve '%s'" +msgstr "Kunde inte slå upp \"%s\"" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:205 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arkivkatalogen %spartial saknas." +msgid "Temporary failure resolving '%s'" +msgstr "Temporärt fel vid uppslagning av \"%s\"" -#: apt-pkg/acquire.cc:99 -#, c-format -msgid "Unable to lock directory %s" -msgstr "Kunde inte låsa katalogen %s" +# 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)" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +# Okänd felkod; %i = koden +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Hämtar fil %li av %li (%s återstår)" +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/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Hämtar fil %li av %li" +msgid "Unable to connect to %s:%s:" +msgstr "Kunde inte ansluta till %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 "" -"Vissa indexfiler kunde inte hämtas, de har ignorerats eller så har de gamla " -"använts istället." +"Internt fel: Korrekt signatur men kunde inte fastställa nyckelns " +"fingeravtryck?!" -#: 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" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "Minst en ogiltig signatur träffades på." -#: 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 "" +"Kunde inte köra \"gpgv\" för att verifiera signatur (är gpgv installerad?)" -# "Package" är en sträng i konfigurationsfilen -#: 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 "Ogiltig post i konfigurationsfilen %s, \"Package\"-rubriken saknas" +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 "Förstod inte nåltypen %s" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Okänt fel vid körning av gpgv" -#: 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:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Följande signaturer är ogiltiga:\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 "" -"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\"" +"Följande signaturer kunde inte verifieras för att den öppna nyckeln inte är " +"tillgänglig:\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 "" -"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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Fel vid skrivning till filen" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Avmonterar CD-ROM...\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:586 -#, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Använder cd-rom-monteringspunkten %s\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Fel vid läsning från server" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Väntar på skiva...\n" +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Fel vid skrivning till fil" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Monterar cd-rom...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "\"Select\" misslyckades" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Identifierar... " +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Anslutningen överskred tidsgränsen" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Lagrad etikett: %s \n" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Fel vid skrivning till utdatafil" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Söker efter indexfiler på skivan...\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Väntar på rubriker" -#: 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/server.cc:109 +msgid "Bad header line" +msgstr "Felaktig rubrikrad" -#: 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: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:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "Hittade etiketten \"%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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Namnet är ogiltigt, försök igen.\n" +#: 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:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Denna skiva heter: \n" -"\"%s\"\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:819 -msgid "Copying package lists..." -msgstr "Kopierar paketlistor..." +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Okänt datumformat" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Skriver ny källista\n" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Felaktiga data i huvud" -#: 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:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Anslutningen misslyckades" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, 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." - -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " -"tillbakahållna paket." -#: 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:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:96 +msgid " failed." +msgstr " misslyckades." -#: 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:99 +msgid "Unable to correct dependencies" +msgstr "Kunde inte korrigera beroenden" -#: 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:102 +msgid "Unable to minimize the upgrade set" +msgstr "Kunde inte minimera uppgraderingsuppsättningen" -#: 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:104 +msgid " Done" +msgstr " Färdig" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Kunde inte hitta funktionen \"%s\"" +#: 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: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-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Otillfredsställda beroenden. Prova med -f." + +#: 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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Installerat]" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Installerat]" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +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:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +msgid "The following packages have been kept back:" +msgstr "Följande paket har hållits tillbaka:" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Följande paket kommer att uppgraderas:" + +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Följande paket kommer att NEDGRADERAS:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Följande tillbakahållna paket kommer att ändras:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Rad %lu i källistan %s har (URI)" +msgid "%s (due to %s) " +msgstr "%s (på grund av %s) " -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:675 +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:706 #, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Rad %lu i källistan %s har fel format (dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu att uppgradera, %lu att nyinstallera, " -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:710 #, 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 "%lu reinstalled, " +msgstr "%lu att installera om, " -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:712 #, 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 downgraded, " +msgstr "%lu att nedgradera, " -#: apt-pkg/sourcelist.cc:224 +#: apt-private/private-output.cc:714 #, 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 to remove and %lu not upgraded.\n" +msgstr "%lu att ta bort och %lu att inte uppgradera.\n" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:718 #, c-format -msgid "Opening %s" -msgstr "Öppnar %s" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu är inte helt installerade eller borttagna.\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:740 +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:746 +msgid "[y/N]" +msgstr "[j/N]" -#: 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "J" -#: 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" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: 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-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "Uppdateringskommandot tar inga argument" -#: apt-pkg/deb/dpkgpm.cc:95 +#: apt-private/private-update.cc:90 #, c-format -msgid "Installing %s" -msgstr "Installerar %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:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "Konfigurerar %s" +#: apt-private/private-update.cc:94 +msgid "All packages are up to date." +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#: apt-private/private-show.cc:156 #, c-format -msgid "Removing %s" -msgstr "Tar bort %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:98 -#, c-format -msgid "Completely removing %s" -msgstr "Tar bort hela %s" +#: 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 "Uppmärksammar försvinnandet av %s" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "Internt fel. InstallPackages anropades med trasiga paket!" -#: apt-pkg/deb/dpkgpm.cc:100 -#, c-format -msgid "Running post-installation trigger %s" -msgstr "Kör efterinstallationsutlösare %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." -#. 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-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Internt fel. Sorteringen färdigställdes inte" -#: 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:150 +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: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:157 #, c-format -msgid "Preparing %s" -msgstr "Förbereder %s" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "Behöver hämta %sB/%sB arkiv.\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:162 #, c-format -msgid "Unpacking %s" -msgstr "Packar upp %s" +msgid "Need to get %sB of archives.\n" +msgstr "Behöver hämta %sB arkiv.\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:169 #, c-format -msgid "Preparing to configure %s" -msgstr "Förbereder konfigurering av %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: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:174 #, c-format -msgid "Installed %s" -msgstr "Installerade %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:1002 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing for removal of %s" -msgstr "Förbereder borttagning av %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:1004 -#, c-format -msgid "Removed %s" -msgstr "Tog bort %s" +#: apt-private/private-install.cc:212 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:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Förbereder borttagning av hela %s" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:1010 -#, c-format -msgid "Completely removed %s" -msgstr "Tog bort hela %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:222 +msgid "Yes, do as I say!" +msgstr "Ja, gör som jag säger!" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:224 +#, 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:1069 apt-pkg/deb/dpkgpm.cc:1090 -#, fuzzy, c-format -msgid "Can not write log (%s)" -msgstr "Kunde inte skriva till %s" +# Visas då man svarar nej +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Avbryter." -#: apt-pkg/deb/dpkgpm.cc:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Vill du fortsätta?" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Misslyckades med att hämta vissa filer" -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" +#: apt-private/private-install.cc:322 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" msgstr "" +"Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" +"fix-missing." -#: 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:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing och mediabyte stöds inte för tillfället" -#. 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:331 +msgid "Unable to correct missing packages." +msgstr "Kunde inte korrigera saknade paket." -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Avbryter installationen." + +#: apt-private/private-install.cc:368 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] "" +"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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar att det är " -"ett efterföljande fel från ett tidigare problem." +"Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:501 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 skrevs därför att felmeddelandet indikerar att " -"diskutrymmet är slut" +"Hmm, det verkar som AutoRemover förstörde något som verkligen\n" +"inte skulle hända. Skicka in en felrapport mot paketet 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:504 apt-private/private-install.cc:655 +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:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Internt fel, AutoRemover förstörde något" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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" +"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-private/private-install.cc:519 +#, 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" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:521 #, fuzzy -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" +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:614 +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:1685 +#: apt-private/private-install.cc:616 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 "" -"Ingen apport-rapport skrevs därför att felmeddelandet indikerar ett in-/ut-" -"fel för dpkg" +"Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " +"(eller ange en lösning)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" -"Kunde inte låsa administrationskatalogen (%s). Använder en annan process den?" +"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\"." -#: 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?" +#: apt-private/private-install.cc:661 +msgid "Broken packages" +msgstr "Trasiga paket" -#. 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-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Följande ytterligare paket kommer att installeras:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "Inte låst" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Föreslagna paket:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Rekommenderade paket:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "%lih %limin %lis" +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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 +#: apt-private/private-install.cc:855 #, c-format -msgid "%limin %lis" -msgstr "%limin %lis" +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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "%lis" +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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "Valet %s hittades inte" +msgid "%s is already the newest version.\n" +msgstr "%s är redan den senaste versionen.\n" -#: apt-pkg/contrib/fileutl.cc:190 +#: apt-private/private-install.cc:920 #, 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 "Selected version '%s' (%s) for '%s'\n" +msgstr "Valde version \"%s\" (%s) för \"%s\"\n" -#: 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-install.cc:925 +#, 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: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" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "Kunde inte erhålla låset %s" +#: apt-private/private-install.cc:973 +#, 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: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 "" +"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: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 "VARNING: Följande paket kunde inte autentiseras!" + +#: apt-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Autentiseringsvarning åsidosatt.\n" + +#: 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-private/private-download.cc:50 +msgid "Install these packages without verification?" +msgstr "Installera dessa paket utan verifiering?" + +#: 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:412 +#: 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 "Underprocessen %s råkade ut för ett segmenteringsfel." +# 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:826 -#, c-format -msgid "Sub-process %s received signal %u." -msgstr "Underprocessen %s tog emot signal %u." +# "Get:" = hämtar ny version +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Lä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 "Underprocessen %s svarade med en felkod (%u)" +# "Ign" = hoppar över +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Ign " -#: 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" +# "Err" = fel vid hämtning +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Fel " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "Problem med att stänga gzip-filen %s" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "Hämtade %sB på %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:237 #, c-format -msgid "Could not open file %s" -msgstr "Kunde inte öppna filen %s" +msgid " [Working]" +msgstr " [Arbetar]" -#: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207 +#: apt-private/acqprogress.cc:298 #, c-format -msgid "Could not open file descriptor %d" -msgstr "Kunde inte öppna filhandtag %d" - -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "Misslyckades med att skapa underprocess-IPC" +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/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "Misslyckades med att starta komprimerare " +#. 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 " -#: 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 "läsning, har fortfarande %lu att läsa men ingenting finns kvar" +msgid "Can not read mirror file '%s'" +msgstr "Ingen spegelfil \"%s\" hittades " -#: 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 "skrivning, har fortfarande %lu att skriva men kunde inte" +msgid "No entry found in mirror file '%s'" +msgstr "Ingen spegelfil \"%s\" hittades " -#: apt-pkg/contrib/fileutl.cc:1915 +#: methods/mirror.cc:445 #, c-format -msgid "Problem closing the file %s" -msgstr "Problem med att stänga filen %s" +msgid "[Mirror: %s]" +msgstr "[Spegel: %s]" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "Problem med att byta namn på filen %s till %s" +#: 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/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "Problem med att avlänka filen %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Anslutningen stängdes i förtid" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "Problem med att synkronisera filen" +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "Felaktig standardinställning!" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... Fel!" +#: 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/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... Färdig" +#: 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?" + +# 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/progress.cc:181 -msgid "..." +#: 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" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... Färdig" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Kan inte utföra mmap på en tom fil" +#: 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:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Kunde inte duplicera filhandtag %i" +#: dselect/install:105 +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" -#: 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" +#: dselect/update:30 +msgid "Merging available information" +msgstr "Sammanfogar tillgänglig information" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "Kunde inte stänga mmap" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode anropat på fortfarande länkad nod" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "Kunde inte synkronisera mmap" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "Misslyckades med att hitta hash-elementet!" -#: 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" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "Misslyckades med att allokera omdirigering" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "Misslyckades med att kapa av filen" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "Internt fel i 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 "" -"Dynamisk MMap fick slut på utrymme. Öka storleken för APT::Cache-Start. " -"Aktuellt värde: %lu. (man 5 apt.conf)" +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/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." -msgstr "" -"Kunde inte öka storleken för MMap eftersom gränsen på %lu byte redan har " -"uppnåtts." - -#: apt-pkg/contrib/mmap.cc:449 -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." +msgid "Double add of diversion %s -> %s" +msgstr "Omdirigeringen %s -> %s inlagd två gånger" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "Kunde inte ta status på monteringspunkten %s." - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "Kunde inte ta status på cd-romen." +msgid "Duplicate conf file %s/%s" +msgstr "Duplicerad konfigurationsfil %s/%s" -#: apt-pkg/contrib/configuration.cc:519 +#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "Okänd typförkortning: \"%c\"" +msgid "The path %s is too long" +msgstr "Sökvägen %s är för lång" -#: apt-pkg/contrib/configuration.cc:633 +#: apt-inst/extract.cc:132 #, c-format -msgid "Opening configuration file %s" -msgstr "Öppnar konfigurationsfilen %s" +msgid "Unpacking %s more than once" +msgstr "Packar upp %s flera gånger" -#: apt-pkg/contrib/configuration.cc:801 +#: apt-inst/extract.cc:142 #, c-format -msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfel %s:%u: Block börjar utan namn." +msgid "The directory %s is diverted" +msgstr "Katalogen %s är omdirigerad" -#: apt-pkg/contrib/configuration.cc:820 +#: apt-inst/extract.cc:152 #, c-format -msgid "Syntax error %s:%u: Malformed tag" -msgstr "Syntaxfel %s:%u: Felformat märke" +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:837 -#, c-format -msgid "Syntax error %s:%u: Extra junk after value" -msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde" +#: 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-pkg/contrib/configuration.cc:877 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 "Failed to stat %s" +msgstr "Misslyckades med att ta status på %s" -#: apt-pkg/contrib/configuration.cc:884 +#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 #, c-format -msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar" +msgid "Failed to rename %s to %s" +msgstr "Misslyckades med att byta namn på %s till %s" -#: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893 +#: apt-inst/extract.cc:249 #, c-format -msgid "Syntax error %s:%u: Included from here" -msgstr "Syntaxfel %s:%u: Inkluderad härifrån" +msgid "The directory %s is being replaced by a non-directory" +msgstr "Katalogen %s ersätts av en icke-katalog" -#: 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-inst/extract.cc:289 +msgid "Failed to locate node in its hash bucket" +msgstr "Misslyckades med att hitta noden i sin hashkorg" -#: 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-inst/extract.cc:293 +msgid "The path is too long" +msgstr "Sökvägen är för lång" -#: apt-pkg/contrib/configuration.cc:950 +#: apt-inst/extract.cc:421 #, 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 "Overwrite package match with no version for %s" +msgstr "Skriv över paketträff utan version för %s" -#. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/contrib/gpgv.cc:72 +#: apt-inst/extract.cc:438 #, c-format -msgid "No keyring installed in %s." -msgstr "Ingen nyckelring installerad i %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:121 +#: apt-inst/extract.cc:498 #, c-format -msgid "Command line option '%c' [from %s] is not known." -msgstr "Kommandoradsflaggan \"%c\" [från %s] är inte känd." +msgid "Unable to stat %s" +msgstr "Kunde inte ta status på %s" -#: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155 -#: apt-pkg/contrib/cmndline.cc:163 +#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 #, c-format -msgid "Command line option %s is not understood" -msgstr "Förstår inte kommandoradsflaggan %s" +msgid "Failed to write file %s" +msgstr "Misslyckades med att skriva filen %s" -#: apt-pkg/contrib/cmndline.cc:168 +#: apt-inst/dirstream.cc:105 #, c-format -msgid "Command line option %s is not boolean" -msgstr "Kommandoradsflaggan %s är inte boolsk" +msgid "Failed to close file %s" +msgstr "Misslyckades med att stänga filen %s" -#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 +#: 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 argument." -msgstr "Flaggan %s kräver ett argument." +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:243 apt-pkg/contrib/cmndline.cc:249 +#: apt-inst/deb/debfile.cc:132 #, c-format -msgid "Option %s: Configuration item specification must have an =." -msgstr "" -"Flaggan %s: Den angivna konfigurationsposten måste innehålla ett =." +msgid "Internal error, could not locate member %s" +msgstr "Internt fel, kunde inta hitta delen %s" -#: apt-pkg/contrib/cmndline.cc:278 -#, c-format -msgid "Option %s requires an integer argument, not '%s'" -msgstr "Flaggan %s kräver ett heltalsargument, inte \"%s\"" +#: apt-inst/deb/debfile.cc:227 +msgid "Unparsable control file" +msgstr "Kunde inte tolka control-filen" -#: apt-pkg/contrib/cmndline.cc:309 -#, c-format -msgid "Option '%s' is too long" -msgstr "Flaggan \"%s\" är för lång" +#: apt-inst/contrib/arfile.cc:76 +msgid "Invalid archive signature" +msgstr "Ogiltig arkivsignatur" -#: apt-pkg/contrib/cmndline.cc:341 +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3250,12 +3263,7 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Kunde inte ta status på %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan inte ta reda på debconf-version. Är debconf installerat?" @@ -3373,17 +3381,17 @@ msgstr "Inga val träffades" msgid "Some files are missing in the package file group `%s'" msgstr "Några filer saknas i paketfilsgruppen \"%s\"" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB var skadad, filen omdöpt till %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB är gammal, försöker uppgradera %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3391,108 +3399,108 @@ msgstr "" "DB-formatet är ogiltigt. Ta bort och återskapa databasen om du uppgraderar " "från en äldre version av apt." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Kunde inte öppna DB-filen %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Misslyckades med att läsa länken %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arkivet har ingen styrpost" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Kunde inte få tag i någon markör" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "V: Kunde inte läsa katalogen %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "V: Kunde inte ta status på %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "F: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "V: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "F: Felen gäller filen " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Misslyckades med att slå upp %s" # ??? -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Trädvandring misslyckades" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Misslyckades med att öppna %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " Avlänka %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Misslyckades med att läsa länken %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Misslyckades med att länka ut %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Misslyckades med att länka %s till %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Avlänkningsgränsen på %sB nåddes.\n" # Fält vid namn "Package" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arkivet har inget package-fält" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen post i override-filen\n" # parametrar: paket, ny, gammal -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ansvarig för paketet %s är %s ej %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen källåsidosättningspost\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har heller ingen binär åsidosättningspost\n" diff --git a/po/th.po b/po/th.po index 1fb63880f..6988031be 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2014-04-20 09:38+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -18,3166 +18,3179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +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 "ไม่พบแพกเกจ %s" +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "แฟ้มแคชของแพกเกจเป็นคนละรุ่นกัน" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "แฟ้มแพกเกจ:" +#: apt-pkg/pkgcache.cc:164 +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" -msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ" +#: apt-pkg/pkgcache.cc:171 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "แพกเกจที่ถูกตรึง:" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(ไม่พบ)" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "ต้องใช้" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " ที่ติดตั้งอยู่: " +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "ต้องใช้ขณะติดตั้ง" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " รุ่นที่ติดตั้งได้: " +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "แนะนำ" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(ไม่มี)" +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "ควรใช้ร่วมกับ" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " การตรึงแพกเกจ: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "ขัดแย้งกับ" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " ตารางรุ่น:" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +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-pkg/pkgcache.cc:326 +msgid "Obsoletes" +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 [ตัวเลือก] 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-pkg/pkgcache.cc:326 +msgid "Breaks" +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:326 +msgid "Enhances" +msgstr "เพิ่มความสามารถ" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "สำคัญ" -#: cmdline/apt-cdrom.cc:139 -#, 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'" +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "จำเป็น" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด" +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "มาตรฐาน" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ" +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +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-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "ส่วนเสริม" -#: cmdline/apt-get.cc:245 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "ไม่พบแพกเกจสำหรับสถาปัตยกรรม '%s'" +msgid "Index file type '%s' is not supported" +msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'" -#: cmdline/apt-get.cc:327 +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 #, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "ไม่พบแพกเกจ '%s' ที่มีรุ่นเป็น '%s'" +msgid "Regex compilation error - %s" +msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" -#: cmdline/apt-get.cc:330 -#, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "ไม่พบแพกเกจ '%s' ที่มีชุดจัดแจกเป็น '%s'" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน" -#: cmdline/apt-get.cc:367 +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" +msgid "Error occurred while processing %s (%s%d)" +msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (%s%d)" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "ไม่พบรุ่น '%s' ของแพกเกจ '%s'" +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: cmdline/apt-get.cc:454 +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว" + +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว" + +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" + +#: apt-pkg/pkgcachegen.cc:598 #, 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:865 +#: apt-pkg/pkgcachegen.cc:1233 #, c-format -msgid "%s set to manually installed.\n" -msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" +msgid "Couldn't stat source package list %s" +msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "กำลังอ่านรายชื่อแพกเกจ" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, 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:1530 apt-pkg/pkgcachegen.cc:1537 +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 "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "เตรียมรับคำตอบ" + +#: 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 "เรียกกลไกการแก้ปัญหาภายนอก" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, 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:175 +msgid "Hash Sum mismatch" +msgstr "ผลรวมแฮชไม่ตรงกัน" + +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "ขนาดไม่ตรงกัน" + +#: apt-pkg/acquire-item.cc:185 +msgid "Invalid file format" +msgstr "รูปแบบของแฟ้มไม่ถูกต้อง" + +#: apt-pkg/acquire-item.cc:1679 #, 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:1697 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "ไม่พบผลรวมแฮชสำหรับ '%s' ในแฟ้ม Release" + +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n" + +#: apt-pkg/acquire-item.cc:1775 #, 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:1797 #, 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:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1827 #, 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:1837 apt-pkg/acquire-item.cc:1842 #, 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:1972 #, 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:2038 #, 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:2074 #, 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:314 -msgid "Download complete and in download only mode" -msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, c-format +msgid "List directory %spartial is missing." +msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial" -#: cmdline/apt-get.cc:950 +#: apt-pkg/acquire.cc:92 #, 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:100 #, 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:925 #, 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:927 #, 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 "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน" + +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย" -#: cmdline/apt-get.cc:1054 +#: 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:304 apt-pkg/packagemanager.cc:911 #, 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:504 apt-pkg/packagemanager.cc:534 #, 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:584 #, 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 "กำลังเลิกเมานท์ซีดีรอม...\n" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" +msgid "Using CD-ROM mount point %s\n" +msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" +#: 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 "กำลังตรวจสอบชื่อแผ่น... " -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: 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 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 "ดาวน์โหลดไม่สำเร็จ" +"พบดัชนีแพกเกจ %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" -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" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "ไม่พบแฟ้มแพกเกจใดๆ บางทีแผ่นนี้อาจจะไม่ใช่แผ่นเดเบียน หรือสถาปัตยกรรมอาจไม่ถูกต้อง" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\n" +msgid "Found label '%s'\n" +msgstr "พบชื่อแผ่น '%s'\n" -#: cmdline/apt-mark.cc:74 -#, c-format -msgid "%s was already set to manually 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:76 +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบอัตโนมัติอยู่ก่อนแล้ว\n" +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"แผ่นนี้เรียกชื่อว่า:\n" +"'%s'\n" -#: cmdline/apt-mark.cc:241 -#, 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 -#, 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 แต่ตัวโพรเซสไม่อยู่" +#: 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 ไม่สำเร็จ คุณเป็น 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 "" -"วิธีใช้: 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)" +"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 "" -"วิธีใช้: 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" +"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " +"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: 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-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 -#, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่" +#: 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 "stat ไม่สำเร็จ" +#: 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:169 +#, 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:269 +#, 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:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "ไม่พบรุ่น '%s' ของ '%s'" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "ไม่พบแพกเกจ %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:604 #, 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:610 #, 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:616 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" +msgid "Couldn't find any package by glob '%s'" +msgstr "ไม่พบแพกเกจที่ตรงกับ glob '%s'" -#: methods/ftp.cc:252 +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "ไม่สามารถเลือกรุ่นต่างๆ ของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, c-format msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." -msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"ไม่สามารถเลือกรุ่นที่ติดตั้งไว้หรือรุ่นสำหรับติดตั้งของแพกเกจ '%s' ได้ เนื่องจากไม่มีทั้งสองอย่าง" -#: methods/ftp.cc:280 +#: apt-pkg/cacheset.cc:648 #, 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:656 #, 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 "ไม่สามารถเลือกรุ่นสำหรับติดตั้งของแพกเกจ '%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:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "ไม่สามารถเลือกรุ่นที่ติดตั้งไว้ของแพกเกจ '%s' ได้ เนื่องจากแพกเกจไม่ได้ติดตั้งไว้" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ" +#: apt-pkg/indexrecords.cc:83 +#, 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:91 +#, 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:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "มีความเสียหายของโพรโทคอล" +#: apt-pkg/indexrecords.cc:149 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %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:168 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %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 +#, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย" +#: apt-pkg/sourcelist.cc:170 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([ตัวเลือก] แจงไม่ผ่าน)" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -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:718 -msgid "Could not connect passive socket." -msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" +#: 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:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" +#: apt-pkg/sourcelist.cc:190 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ ([%s] ไม่มีคีย์)" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "ไม่สามารถ bind ซ็อกเก็ต" +#: 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 ไม่มีค่า)" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)" -#: 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 "ไม่สามารถส่งคำสั่ง PORT" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)" -#: 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 "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %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 ผิดรูปแบบ (ชนิด)" -#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -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:890 +#: apt-pkg/sourcelist.cc:416 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'" +msgid "Type '%s' is not known on stanza %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/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "กำลังติดตั้ง %s" -#: 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 "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%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 +#, 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 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "System error resolving '%s:%s'" -msgstr "เกิดข้อผิดพลาดในระบบขณะเปิดหาที่อยู่ '%s:%s'" +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:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "ioctl(TIOCGWINSZ) ล้มเหลว" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, 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?)" -msgstr "ไม่สามารถเรียก 'gpgv' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gpgv ไว้หรือไม่?)" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "ได้เมานท์ /dev/pts ไว้หรือไม่?" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "stdout เป็นเทอร์มินัลหรือไม่?" + +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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?)" -msgstr "" -"แฟ้มที่เซ็นกำกับครอบข้อความมีเนื้อหาไม่ถูกต้อง ได้รับผลลัพธ์ " -"'%s' (เครือข่ายต้องยืนยันตัวบุคคลหรือไม่?)" +msgid "Waited for %s but it wasn't there" +msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "ปฏิบัติการถูกขัดจังหวะก่อนที่จะสามารถทำงานเสร็จ" -#: 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" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้" - -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "ไม่มีการเขียนรายงาน apport เพราะถึงขีดจำกัด MaxReports แล้ว" -#: 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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "มีปัญหาความขึ้นต่อกัน - จะทิ้งไว้โดยไม่ตั้งค่า" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" +#: apt-pkg/deb/dpkgpm.cc:1632 +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:1638 +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:1645 +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:1652 apt-pkg/deb/dpkgpm.cc:1658 +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:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"ไม่มีการเขียนรายงาน apport เพราะข้อความข้อผิดพลาดระบุว่าเกิดจากปัญหาการอ่าน/เขียนของ dpkg" -#: 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 หรือเปล่า?" -#: 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 "dpkg ถูกขัดจังหวะ คุณต้องเรียก '%s' เองเพื่อแก้ปัญหา" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง" +#: 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 ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง" +#. 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:196 -msgid "This HTTP server has broken range support" -msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ 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:220 -msgid "Unknown date format" -msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%liนาที %liวิ" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "ข้อมูลส่วนหัวผิดพลาด" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liวิ" -#: 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:191 +#, 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:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "ไม่สามารถเปิดแฟ้มล็อค %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "เสร็จแล้ว" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "กำลังเรียงลำดับ" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "ไม่สามารถล็อค %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "กำลังแสดงรายชื่อ" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "ไม่สามารถสร้างรายชื่อแฟ้มได้ เนื่องจาก '%s' ไม่ใช่ไดเรกทอรี" -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:395 #, 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 "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่ใช่แฟ้มธรรมดา" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากไม่มีส่วนขยายในชื่อแฟ้ม" -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " ล้มเหลว" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากส่วนขยายในชื่อแฟ้มไม่สามารถใช้การได้" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "โพรเซสย่อย %s ได้รับสัญญาณ %u" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " เสร็จแล้ว" +#: apt-pkg/contrib/fileutl.cc:847 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:108 -msgid "You might want to run 'apt-get -f install' to correct these." -msgstr "คุณอาจต้องเรียก 'apt-get -f install' เพื่อแก้ปัญหาเหล่านี้" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "โพรเซสย่อย %s จบการทำงานกะทันหัน" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "เกิดปัญหาขณะปิดแฟ้ม gzip %s" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1139 #, c-format -msgid "[installed,upgradable to: %s]" -msgstr "[ติดตั้งอยู่,สามารถปรับรุ่นเป็น: %s]" +msgid "Could not open file %s" +msgstr "ไม่สามารถเปิดแฟ้ม %s" -#: apt-private/private-output.cc:237 -msgid "[installed,local]" -msgstr "[ติดตั้งอยู่,ในเครื่อง]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "ไม่สามารถเปิด file destriptor %d" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "[ติดตั้งอยู่,ถอดถอนอัตโนมัติได้]" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ" -#: apt-private/private-output.cc:242 -msgid "[installed,automatic]" -msgstr "[ติดตั้งอยู่,อัตโนมัติ]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ" -#: apt-private/private-output.cc:244 -msgid "[installed]" -msgstr "[ติดตั้งอยู่]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "การอ่านข้อมูลผิดพลาด" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1552 #, c-format -msgid "[upgradable from: %s]" -msgstr "[สามารถปรับรุ่นจาก: %s]" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "[ค่าตั้งตกค้าง]" +msgid "read, still have %llu to read but none left" +msgstr "read: ยังเหลือ %llu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 #, c-format -msgid "but %s is installed" -msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s" +msgid "write, still have %llu to write but couldn't" +msgstr "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "but %s is to be installed" -msgstr "แต่รุ่นที่จะติดตั้งคือ %s" +msgid "Problem closing the file %s" +msgstr "เกิดปัญหาขณะปิดแฟ้ม %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "แต่ไม่สามารถติดตั้งได้" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "เกิดปัญหาขณะเปลี่ยนชื่อแฟ้ม %s ไปเป็น %s" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "เกิดปัญหาขณะลบแฟ้ม %s" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "แต่ได้ติดตั้งไว้" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "เกิดปัญหาขณะ sync แฟ้ม" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, c-format +msgid "Unable to mkstemp %s" +msgstr "ไม่สามารถ mkstemp %s" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " หรือ" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... ผิดพลาด!" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... เสร็จแล้ว" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "จะติดตั้งแพกเกจ *ใหม่* ต่อไปนี้:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "..." -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -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:550 -msgid "The following packages have been kept back:" -msgstr "จะคงรุ่นแพกเกจต่อไปนี้:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "ไม่สามารถ mmap แฟ้มเปล่า" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "ไม่สามารถทำซ้ำ file descriptor %i" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:" +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "ไม่สามารถสร้าง mmap ขนาด %llu ไบต์" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "ไม่สามารถปิด mmap" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "ไม่สามารถปรับ mmap ให้ตรงกัน" + +#: 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:675 +#: 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:706 +#: 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-private/private-output.cc:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "ติดตั้งซ้ำ %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:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "ปรับรุ่นลง %lu, " +msgid "Unable to stat the mount point %s" +msgstr "ไม่สามารถ stat จุดเมานท์ %s" -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "ไม่สามารถ stat ซีดีรอม" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:521 #, 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:740 -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:746 -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:757 -msgid "Y" -msgstr "Y" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'" -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "N" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "ขณะเปิดแฟ้มค่าตั้ง %s" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "Regex compilation error - %s" -msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:839 #, 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 after value" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:886 #, 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 "Syntax error %s:%u: Too many nested includes" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "ไม่ใช่แพกเกจจริง (เสมือน)" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" +#: apt-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: directive 'clear' ต้องมีอาร์กิวเมนต์เป็นลำดับชั้นตัวเลือก" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม" -#: 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: %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:155 +#: 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:160 +#: 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 "ต้องดาวน์โหลดแพกเกจ %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:167 +#: 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:172 +#: 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:200 +#: 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" - -#: 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-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 ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" - -#. 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!" +msgid "Option %s: Configuration item specification must have an =." +msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/cmndline.cc:278 #, 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-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "เลิกทำ" - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่?" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "ตัวเลือก '%s' ยาวเกินไป" -#: 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/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:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "ไม่รู้จักคำสั่ง %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -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:330 -msgid "Aborting install." -msgstr "จะล้มเลิกการติดตั้ง" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +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" -"โดยแพกเกจอื่นแล้ว:" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "จำนวนโครงสร้างแพกเกจทั้งหมด: " -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " แพกเกจปกติ: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " แพกเกจเสมือนแท้ๆ: " -#: 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 "" -"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n" -"กรุณารายงานบั๊กนี้ของแพกเกจ apt" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +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 "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " แพกเกจเสมือนผสม: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " แพกเกจที่ขาดหาย: " -#: 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] "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "จำนวนรุ่นที่แตกต่างกันทั้งหมด: " -#: 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" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +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] "ใช้ 'apt-get autoremove' เพื่อถอดถอนแพกเกจดังกล่าวได้" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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:372 +msgid "Total ver/file relations: " +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:374 +msgid "Total Desc/File relations: " +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 "" -"ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n" -"หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" -"ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "จำนวนผังการตระเตรียมทั้งหมด: " -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "แพกเกจมีปัญหา" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "จำนวนสตริงทั้งหมด: " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: " -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "แพกเกจที่แนะนำ:" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "พื้นที่สำรองทั้งหมด: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "แพกเกจที่ควรใช้ร่วมกัน:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "พื้นที่ที่นับรวมทั้งหมด: " -#: apt-private/private-install.cc:825 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" +msgid "Package file %s is out of sync." +msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง" -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "จะข้าม %s เนื่องจากแพกเกจไม่ได้ติดตั้งไว้ และคำสั่งมีเพียงการปรับรุ่นเท่านั้น\n" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "คุณต้องระบุแพตเทิร์นสำหรับค้นหาอย่างน้อยหนึ่งแพตเทิร์น" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark showauto' แทน" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว\n" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "แฟ้มแพกเกจ:" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "เลือกรุ่น '%s' (%s) สำหรับ '%s' แล้ว อันเนื่องมาจาก '%s'\n" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ" -#. 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 "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน คุณหมายถึง '%s' หรือเปล่า?\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "แพกเกจที่ถูกตรึง:" -#: apt-private/private-install.cc:947 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "แพกเกจ '%s' ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not 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:1638 +msgid " Installed: " +msgstr " ที่ติดตั้งอยู่: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " รุ่นที่ติดตั้งได้: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +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:1672 +msgid " Package pin: " +msgstr " การตรึงแพกเกจ: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่?" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " ตารางรุ่น:" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45 +#: cmdline/apt-sortpkgs.cc:147 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "ไม่สามารถดาวน์โหลด %s %s\n" - -#: apt-private/private-sources.cc:58 -#, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "แจง %s ไม่สำเร็จ จะแก้ไขอีกครั้งหรือไม่? " - -#: apt-private/private-sources.cc:70 -#, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." -msgstr "แฟ้ม '%s' ของคุณมีการเปลี่ยนแปลง กรุณาเรียก 'apt-get update'" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "ค้นทั่วทั้งเนื้อความ" +#: cmdline/apt-cache.cc:1801 +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:66 -msgid "Hit " -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:90 -msgid "Get:" -msgstr "ดึง:" +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "ข้าม " +#: cmdline/apt-cdrom.cc:139 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "ไม่สามารถเมานท์ '%s' ที่ '%s'" -#: apt-private/acqprogress.cc:125 -msgid "Err " -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 "" +"การตรวจซีดีรอมอัตโนมัติไม่พบซีดีรอมใดที่จุดเมานท์ปริยาย\n" +"คุณอาจลองใช้ตัวเลือก --cdrom เพื่อกำหนดจุดเมานท์ของซีดีรอมได้\n" +"อ่านข้อมูลเพิ่มเติมเกี่ยวกับการตรวจซีดีรอมอัตโนมัติและจุดเมานท์ได้จาก 'man apt-cdrom'" -#: 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" +"วิธีใช้: 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" -#. 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 "ไม่สามารถอ่าน %s" +msgid "Can not find a package for architecture '%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:327 #, c-format -msgid "Unable to change to %s" -msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" +msgid "Can not find a package '%s' with version '%s'" +msgstr "ไม่พบแพกเกจ '%s' ที่มีรุ่นเป็น '%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 "ไม่พบแฟ้มแหล่งสำเนา '%s'" +msgid "Can not find a package '%s' with release '%s'" +msgstr "ไม่พบแพกเกจ '%s' ที่มีชุดจัดแจกเป็น '%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 "ไม่สามารถอ่านแฟ้มแหล่งสำเนา '%s'" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, c-format -msgid "No entry found in mirror file '%s'" -msgstr "ไม่พบรายการในแฟ้มแหล่งสำเนา '%s'" +msgid "Can not find version '%s' of package '%s'" +msgstr "ไม่พบรุ่น '%s' ของแพกเกจ '%s'" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, 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 ไปยังโพรเซสย่อย" +msgid "Couldn't find package %s" +msgstr "ไม่พบแพกเกจ %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" -#: dselect/install:33 -msgid "Bad default setting!" -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: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: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' แทน" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "คุณต้องการจะลบแฟ้ม .deb ต่างๆ ที่ได้ดาวน์โหลดมาก่อนหน้านี้หรือไม่?" +#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" -#: dselect/install:102 -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %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" -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" +"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" +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:839 #, 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:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, 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:884 #, 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:893 #, 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:898 #, 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:904 #, 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:922 +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:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" + +#: cmdline/apt-get.cc:952 #, c-format -msgid "Failed to stat %s" -msgstr "stat %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:964 #, 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:965 #, 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 "หาโหนดใน bucket ของแฮชไม่พบ" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "พาธยาวเกินไป" +#: cmdline/apt-get.cc:1012 +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:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1056 #, 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::Architectures ของ apt.conf(5)" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Unable to stat %s" -msgstr "ไม่สามารถ stat %s" +msgid "Unable to get build-dependency information for %s" +msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:1126 #, c-format -msgid "Failed to write file %s" -msgstr "ไม่สามารถเขียนแฟ้ม %s" +msgid "%s has no build depends.\n" +msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" -#: apt-inst/dirstream.cc:105 +#: cmdline/apt-get.cc:1296 #, 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:1314 #, 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:1337 #, 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 "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1376 #, 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 "อ่านข้อมูลส่วนหัวของแฟ้มจัดเก็บไม่สำเร็จ" +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:1382 +#, 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:1405 +#, 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:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s" +msgid "Changelog for %s (%s)" +msgstr "ปูมการแก้ไขสำหรับ %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "ไม่สามารถ stat %s" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "มอดูลที่รองรับ:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "ความคืบหน้า: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "กำลังเรียก dpkg" +#: cmdline/apt-helper.cc:35 +msgid "Must specify at least one pair url/filename" +msgstr "ต้องระบุคู่ URL, ชื่อแฟ้ม อย่างน้อยหนึ่งคู่" -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "ไม่รองรับระบบแพกเกจ '%s'" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "ดาวน์โหลดไม่สำเร็จ" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -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-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:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records.\n" -msgstr "เขียนแล้ว %i ระเบียน\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s ไม่สามารถทำเครื่องหมายได้ เพราะไม่ได้ติดตั้งไว้\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 "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบเลือกเองอยู่ก่อนแล้ว\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 "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s ถูกกำหนดให้เป็นการติดตั้งแบบอัตโนมัติอยู่ก่อนแล้ว\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 "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" +msgid "%s was already set on hold.\n" +msgstr "%s ถูกกำหนดให้คงรุ่นอยู่ก่อนแล้ว\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "ไม่พบระเบียนยืนยันความแท้สำหรับ: %s" +msgid "%s was already not hold.\n" +msgstr "%s ไม่ได้คงรุ่นอยู่ก่อนแล้ว\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Hash mismatch for: %s" -msgstr "แฮชไม่ตรงกันสำหรับ: %s" +msgid "%s set on hold.\n" +msgstr "กำหนด %s ให้คงรุ่นแล้ว\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 "ไม่พบไดรเวอร์สำหรับวิธีการ %s" +msgid "Canceled hold on %s.\n" +msgstr "ยกเลิกการคงรุ่นของ %s แล้ว\n" -#: apt-pkg/acquire-worker.cc:118 -#, c-format -msgid "Is the package %s installed?" -msgstr "ได้ติดตั้งแพกเกจ %s ไว้หรือไม่?" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "เรียกทำงาน dpkg ไม่สำเร็จ คุณเป็น root หรือเปล่า?" -#: apt-pkg/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "ไม่สามารถเรียกทำงานวิธีการ %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." +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)" + +#: 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/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' แล้วกด 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 "แฟ้มแคชของแพกเกจเสียหาย" +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-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้" -#: 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 "ซีดีรอมผิดแผ่น" -#: 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 "ควรใช้ร่วมกับ" +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)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" +msgid "Login script command '%s' failed, server said: %s" +msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions 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:263 -msgid "Wow, you exceeded the number of descriptions 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:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" +#: 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" -msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" +#: 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" -msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %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 "กำลังอ่านรายชื่อแพกเกจ" +#: 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" -msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" +#: 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 "ไม่สามารถเขียนลงแฟ้ม %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "ล้มเหลว" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "ส่งสภาวการณ์ไปยังกลไกการแก้ปัญหา" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "ส่งคำสั่งไปยังกลไกการแก้ปัญหา" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "ไม่สามารถ bind ซ็อกเก็ต" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "เตรียมรับคำตอบ" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "เรียกกลไกการแก้ปัญหาภายนอก" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "ไม่สามารถส่งคำสั่ง PORT" -#: 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 "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)" +msgid "Unknown address family %u (AF_*)" +msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "ผลรวมแฮชไม่ตรงกัน" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "ขนาดไม่ตรงกัน" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล" -#: apt-pkg/acquire-item.cc:173 -msgid "Invalid file format" -msgstr "รูปแบบของแฟ้มไม่ถูกต้อง" +#: 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)" -msgstr "" -"ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " -"หรือแฟ้มผิดรูปแบบ)" +#: 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 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "ไม่พบผลรวมแฮชสำหรับ '%s' ในแฟ้ม Release" +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 "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\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 "" -"แฟ้ม Release สำหรับ %s หมดอายุแล้ว (ตั้งแต่ %s ที่แล้ว) จะไม่ใช้รายการปรับรุ่นต่างๆ " -"ของคลังแพกเกจนี้" +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 คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)" +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/acquire-item.cc:1933 +#: methods/connect.cc:94 #, c-format -msgid "Can't find a source to download version '%s' of '%s'" -msgstr "ไม่พบแหล่งที่จะดาวน์โหลดรุ่น '%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:1991 +#: methods/connect.cc:100 #, c-format -msgid "" -"The package index files are corrupted. No Filename: field for package %s." -msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" -#: apt-pkg/vendorlist.cc:85 +#: methods/connect.cc:108 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ" +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" -#: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829 +#: methods/connect.cc:126 #, c-format -msgid "List directory %spartial is missing." -msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial" +msgid "Could not connect to %s:%s (%s)." +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)" -#: apt-pkg/acquire.cc:91 +#. 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 "Archives directory %spartial is missing." -msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial" +msgid "Connecting to %s" +msgstr "เชื่อมต่อไปยัง %s" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Unable to lock directory %s" -msgstr "ไม่สามารถล็อคไดเรกทอรี %s" +msgid "Could not resolve '%s'" +msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" -#. only show the ETA if it makes sense -#. two days -#: apt-pkg/acquire.cc:899 +#: methods/connect.cc:205 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)" +msgid "Temporary failure resolving '%s'" +msgstr "เกิดความล้มเหลวชั่วคราวขณะเปิดหาที่อยู่ '%s'" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:209 #, 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 "System error resolving '%s:%s'" +msgstr "เกิดข้อผิดพลาดในระบบขณะเปิดหาที่อยู่ '%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" -msgstr "ค่า '%s' ไม่สามารถใช้กับ APT::Default-Release ได้ เนื่องจากรุ่นดังกล่าวไม่มีในแหล่ง" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%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" -msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง %s: ไม่มีข้อมูลส่วนหัว 'Package'" +msgid "Unable to connect to %s:%s:" +msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "ไม่เข้าใจชนิดการตรึง %s" +#: methods/gpgv.cc:168 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!" -#: apt-pkg/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง" +#: methods/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +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)" +"แฟ้มที่เซ็นกำกับครอบข้อความมีเนื้อหาไม่ถูกต้อง ได้รับผลลัพธ์ " +"'%s' (เครือข่ายต้องยืนยันตัวบุคคลหรือไม่?)" -#: 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." -msgstr "" -"การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว " -"อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ " -"ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย " -"แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\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 "กำลังเลิกเมานท์ซีดีรอม...\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 "กำลังใช้จุดเมานท์ซีดีรอม %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 "กำลังเมานท์ซีดีรอม...\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 "select ไม่สำเร็จ" -#: 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 "ไม่พบแฟ้มแพกเกจใดๆ บางทีแผ่นนี้อาจจะไม่ใช่แผ่นเดเบียน หรือสถาปัตยกรรมอาจไม่ถูกต้อง" +#: 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 ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง" -#: 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 มาไม่ถูกต้อง" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ 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:496 +msgid "Bad header data" +msgstr "ข้อมูลส่วนหัวผิดพลาด" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "เชื่อมต่อไม่สำเร็จ" -#: apt-pkg/algorithms.cc:265 +#: methods/server.cc:572 #, c-format msgid "" -"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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " -"อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" +#: methods/server.cc:692 +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:123 +msgid "Listing" +msgstr "กำลังแสดงรายชื่อ" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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] "มีอีก %i รุ่น กรุณาใช้ตัวเลือก '-a' หากต้องการดูเพิ่ม" -#: 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 -#, 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 -#, c-format -msgid "Couldn't find any package by glob '%s'" -msgstr "ไม่พบแพกเกจที่ตรงกับ glob '%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:233 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "ไม่สามารถเลือกรุ่นต่างๆ ของแพกเกจ '%s' ได้ เนื่องจากเป็นแพกเกจเสมือนอย่างแท้จริง" +msgid "[installed,upgradable to: %s]" +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:237 +msgid "[installed,local]" +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:240 +msgid "[installed,auto-removable]" +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:242 +msgid "[installed,automatic]" +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:244 +msgid "[installed]" +msgstr "[ติดตั้งอยู่]" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:248 #, c-format -msgid "Unable to parse Release file %s" -msgstr "ไม่สามารถแจงแฟ้ม Release %s" +msgid "[upgradable from: %s]" +msgstr "[สามารถปรับรุ่นจาก: %s]" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "ไม่มีหัวข้อย่อยในแฟ้ม Release %s" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "[ค่าตั้งตกค้าง]" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:434 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "ไม่มีรายการแฮชในแฟ้ม Release %s" +msgid "but %s is installed" +msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s" -#: apt-pkg/indexrecords.cc:130 +#: apt-private/private-output.cc:436 #, c-format -msgid "Invalid 'Valid-Until' entry in Release file %s" -msgstr "รายการ 'Valid-Until' ไม่ถูกต้องในแฟ้ม Release %s" +msgid "but %s is to be installed" +msgstr "แต่รุ่นที่จะติดตั้งคือ %s" -#: apt-pkg/indexrecords.cc:149 -#, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "รายการ 'Date' ไม่ถูกต้องในแฟ้ม Release %s" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +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:445 +msgid "but it is a virtual package" +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:448 +msgid "but it is not installed" +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:448 +msgid "but it is not going to be installed" +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:453 +msgid " or" +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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +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:502 +msgid "The following NEW packages will be installed:" +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:528 +msgid "The following packages will be REMOVED:" +msgstr "จะ *ลบ* แพกเกจต่อไปนี้:" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)" +#: apt-private/private-output.cc:550 +msgid "The following packages have been kept back:" +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:571 +msgid "The following packages will be upgraded:" +msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:" -#: apt-pkg/sourcelist.cc:217 +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:" + +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:" + +#: apt-private/private-output.cc:667 #, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)" +msgid "%s (due to %s) " +msgstr "%s (เนื่องจาก %s) " + +#: apt-private/private-output.cc:675 +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:706 #, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, " -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-output.cc:710 #, c-format -msgid "Opening %s" -msgstr "กำลังเปิด %s" +msgid "%lu reinstalled, " +msgstr "ติดตั้งซ้ำ %lu, " -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %u in source list %s (type)" -msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" +msgid "%lu downgraded, " +msgstr "ปรับรุ่นลง %lu, " -#: apt-pkg/sourcelist.cc:375 +#: apt-private/private-output.cc:714 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" -#: apt-pkg/sourcelist.cc:416 +#: apt-private/private-output.cc:718 #, c-format -msgid "Type '%s' is not known on stanza %u in source list %s" -msgstr "ไม่รู้จักชนิด '%s' ที่วรรคที่ %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" +msgid "%lu not fully installed or removed.\n" +msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n" -#: apt-pkg/deb/dpkgpm.cc:95 -#, c-format -msgid "Installing %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:740 +msgid "[Y/n]" +msgstr "[Y/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 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:746 +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" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "Y" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "กำลังถอดถอน %s อย่างสมบูรณ์" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "N" -#: apt-pkg/deb/dpkgpm.cc:99 -#, c-format -msgid "Noting disappearance of %s" -msgstr "กำลังจดบันทึกการหายไปของ %s" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" -#: apt-pkg/deb/dpkgpm.cc:100 +#: apt-private/private-update.cc:90 #, c-format -msgid "Running post-installation trigger %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] "" -#. FIXME: use a better string after freeze -#: apt-pkg/deb/dpkgpm.cc:827 -#, c-format -msgid "Directory '%s' missing" -msgstr "ไม่มีไดเรกทอรี '%s'" +#: 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 "ไม่สามารถเปิดแฟ้ม '%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/deb/dpkgpm.cc:989 -#, c-format -msgid "Preparing %s" -msgstr "กำลังเตรียม %s" +#: 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" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" -#: apt-pkg/deb/dpkgpm.cc:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "กำลังเตรียมตั้งค่า %s" +#: apt-private/private-install.cc:93 +msgid "Packages need to be removed but remove is disabled." +msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" + +#: apt-private/private-install.cc:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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 "ioctl(TIOCGWINSZ) ล้มเหลว" +#: apt-private/private-install.cc:212 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 -#, c-format -msgid "Can not write log (%s)" -msgstr "ไม่สามารถเขียนปูม (%s)" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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 "ได้เมานท์ /dev/pts ไว้หรือไม่?" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Yes, do as I say!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "stdout เป็นเทอร์มินัลหรือไม่?" +#: apt-private/private-install.cc:224 +#, 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:230 apt-private/private-install.cc:248 +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:245 +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:315 +msgid "Some files failed to download" +msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:322 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-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" + +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "จะล้มเลิกการติดตั้ง" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:368 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] "" +"แพกเกจต่อไปนี้ได้หายไปจากระบบของคุณ เพราะแฟ้มทั้งหมดได้ถูกแทนที่\n" +"โดยแพกเกจอื่นแล้ว:" + +#: apt-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" + +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" + +#: apt-private/private-install.cc:501 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" -#: apt-pkg/deb/dpkgpm.cc:1651 +#: apt-private/private-install.cc:515 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-private/private-install.cc:519 +#, 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:521 +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:616 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:640 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:661 +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:738 +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:828 +msgid "Suggested packages:" +msgstr "แพกเกจที่แนะนำ:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "ไม่ได้ล็อคอยู่" +#: apt-private/private-install.cc:829 +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:851 #, 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:855 #, 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:867 #, 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:872 #, c-format -msgid "%lis" -msgstr "%liวิ" +msgid "%s is already the newest version.\n" +msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:920 #, 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:925 #, 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:967 #, 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:973 #, 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-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-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-pkg/contrib/fileutl.cc:223 +#: apt-private/private-sources.cc:58 #, c-format -msgid "Could not get lock %s" -msgstr "ไม่สามารถล็อค %s" +msgid "Failed to parse %s. Edit again? " +msgstr "แจง %s ไม่สำเร็จ จะแก้ไขอีกครั้งหรือไม่? " -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: 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 "แฟ้ม '%s' ของคุณมีการเปลี่ยนแปลง กรุณาเรียก 'apt-get update'" + +#: apt-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "ค้นทั่วทั้งเนื้อความ" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "เจอ " + +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "ดึง:" + +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "ข้าม " + +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "ปัญหา " -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/acqprogress.cc:147 #, 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 ใน %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:412 +#: apt-private/acqprogress.cc:237 #, 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:298 #, c-format msgid "" -"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" -msgstr "จะละเลย '%s' ในไดเรกทอรี '%s' เนื่องจากส่วนขยายในชื่อแฟ้มไม่สามารถใช้การได้" +"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: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 +#: 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 "ไม่สามารถเปิด file destriptor %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 "read: ยังเหลือ %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 "write: ยังเหลือ %llu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" +#: 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 "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง" -#: apt-pkg/contrib/fileutl.cc:1915 -#, c-format -msgid "Problem closing the file %s" -msgstr "เกิดปัญหาขณะปิดแฟ้ม %s" +#: dselect/update:30 +msgid "Merging available information" +msgstr "กำลังผสานรายชื่อของแพกเกจที่มี" -#: apt-pkg/contrib/fileutl.cc:1927 -#, c-format -msgid "Problem renaming the file %s to %s" -msgstr "เกิดปัญหาขณะเปลี่ยนชื่อแฟ้ม %s ไปเป็น %s" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "DropNode ถูกเรียกใช้กับโหนดที่ยังลิงก์อยู่" -#: apt-pkg/contrib/fileutl.cc:1938 -#, c-format -msgid "Problem unlinking the file %s" -msgstr "เกิดปัญหาขณะลบแฟ้ม %s" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "หาสมาชิกในตารางแฮชไม่สำเร็จ!" -#: apt-pkg/contrib/fileutl.cc:1951 -msgid "Problem syncing the file" -msgstr "เกิดปัญหาขณะ sync แฟ้ม" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "จองเนื้อที่สำหรับการเบนแฟ้มไม่สำเร็จ" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... ผิดพลาด!" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "ข้อผิดพลาดภายในที่ AddDiversion" -#: apt-pkg/contrib/progress.cc:150 +#: apt-inst/filelist.cc:477 #, c-format -msgid "%c%s... Done" -msgstr "%c%s... เสร็จแล้ว" - -#: apt-pkg/contrib/progress.cc:181 -msgid "..." -msgstr "..." +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "พยายามเขียนทับการเบนแฟ้ม: %s -> %s กับ %s/%s" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 +#: apt-inst/filelist.cc:506 #, 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 "Double add of diversion %s -> %s" +msgstr "เพิ่มการเบนแฟ้ม %s -> %s ซ้ำสอง" -#: apt-pkg/contrib/mmap.cc:111 +#: apt-inst/filelist.cc:549 #, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "ไม่สามารถทำซ้ำ file descriptor %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 "ไม่สามารถสร้าง mmap ขนาด %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 #, 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 ถูก divert" -#: 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 "แพกเกจนี้พยายามเขียนลงปลายทางของการเบนแฟ้ม %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 "พาธของการเบนแฟ้มยาวเกินไป" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "ไม่สามารถ stat จุดเมานท์ %s" - -#: apt-pkg/contrib/cdromutl.cc:246 -msgid "Failed to stat the cdrom" -msgstr "ไม่สามารถ stat ซีดีรอม" +msgid "Failed to stat %s" +msgstr "stat %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 "หาโหนดใน bucket ของแฮชไม่พบ" -#: 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: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" +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: ใช้ include ซ้อนกันมากเกินไป" +msgid "Unable to stat %s" +msgstr "ไม่สามารถ stat %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: include จากที่นี่" +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: พบ directive '%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: directive 'clear' ต้องมีอาร์กิวเมนต์เป็นลำดับชั้นตัวเลือก" +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'" -#: 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 ไม่ได้เป็นค่าบูลีน" +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 =." -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 "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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3201,12 +3214,7 @@ msgstr "" " -c=? อ่านแฟ้มค่าตั้งนี้\n" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, c-format -msgid "Unable to mkstemp %s" -msgstr "ไม่สามารถ mkstemp %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "ไม่สามารถอ่านรุ่นของ debconf ได้ ได้ติดตั้ง debconf ไว้หรือไม่?" @@ -3320,121 +3328,121 @@ msgstr "ไม่มีรายการเลือกที่ตรง" msgid "Some files are missing in the package file group `%s'" msgstr "บางแฟ้มขาดหายไปในกลุ่มแฟ้มแพกเกจ `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB เสีย จะเปลี่ยนชื่อแฟ้มเป็น %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB เป็นรุ่นเก่า จะพยายามปรับรุ่น %s ขึ้น" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "ฟอร์แมตของ DB ผิด ถ้าคุณเพิ่งปรับรุ่นมาจาก apt รุ่นเก่า กรุณาลบฐานข้อมูลแล้วสร้างใหม่" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "ไม่สามารถเปิดแฟ้ม DB %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "readlink %s ไม่สำเร็จ" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "แพกเกจไม่มีระเบียนควบคุม" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "ไม่สามารถนำตัวชี้ตำแหน่งมาใช้ได้" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: อ่านไดเรกทอรี %s ไม่สำเร็จ\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: stat %s ไม่สำเร็จ\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: ข้อผิดพลาดเกิดกับแฟ้ม " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "หาพาธเต็มของ %s ไม่สำเร็จ" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "เดินท่องต้นไม้ไม่สำเร็จ" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "เปิด %s ไม่สำเร็จ" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "readlink %s ไม่สำเร็จ" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "unlink %s ไม่สำเร็จ" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** ลิงก์ %s ไปยัง %s ไม่สำเร็จ" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " มาถึงขีดจำกัดการ DeLink ที่ %sB แล้ว\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "แพกเกจไม่มีช่องข้อมูล 'Package'" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s ไม่มีข้อมูล override\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ผู้ดูแล %s คือ %s ไม่ใช่ %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นกัน\n" diff --git a/po/tl.po b/po/tl.po index b19833dd5..c818f2116 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -20,3171 +20,3184 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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:150 +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:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Sira ang talaksan ng cache ng pakete" + +#: apt-pkg/pkgcache.cc:161 +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:164 +#, 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:171 #, 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:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +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:324 +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:324 +msgid "PreDepends" +msgstr "PreDepends" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(hindi nahanap)" +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Mungkahi" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Nakaluklok: " +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Rekomendado" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Kandidato: " +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Tunggali" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(wala)" +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Pumapalit" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Naka-Pin na Pakete: " +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Linalaos" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Talaang Bersyon:" +#: apt-pkg/pkgcache.cc:326 +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:45 -#: cmdline/apt-sortpkgs.cc:147 +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "importante" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "kailangan" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standard" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "optional" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "extra" + +#: 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'" + +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Error sa pag-compile ng regex - %s" + +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Hindi akma ang versioning system ng cache" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 #, 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" +msgid "Error occurred while processing %s (%s%d)" +msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" + +#: apt-pkg/pkgcachegen.cc:280 +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." + +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1749 +#: apt-pkg/pkgcachegen.cc:286 #, 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" +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-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/pkgcachegen.cc:289 +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." -#: 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/pkgcachegen.cc:598 +#, 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." -#: 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/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %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:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Binabasa ang Listahan ng mga Pakete" -#: 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/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Kinukuha ang Talaksang Provides" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Mga argumento ay hindi naka-pares" +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 +#, c-format +msgid "Unable to write to %s" +msgstr "Hindi makapagsulat sa %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:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "IO Error sa pag-imbak ng source cache" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +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" +#: apt-pkg/edsp.cc:241 +msgid "Send request to solver" +msgstr "" -#: 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/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: 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/edsp.cc:327 +msgid "External solver failed without a proper error message" +msgstr "" -#: cmdline/apt-get.cc:423 -#, c-format -msgid "Can not find version '%s' of package '%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:454 +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 #, c-format -msgid "Couldn't find package %s" -msgstr "Hindi mahanap ang paketeng %s" +msgid "rename failed, %s (%s -> %s)." +msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." -#: 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" +#: apt-pkg/acquire-item.cc:175 +#, fuzzy +msgid "Hash Sum mismatch" +msgstr "Di tugmang MD5Sum" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Di tugmang laki" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Di tanggap na operasyon %s" + +#: apt-pkg/acquire-item.cc:1679 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" msgstr "" -#: 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" - -#: 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/acquire-item.cc:1697 +#, fuzzy, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: 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/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1066 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Hindi mahanap ang paketeng source para sa %s" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:1827 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"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:843 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire-item.cc:1972 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Hindi matantsa ang libreng puwang sa %s" +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:882 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Kulang kayo ng libreng puwang sa %s" +msgid "Can't find a source to download version '%s' of '%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:2074 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\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." -#. TRANSLATOR: The required 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/vendorlist.cc:85 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Block ng nagbebenta %s ay walang fingerprint" -#: cmdline/apt-get.cc:902 -#, c-format -msgid "Fetch source %s\n" -msgstr "Kunin ang Source %s\n" +#: apt-pkg/acquire.cc:88 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:920 -msgid "Failed to fetch some archives." -msgstr "Bigo sa pagkuha ng ilang mga arkibo." +#: apt-pkg/acquire.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "Nawawala ang directory ng arkibo %spartial." -#: 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-pkg/acquire.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "Hindi maaldaba ang directory ng talaan" -#: cmdline/apt-get.cc:950 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, 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 "Retrieving file %li of %li (%s remaining)" +msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" -#: cmdline/apt-get.cc:962 +#: apt-pkg/acquire.cc:927 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Bigo ang utos ng pagbuklat '%s'.\n" +msgid "Retrieving file %li of %li" +msgstr "Kinukuha ang talaksang %li ng %li" -#: cmdline/apt-get.cc:963 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" +msgid "Failed to fetch %s %s\n" +msgstr "Bigo sa pagkuha ng %s %s\n" + +#: 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 "" +"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" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Utos na build '%s' ay bigo.\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:1010 -msgid "Child process failed" -msgstr "Bigo ang prosesong anak" +#: 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" -#: 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/policy.cc:444 +#, c-format +msgid "Did not understand pin type %s" +msgstr "Hindi naintindihan ang uri ng pin %s" + +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Walang prioridad (o sero) na nakatakda para sa pin" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "Hindi mabuksan ang talaksang %s" + +#: apt-pkg/packagemanager.cc:584 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Hindi makuha ang impormasyong build-dependency para sa %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 "" +"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:1101 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "%s has no build depends.\n" -msgstr "Walang build depends ang %s.\n" +msgid "Line %u too long in source list %s." +msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." + +#: 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 "Using CD-ROM mount point %s\n" +msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n" + +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Hinihintay ang disc...\n" + +#: apt-pkg/cdrom.cc:609 +msgid "Mounting CD-ROM...\n" +msgstr "Sinasalang ang CD-ROM...\n" + +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "Kinikilala..." + +#: apt-pkg/cdrom.cc:662 +#, c-format +msgid "Stored label: %s\n" +msgstr "Naka-imbak na Label: %s \n" -#: cmdline/apt-get.cc:1271 +#: 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 "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +"Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " +"signature\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 +#, fuzzy, c-format +msgid "Found label '%s'\n" +msgstr "Naka-imbak na Label: %s \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" + +#: apt-pkg/cdrom.cc:817 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgid "" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng " -"%s ay bagong-bago pa lamang." +"Ang Disc na ito ay nagngangalang: \n" +"'%s'\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: apt-pkg/cdrom.cc:819 +msgid "Copying package lists..." +msgstr "Kinokopya ang Listahan ng mga Pakete" + +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" + +#: 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" + +#: apt-pkg/algorithms.cc:265 +#, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon " -"ng paketeng %s na tumutugon sa kinakailangang bersyon" +"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " +"para dito." -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: apt-pkg/algorithms.cc:1086 msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." msgstr "" -"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " -"mahanap" +"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " +"ito ng mga paketeng naka-hold." + +#: 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-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 +msgid "Building dependency tree" +msgstr "Ginagawa ang puno ng mga dependensiya" + +#: apt-pkg/depcache.cc:139 +msgid "Candidate versions" +msgstr "Bersyong Kandidato" + +#: apt-pkg/depcache.cc:168 +msgid "Dependency generation" +msgstr "Pagbuo ng Dependensiya" -#: cmdline/apt-get.cc:1380 +#: 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-pkg/depcache.cc:250 +#, fuzzy, c-format +msgid "Failed to open StateFile %s" +msgstr "Bigo ang pagbukas ng %s" + +#: apt-pkg/depcache.cc:256 +#, fuzzy, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Bigo sa pagsulat ng talaksang %s" + +#: apt-pkg/tagfile.cc:169 #, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" +msgid "Unable to parse package file %s (1)" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Hindi mabuo ang build-dependencies para sa %s." +msgid "Unable to parse package file %s (2)" +msgstr "Hindi ma-parse ang talaksang pakete %s (2)" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Bigo sa pagproseso ng build dependencies" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Release '%s' para sa '%s' ay hindi nahanap" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Hindi mahanap ang paketeng %s" + +#: apt-pkg/cacheset.cc:604 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "Kumokonekta sa %s (%s)" +msgid "Couldn't find task '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Suportadong mga Module:" +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Hindi mahanap ang paketeng %s" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" 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" +#: apt-pkg/cacheset.cc:648 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" +#: apt-pkg/cacheset.cc:656 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" 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/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/indexrecords.cc:83 #, fuzzy, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "ngunit ito ay hindi nakaluklok" +msgid "Unable to parse Release file %s" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/indexrecords.cc:91 #, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "ngunit ang %s ay iluluklok" +msgid "No sections in Release file %s" +msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "" + +#: apt-pkg/indexrecords.cc:149 #, fuzzy, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "ngunit ang %s ay iluluklok" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Di tanggap na linya sa talaksang diversion: %s" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:168 #, fuzzy, c-format -msgid "%s was already set on hold.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Hindi ma-parse ang talaksang pakete %s (1)" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "%s was already not hold.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI parse)" -#: 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 "Naghintay, para sa %s ngunit wala nito doon" +#: 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)<" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/sourcelist.cc:173 #, fuzzy, c-format -msgid "%s set on hold.\n" -msgstr "ngunit ang %s ay iluluklok" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/sourcelist.cc:184 #, fuzzy, c-format -msgid "Canceled hold on %s.\n" -msgstr "Bigo ang pagbukas ng %s" +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)<" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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)<" -#: 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/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)<" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "Hindi mabasa ang database ng cdrom %s" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist)" -#: 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/sourcelist.cc:211 +#, 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)" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Maling CD" +#: apt-pkg/sourcelist.cc:217 +#, 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)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:224 #, 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." +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Hindi nahanap ang Disk." +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Binubuksan %s" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Hindi Nahanap ang 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/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/sourcelist.cc:375 +#, 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" -#: 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/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/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/deb/dpkgpm.cc:95 +#, fuzzy, c-format +msgid "Installing %s" +msgstr "Iniluklok ang %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Pumapasok" +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "Isasaayos ang %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Hindi malaman ang pangalan ng peer" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "Tinatanggal ang %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Hindi malaman ang pangalang lokal" +#: apt-pkg/deb/dpkgpm.cc:98 +#, fuzzy, c-format +msgid "Completely removing %s" +msgstr "Natanggal ng lubusan ang %s" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" +msgid "Noting disappearance of %s" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "USER failed, server said: %s" -msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" +msgid "Running post-installation trigger %s" +msgstr "" -#: methods/ftp.cc:232 -#, c-format -msgid "PASS failed, server said: %s" -msgstr "Bigo ang PASS, sabi ng server ay: %s" +#. 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." -#: 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/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" -#: methods/ftp.cc:280 +#: apt-pkg/deb/dpkgpm.cc:989 #, 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 "Preparing %s" +msgstr "Hinahanda ang %s" -#: methods/ftp.cc:306 +#: apt-pkg/deb/dpkgpm.cc:990 #, 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 "Unpacking %s" +msgstr "Binubuklat ang %s" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Sinarhan ng server ang koneksyon" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Hinahanda ang %s upang isaayos" -#: 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/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "Iniluklok ang %s" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "May sagot na bumubo sa buffer." +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Naghahanda para sa pagtanggal ng %s" -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "Sira ang protocol" +#: apt-pkg/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "Tinanggal ang %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 sa pagsulat" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "Naghahanda upang tanggalin ng lubusan ang %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/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Natanggal ng lubusan ang %s" -#: 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/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Bigo" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Hindi makapagsulat sa %s" -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Hindi maka-konekta sa socket na passive." +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/ftp.cc:749 -msgid "Could not bind a socket" -msgstr "Hindi maka-bind ng socket" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 "Naghintay, para sa %s ngunit wala nito doon" -#: methods/ftp.cc:753 -msgid "Could not listen on the socket" -msgstr "Hindi makarinig sa socket" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Hindi malaman ang pangalan ng socket" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "Hindi makapagpadala ng utos na PORT" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/ftp.cc:802 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Di kilalang pamilya ng address %u (AF_*)" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" -#: methods/ftp.cc:811 -#, c-format -msgid "EPRT failed, server said: %s" -msgstr "Bigo ang EPRT, sabi ng server ay: %s" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Nag-timeout ang socket ng datos" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" -#: methods/ftp.cc:838 -msgid "Unable to accept connection" -msgstr "Hindi makatanggap ng koneksyon" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +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/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/ftp.cc:890 +#: apt-pkg/deb/debsystem.cc:91 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Nag-timeout ang socket ng datos" +#: 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" -#: methods/ftp.cc:935 +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:110 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Tanong" +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Hindi ma-invoke " +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "" -#: methods/connect.cc:76 +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:406 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Kumokonekta sa %s (%s)" +msgid "%lid %lih %limin %lis" +msgstr "" -#: methods/connect.cc:87 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "%lih %limin %lis" +msgstr "" -#: methods/connect.cc:94 +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 #, 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 "%limin %lis" +msgstr "" -#: methods/connect.cc:100 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." +msgid "%lis" +msgstr "" -#: methods/connect.cc:108 +#: apt-pkg/contrib/strutl.cc:1243 #, 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 "Selection %s not found" +msgstr "Piniling %s ay hindi nahanap" -#: methods/connect.cc:126 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Hindi maka-konekta sa %s:%s (%s)." +msgid "Not using locking for read only lock file %s" +msgstr "" +"Hindi ginagamit ang pagaldaba para sa basa-lamang na talaksang aldaba %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/contrib/fileutl.cc:196 #, c-format -msgid "Connecting to %s" -msgstr "Kumokonekta sa %s" +msgid "Could not open lock file %s" +msgstr "Hindi mabuksan ang talaksang aldaba %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "Could not resolve '%s'" -msgstr "Hindi maresolba ang '%s'" +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" -#: methods/connect.cc:205 +#: apt-pkg/contrib/fileutl.cc:224 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Pansamantalang kabiguan sa pagresolba ng '%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)" - -#: methods/connect.cc:211 -#, fuzzy, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" - -#: methods/connect.cc:258 -#, fuzzy, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Hindi maka-konekta sa %s %s:" +msgid "Could not get lock %s" +msgstr "hindi makuha ang aldaba %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" 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/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" 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/contrib/fileutl.cc:413 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Hindi kilalang error sa pag-execute ng gpgv" - -#: methods/gpgv.cc:217 methods/gpgv.cc:224 -msgid "The following signatures were invalid:\n" -msgstr "Ang sumusunod na mga lagda ay imbalido:\n" - -#: methods/gpgv.cc:231 +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format msgid "" -"The following signatures couldn't be verified because the public key is not " -"available:\n" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" 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" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Error sa pagsusulat sa talaksan" +#: apt-pkg/contrib/fileutl.cc:843 +#, fuzzy, c-format +msgid "Sub-process %s received signal %u." +msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: 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/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "Naghudyat ang sub-process %s ng error code (%u)" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Error sa pagbasa mula sa server" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Ang sub-process %s ay lumabas ng di inaasahan" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Error sa pagsulat sa talaksan" +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Error sa pagsulat" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Bigo ang pagpili" +#: apt-pkg/contrib/fileutl.cc:951 +#, fuzzy, c-format +msgid "Problem closing the gzip file %s" +msgstr "Problema sa pagsara ng talaksan" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Nag-timeout ang koneksyon" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "Hindi mabuksan ang talaksang %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Error sa pagsulat ng talaksang output" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, fuzzy, c-format +msgid "Could not open file descriptor %d" +msgstr "Hindi makapag-bukas ng pipe para sa %s" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Naghihintay ng panimula" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Bigo ang paglikha ng subprocess IPC" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Maling linyang panimula" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Bigo ang pag-exec ng taga-compress" -#: 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/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Error sa pagbasa" -#: 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/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "pagbasa, mayroong %lu na babasahin ngunit walang natira" -#: 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/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "pagsulat, mayroon pang %lu na isusulat ngunit hindi makasulat" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Sira ang range support ng HTTP server na ito" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "Problema sa pagsara ng talaksan" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Di kilalang anyo ng petsa" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Problema sa pag-sync ng talaksan" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Maling datos sa panimula" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "Problema sa pag-unlink ng talaksan" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Bigo ang koneksyon" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Problema sa pag-sync ng talaksan" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Internal na error" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Hindi ma-stat ang %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Sinusuri ang pag-upgrade... " +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Error!" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Tapos" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Tapos" -#: 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... Tapos" -#: 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/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Hindi mai-mmap ang talaksang walang laman" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Inaayos ang mga dependensiya..." +#: 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-cachefile.cc:96 -msgid " failed." -msgstr " ay bigo." +#: 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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Hindi maayos ang mga dependensiya" +#: apt-pkg/contrib/mmap.cc:146 +#, fuzzy +msgid "Unable to close mmap" +msgstr "Hindi mabuksan %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Hindi mai-minimize ang upgrade set" - -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Tapos" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +#, fuzzy +msgid "Unable to synchronize mmap" +msgstr "Hindi ma-invoke " -#: 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/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "Hindi makagawa ng mmap ng %lu na byte" -#: 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/mmap.cc:322 +#, fuzzy +msgid "Failed to truncate file" +msgstr "Bigo sa pagsulat ng talaksang %s" -#: 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: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:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Nakaluklok]" - -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Nakaluklok]" +#: 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:240 -msgid "[installed,auto-removable]" +#: 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:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Nakaluklok]" +#: 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-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Nakaluklok]" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Bigo sa pag-stat ng cdrom" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "[upgradable from: %s]" -msgstr "" - -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Hindi kilalang katagang uri: '%c'" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "but %s is installed" -msgstr "ngunit ang %s ay nakaluklok" +msgid "Opening configuration file %s" +msgstr "Binubuksan ang talaksang pagsasaayos %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/configuration.cc:803 #, c-format -msgid "but %s is to be installed" -msgstr "ngunit ang %s ay iluluklok" +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-output.cc:443 -msgid "but it is not installable" -msgstr "ngunit hindi ito maaaring iluklok" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Syntax error %s:%u: Maling anyo ng Tag" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ngunit ito ay birtwal na pakete" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Syntax error %s:%u: May basura matapos ng halaga" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ngunit ito ay hindi nakaluklok" +#: apt-pkg/contrib/configuration.cc:879 +#, 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" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ngunit ito ay hindi iluluklok" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " o" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Syntax error %s:%u: Sinama mula dito" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" +#: apt-pkg/contrib/configuration.cc:899 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" +#: apt-pkg/contrib/configuration.cc:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" +#. 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-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Ang susunod na mga pakete ay iu-upgrade:" +#: apt-pkg/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Opsyon sa command line '%c' [mula %s] ay di kilala." -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" +#: 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-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" +#: 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" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, c-format -msgid "%s (due to %s) " -msgstr "%s (dahil sa %s) " +msgid "Option %s requires an argument." +msgstr "Opsyon %s ay nangangailangan ng argumento" -#: apt-private/private-output.cc:675 -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 =." msgstr "" -"BABALA: Ang susunod na mga paketeng esensyal ay tatanggalin.\n" -"HINDI ito dapat gawin kung hindi niyo alam ng husto ang inyong ginagawa!" +"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " +"=." -#: apt-private/private-output.cc:706 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu na nai-upgrade, %lu na bagong luklok, " +msgid "Option %s requires an integer argument, not '%s'" +msgstr "Opsyon %s ay nangangailangan ng argumentong integer, hindi '%s'" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu iniluklok muli, " +msgid "Option '%s' is too long" +msgstr "Opsyon '%s' ay labis ang haba" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "%lu downgraded, " -msgstr "%lu nai-downgrade, " +msgid "Sense %s is not understood, try true or false." +msgstr "Hindi naintindihan ang %s, subukan ang true o false." -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" +msgid "Invalid operation %s" +msgstr "Di tanggap na operasyon %s" -#: apt-private/private-output.cc:718 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "Paketeng %s bersyon %s ay may kulang na dep:\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:740 -msgid "[Y/n]" -msgstr "[O/h]" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Kabuuan ng mga Pakete : " -#. 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:746 -msgid "[y/N]" -msgstr "[o/H]" +#: cmdline/apt-cache.cc:319 +#, fuzzy +msgid "Total package structures: " +msgstr "Kabuuan ng mga Pakete : " -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "O" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normal na Pakete: " -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "H" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Purong Birtwual na Pakete: " -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 -#, c-format -msgid "Regex compilation error - %s" -msgstr "Error sa pag-compile ng regex - %s" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " Nag-iisang Birtwal na Pakete: " -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Halong Birtwal na Pakete: " -#: 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:363 +msgid " Missing: " +msgstr " Kulang/Nawawala: " -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: 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:367 +#, fuzzy +msgid "Total distinct descriptions: " +msgstr "Kabuuan ng Natatanging mga Bersyon: " -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Kabuuan ng mga Dependensiya: " -#: 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!" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: 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." +#: cmdline/apt-cache.cc:374 +#, fuzzy +msgid "Total Desc/File relations: " +msgstr "Kabuuan ng ugnayang Ber/Talaksan: " -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Kabuuan ng Mapping ng Provides: " -#: 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" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Kabuuan ng Globbed String: " -#. 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 "Need to get %sB/%sB of archives.\n" -msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Kabuuan ng gamit na puwang ng Dependensiyang Bersyon: " -#. TRANSLATOR: The required space between number and unit 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 +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Kabuuan ng Hindi Nagamit na puwang: " + +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Kabuuan ng puwang na napag-tuosan: " + +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Kailangang kumuha ng %sB ng arkibo.\n" +msgid "Package file %s is out of sync." +msgstr "Wala sa sync ang talaksan ng paketeng %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" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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" + +#: cmdline/apt-cache.cc:1306 +#, fuzzy +msgid "You must give at least one search pattern" +msgstr "Kailangan niyong magbigay ng isa lamang na pattern" + +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Matapos magbuklat ay %sB na karagdagang puwang sa disk ang magagamit.\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:172 -#, 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" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Talaksang Pakete:" -#: apt-private/private-install.cc:200 -#, c-format -msgid "You don't have enough free space in %s." -msgstr "Kulang kayo ng libreng puwang sa %s." +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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: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" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Mga naka-Pin na Pakete:" -#: 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." +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(hindi nahanap)" -#. 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!" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Nakaluklok: " -#: 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 "" -"Kayo ay gagawa ng bagay na maaaring makasama sa inyong sistema.\n" -"Upang magpatuloy, ibigay ang pariralang '%s'\n" -" ?] " +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Kandidato: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Abort." +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(wala)" -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Nais niyo bang magpatuloy?" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " Naka-Pin na Pakete: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "May mga talaksang hindi nakuha" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Talaang Bersyon:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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-install.cc:320 +#: cmdline/apt-cache.cc:1801 +#, fuzzy msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" +"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 "" -"Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " -"subukang may --fix-missing?" +"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-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" +#: 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-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Hindi maayos ang mga kulang na pakete." +#: 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-install.cc:330 -msgid "Aborting install." -msgstr "Ina-abort ang pag-instol." +#: 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-private/private-install.cc:366 +#: cmdline/apt-cdrom.cc:178 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:370 -msgid "Note: This is done automatically and on purpose by dpkg." +"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-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "" +#: 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/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 "" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Mga argumento ay hindi naka-pares" -#. -#. 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:" +#: 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 "" -"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" +"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-private/private-install.cc:506 -#, fuzzy -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Error na internal, may nasira ang problem resolver" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: 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] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" +#: 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-private/private-install.cc:517 +#: cmdline/apt-get.cc:330 #, 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:" +msgid "Can not find a package '%s' with release '%s'" +msgstr "Hindi mahanap ang paketeng %s" -#: 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] "" +#: 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-private/private-install.cc:612 -msgid "You might want to run 'apt-get -f install' to correct these:" +#: cmdline/apt-get.cc:423 +#, c-format +msgid "Can not find version '%s' of package '%s'" msgstr "" -"Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:" -#: 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-get.cc:454 +#, c-format +msgid "Couldn't find package %s" +msgstr "Hindi mahanap ang paketeng %s" + +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, fuzzy, c-format +msgid "%s set to manually installed.\n" +msgstr "ngunit ang %s ay iluluklok" + +#: 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-private/private-install.cc:638 +#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 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." +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." 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-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Sirang mga pakete" +#: 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-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" +#: 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-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Mga paketeng mungkahi:" +#: 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-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Mga paketeng rekomendado:" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Hindi mahanap ang paketeng source para sa %s" -#: apt-private/private-install.cc:825 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" msgstr "" -"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: apt-private/private-install.cc:829 -#, fuzzy, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\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 "" -"Linaktawan ang %s, ito'y nakaluklok na at hindi nakatakda ang upgrade.\n" -#: apt-private/private-install.cc:841 +#: cmdline/apt-get.cc:839 #, 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" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: apt-private/private-install.cc:846 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s ay pinakabagong bersyon na.\n" +msgid "Couldn't determine free space in %s" +msgstr "Hindi matantsa ang libreng puwang sa %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" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Kulang kayo ng libreng puwang sa %s" -#: 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" +#. 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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" -#. 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" +#. TRANSLATOR: The required 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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: 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" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "Kunin ang Source %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 "" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: 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-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" -#: 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" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" -#: 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-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Bigo ang utos ng pagbuklat '%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-get.cc:965 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to fetch %s %s\n" -msgstr "Bigo sa pagkuha ng %s %s\n" +msgid "Build command '%s' failed.\n" +msgstr "Utos na build '%s' ay bigo.\n" -#: apt-private/private-sources.cc:58 -#, fuzzy, c-format -msgid "Failed to parse %s. Edit again? " -msgstr "Bigo ang pagpangalan muli ng %s tungong %s" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Bigo ang prosesong anak" -#: apt-private/private-sources.cc:70 +#: cmdline/apt-get.cc:1031 +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:1056 #, c-format -msgid "Your '%s' file changed, please run 'apt-get update'." +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" msgstr "" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "Tumama " +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "Walang build depends ang %s.\n" -#: 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" - -#: apt-private/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [May ginagawa]" - -#: apt-private/acqprogress.cc:297 -#, c-format +#: cmdline/apt-get.cc:1296 +#, fuzzy, c-format msgid "" -"Media change: please insert the disc labeled\n" -" '%s'\n" -"in the drive '%s' and press enter\n" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" 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" +"Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " +"mahanap" -#: 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:1314 #, c-format -msgid "Unable to change to %s" -msgstr "Di makalipat sa %s" +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" -#. 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:1337 #, c-format -msgid "No mirror file '%s' found " +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." -#. 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:1376 #, fuzzy, c-format -msgid "Can not read mirror file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" +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" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:1382 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Hindi mabuksan ang talaksang %s" - -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" +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" -#: 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" +#: cmdline/apt-get.cc:1405 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "Nagsara ng maaga ang koneksyon" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "Maling nakatakda na default!" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Bigo sa pagproseso ng build dependencies" -#: 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." +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "Kumokonekta sa %s (%s)" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "" +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Suportadong mga Module:" -#: dselect/install:102 +#: cmdline/apt-get.cc:1657 #, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang" +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" -#: dselect/install:103 +#: cmdline/apt-helper.cc:35 #, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble" +msgid "Must specify at least one pair url/filename" +msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" -#: dselect/install:104 -msgid "or errors caused by missing dependencies. This is OK, only the errors" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" msgstr "" -"o mga error na dulot ng kulang na dependensiya. Ito ay ayos lamang, yun lang" -#: dselect/install:105 +#: cmdline/apt-helper.cc:66 msgid "" -"above this message are important. Please fix them and run [I]nstall again" +"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 "" -"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" +#: 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-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "Tinawagan ang DropNode sa naka-link pa na node" +#: cmdline/apt-mark.cc:74 +#, fuzzy, c-format +msgid "%s was already set to manually installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "Bigo sa paghanap ng elemento ng hash!" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Bigo ang pagreserba ng diversion" +#: cmdline/apt-mark.cc:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Internal error sa AddDiversion" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: 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-mark.cc:273 cmdline/apt-mark.cc:322 +#, fuzzy, c-format +msgid "%s set on hold.\n" +msgstr "ngunit ang %s ay iluluklok" -#: apt-inst/filelist.cc:506 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Dobleng pagdagdag ng diversion %s -> %s" - -#: apt-inst/filelist.cc:549 -#, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Nadobleng talaksang conf %s/%s" - -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 -#, c-format -msgid "The path %s is too long" -msgstr "Sobrang haba ang path na %s" - -#: apt-inst/extract.cc:132 -#, c-format -msgid "Unpacking %s more than once" -msgstr "Binubuklat ang %s ng labis sa isang beses" - -#: apt-inst/extract.cc:142 -#, c-format -msgid "The directory %s is diverted" -msgstr "Ang directory %s ay divertado" - -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s" - -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "Sobrang haba ng path na diversion" - -#: 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 "Bigo ang pag-stat ng %s" - -#: 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-inst/extract.cc:249 -#, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "Ang directory %s ay papalitan ng hindi-directory" - -#: apt-inst/extract.cc: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 "Overwrite package match with no version for %s" -msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" - -#: apt-inst/extract.cc:438 -#, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s" - -#: apt-inst/extract.cc:498 -#, c-format -msgid "Unable to stat %s" -msgstr "Hindi ma-stat ang %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 "Bigo sa pagsulat ng talaksang %s" - -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "Bigo sa pagsara ng talaksang %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 "Hindi ito tanggap na arkibong DEB, may kulang na miyembrong '%s'" - -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" -msgstr "Internal error, hindi mahanap ang miyembrong %s" - -#: 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 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, 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 "Unknown TAR header type %u, member %s" -msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s" - -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Hindi ma-stat ang %s" - -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" -msgstr "" +msgid "Canceled hold on %s.\n" +msgstr "Bigo ang pagbukas ng %s" -#: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" +#: cmdline/apt-mark.cc:345 +msgid "Executing dpkg failed. Are you root?" 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" - -#: 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-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 "" -"Nagsulat ng %i na record na may %i na talaksang kulang at %i na talaksang " -"mismatch\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 "Di tugmang MD5Sum" - -#: apt-pkg/acquire-worker.cc:116 +#: methods/cdrom.cc:203 #, c-format -msgid "The method driver %s could not be found." -msgstr "Ang driver ng paraang %s ay hindi mahanap." +msgid "Unable to read the cdrom database %s" +msgstr "Hindi mabasa ang database ng cdrom %s" -#: 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" +#: 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/acquire-worker.cc:169 -#, c-format -msgid "Method %s did not start correctly" -msgstr "Hindi umandar ng tama ang paraang %s" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Maling CD" -#: 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 "" -"Ikasa ang disk na may pangalang: '%s' sa drive '%s' at pindutin ang enter." +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/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." +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Hindi nahanap ang Disk." -#: 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" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Hindi Nahanap ang Talaksan" -#: apt-pkg/cachefile.cc:116 -msgid "The list of sources could not be read." -msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." +#: 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:155 -msgid "Empty package cache" -msgstr "Walang laman ang cache ng pakete" +#: 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:161 -msgid "The package cache file is corrupted" -msgstr "Sira ang talaksan ng cache ng pakete" +#: 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:166 -msgid "The package cache file is an incompatible version" -msgstr "Ang talaksan ng cache ng pakete ay hindi magamit na bersyon" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Pumapasok" -#: 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/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Hindi malaman ang pangalan ng peer" + +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Hindi malaman ang pangalang lokal" -#: 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 "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" +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:179 -msgid "The package cache was built for a different architecture" -msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura" +#: 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:321 -msgid "Depends" -msgstr "Dependensiya" +#: 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:321 -msgid "PreDepends" -msgstr "PreDepends" +#: 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:321 -msgid "Suggests" -msgstr "Mungkahi" +#: 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:322 -msgid "Recommends" -msgstr "Rekomendado" +#: 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:322 -msgid "Conflicts" -msgstr "Tunggali" +#: 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:322 -msgid "Replaces" -msgstr "Pumapalit" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Sinarhan ng server ang koneksyon" -#: apt-pkg/pkgcache.cc:323 -msgid "Obsoletes" -msgstr "Linalaos" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "May sagot na bumubo sa buffer." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "" +#: methods/ftp.cc:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "Sira ang protocol" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "importante" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "kailangan" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Bigo" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "standard" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Hindi maka-konekta sa socket na passive." -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "optional" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "extra" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Hindi maka-bind ng socket" -#: 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:753 +msgid "Could not listen on the socket" +msgstr "Hindi makarinig sa socket" -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Hindi akma ang versioning system ng cache" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Hindi malaman ang pangalan ng socket" -#. 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:792 +msgid "Unable to send PORT command" +msgstr "Hindi makapagpadala ng utos na PORT" -#: 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:802 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Di kilalang pamilya ng address %u (AF_*)" -#: 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:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "Bigo ang EPRT, sabi ng server ay: %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." +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Nag-timeout ang socket ng datos" -#: 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:838 +msgid "Unable to accept connection" +msgstr "Hindi makatanggap ng koneksyon" -#: 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:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "Problema sa pag-hash ng talaksan" -#: apt-pkg/pkgcachegen.cc:1211 +#: methods/ftp.cc:890 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" - -#: apt-pkg/pkgcachegen.cc: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" +msgid "Unable to fetch file, server said '%s'" +msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" -#: apt-pkg/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Kinukuha ang Talaksang Provides" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Nag-timeout ang socket ng datos" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 +#: methods/ftp.cc:935 #, c-format -msgid "Unable to write to %s" -msgstr "Hindi makapagsulat sa %s" +msgid "Data transfer failed, server said '%s'" +msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" -#: 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" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Tanong" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Hindi ma-invoke " -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/connect.cc:76 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Kumokonekta sa %s (%s)" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/connect.cc:87 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/connect.cc:94 +#, c-format +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/connect.cc:100 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/connect.cc:108 #, c-format -msgid "rename failed, %s (%s -> %s)." -msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." +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:163 -#, fuzzy -msgid "Hash Sum mismatch" -msgstr "Di tugmang MD5Sum" +#: methods/connect.cc:126 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Hindi maka-konekta sa %s:%s (%s)." -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Di tugmang laki" +#. 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 "Kumokonekta sa %s" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Di tanggap na operasyon %s" +#: methods/connect.cc:180 methods/connect.cc:199 +#, c-format +msgid "Could not resolve '%s'" +msgstr "Hindi maresolba ang '%s'" -#: apt-pkg/acquire-item.cc:1581 +#: methods/connect.cc:205 #, c-format -msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" +msgid "Temporary failure resolving '%s'" +msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" -#: apt-pkg/acquire-item.cc:1597 +#: methods/connect.cc:209 #, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Hindi ma-parse ang talaksang pakete %s (1)" +msgid "System error resolving '%s:%s'" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: 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" +#: 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/acquire-item.cc:1677 -#, c-format +#: methods/connect.cc:258 +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Hindi maka-konekta sa %s %s:" + +#: methods/gpgv.cc:168 msgid "" -"Release file for %s is expired (invalid since %s). Updates for this " -"repository will not be applied." +"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-item.cc:1699 -#, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" +#: 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?)" msgstr "" +"Hindi maitakbo ang '%s' upang maberipika ang lagda (nakaluklok ba ang gpgv?)" -#: apt-pkg/acquire-item.cc:1729 +#. TRANSLATORS: %s is a single techy word like 'NODATA' +#: methods/gpgv.cc:180 #, 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" +"Clearsigned file isn't valid, got '%s' (does the network require " +"authentication?)" 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 "" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "Hindi kilalang error sa pag-execute ng gpgv" -#: apt-pkg/acquire-item.cc:1867 -#, c-format +#: methods/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Ang sumusunod na mga lagda ay imbalido:\n" + +#: methods/gpgv.cc:231 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)" +"The following signatures couldn't be verified because the public key is not " +"available:\n" msgstr "" -"Hindi ko mahanap ang talaksan para sa paketeng %s. Maaaring kailanganin " -"niyong ayusin ng de kamay ang paketeng ito. (dahil sa walang arch)" +"Ang sumusunod na mga lagda ay hindi maberipika dahil ang public key ay hindi " +"available:\n" -#: apt-pkg/acquire-item.cc:1933 -#, c-format -msgid "Can't find a source to download version '%s' of '%s'" +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" msgstr "" -#: apt-pkg/acquire-item.cc:1991 -#, 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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Error sa pagsusulat sa talaksan" -#: apt-pkg/vendorlist.cc:85 -#, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Block ng nagbebenta %s ay walang fingerprint" +#: 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/acquire.cc:87 apt-pkg/cdrom.cc:829 -#, fuzzy, c-format -msgid "List directory %spartial is missing." -msgstr "Nawawala ang directory ng talaan %spartial." +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Error sa pagbasa mula sa server" -#: apt-pkg/acquire.cc:91 -#, fuzzy, c-format -msgid "Archives directory %spartial is missing." -msgstr "Nawawala ang directory ng arkibo %spartial." +#: methods/http.cc:561 +msgid "Error writing to file" +msgstr "Error sa pagsulat sa talaksan" -#: apt-pkg/acquire.cc:99 -#, fuzzy, c-format -msgid "Unable to lock directory %s" -msgstr "Hindi maaldaba ang directory ng talaan" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Bigo ang pagpili" -#. 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/http.cc:626 +msgid "Connection timed out" +msgstr "Nag-timeout ang koneksyon" -#: apt-pkg/acquire.cc:901 -#, c-format -msgid "Retrieving file %li of %li" -msgstr "Kinukuha ang talaksang %li ng %li" +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Error sa pagsulat ng talaksang output" -#: 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 "" -"May mga talaksang index na hindi nakuha, sila'y di pinansin, o ginamit ang " -"mga luma na lamang." +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Naghihintay ng panimula" -#: 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" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Maling linyang panimula" -#: 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/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/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" +#: 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/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "Hindi naintindihan ang uri ng pin %s" +#: 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/policy.cc:452 -msgid "No priority (or zero) specified for pin" -msgstr "Walang prioridad (o sero) na nakatakda para sa pin" +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "Sira ang range support ng HTTP server na ito" -#: 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/server.cc:220 +msgid "Unknown date format" +msgstr "Di kilalang anyo ng petsa" -#: apt-pkg/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, fuzzy, c-format -msgid "Could not configure '%s'. " -msgstr "Hindi mabuksan ang talaksang %s" +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Maling datos sa panimula" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Bigo ang koneksyon" -#: apt-pkg/packagemanager.cc:583 +#: methods/server.cc:572 #, 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." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" 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/server.cc:692 +msgid "Internal error" +msgstr "Internal na error" -#: apt-pkg/cdrom.cc:571 -msgid "Unmounting CD-ROM...\n" -msgstr "Ina-unmount ang CD-ROM...\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Sinusuri ang pag-upgrade... " -#: apt-pkg/cdrom.cc:586 +#: apt-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Tapos" + +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" +msgstr "" + +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:156 #, c-format -msgid "Using CD-ROM mount point %s\n" -msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\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] "" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Hinihintay ang disc...\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Inaayos ang mga dependensiya..." -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "Sinasalang ang CD-ROM...\n" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " ay bigo." -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Kinikilala..." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Hindi maayos ang mga dependensiya" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Naka-imbak na Label: %s \n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Hindi mai-minimize ang upgrade set" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Tapos" + +#: 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/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" +#: 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/cdrom.cc:744 -msgid "" -"Unable to locate any package files, perhaps this is not a Debian Disc or the " -"wrong architecture?" +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -#: apt-pkg/cdrom.cc:771 +#: apt-private/private-output.cc:233 #, fuzzy, c-format -msgid "Found label '%s'\n" -msgstr "Naka-imbak na Label: %s \n" +msgid "[installed,upgradable to: %s]" +msgstr " [Nakaluklok]" -#: apt-pkg/cdrom.cc:800 -msgid "That is not a valid name, try again.\n" -msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Nakaluklok]" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" msgstr "" -"Ang Disc na ito ay nagngangalang: \n" -"'%s'\n" - -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Kinokopya ang Listahan ng mga Pakete" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Nakaluklok]" -#: 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" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Nakaluklok]" -#: apt-pkg/algorithms.cc:265 +#: apt-private/private-output.cc:248 #, c-format -msgid "" -"The package %s needs to be reinstalled, but I can't find an archive for it." +msgid "[upgradable from: %s]" msgstr "" -"Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " -"para dito." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-output.cc:252 +msgid "[residual-config]" msgstr "" -"Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " -"ito ng mga paketeng naka-hold." -#: 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-output.cc:434 +#, c-format +msgid "but %s is installed" +msgstr "ngunit ang %s ay nakaluklok" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Ginagawa ang puno ng mga dependensiya" +#: apt-private/private-output.cc:436 +#, c-format +msgid "but %s is to be installed" +msgstr "ngunit ang %s ay iluluklok" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Bersyong Kandidato" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "ngunit hindi ito maaaring iluklok" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Pagbuo ng Dependensiya" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "ngunit ito ay birtwal na pakete" -#: 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-output.cc:448 +msgid "but it is not installed" +msgstr "ngunit ito ay hindi nakaluklok" -#: apt-pkg/depcache.cc:250 -#, fuzzy, c-format -msgid "Failed to open StateFile %s" -msgstr "Bigo ang pagbukas ng %s" +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +msgstr "ngunit ito ay hindi iluluklok" -#: 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-output.cc:453 +msgid " or" +msgstr " o" -#: 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-output.cc:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Ang sumusunod na mga pakete ay may kulang na dependensiya:" -#: 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-output.cc:502 +msgid "The following NEW packages will be installed:" +msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: 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-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Ang sumusunod na mga pakete ay TATANGGALIN:" -#: 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-output.cc:550 +msgid "The following packages have been kept back:" +msgstr "Ang sumusunod na mga pakete ay hinayaang maiwanan:" -#: 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:571 +msgid "The following packages will be upgraded:" +msgstr "Ang susunod na mga pakete ay iu-upgrade:" -#: apt-pkg/cacheset.cc:609 -#, fuzzy, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Hindi mahanap ang paketeng %s" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Ang susunod na mga pakete ay ida-DOWNGRADE:" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "Ang susunod na mga hinawakang mga pakete ay babaguhin:" -#: apt-pkg/cacheset.cc:626 +#: apt-private/private-output.cc:667 #, c-format -msgid "Can't select versions from package '%s' as it is purely virtual" -msgstr "" +msgid "%s (due to %s) " +msgstr "%s (dahil sa %s) " -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 -#, c-format +#: apt-private/private-output.cc:675 msgid "" -"Can't select installed nor candidate version from package '%s' as it has " -"neither of them" +"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-pkg/cacheset.cc:647 +#: apt-private/private-output.cc:706 #, c-format -msgid "Can't select newest version from package '%s' as it is purely virtual" -msgstr "" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu na nai-upgrade, %lu na bagong luklok, " -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:710 #, c-format -msgid "Can't select candidate version from package %s as it has no candidate" -msgstr "" +msgid "%lu reinstalled, " +msgstr "%lu iniluklok muli, " -#: apt-pkg/cacheset.cc:663 +#: apt-private/private-output.cc:712 #, c-format -msgid "Can't select installed version from package %s as it is not installed" -msgstr "" - -#: 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-pkg/indexrecords.cc:86 -#, fuzzy, c-format -msgid "No sections in Release file %s" -msgstr "Paunawa, pinili ang %s imbes na %s\n" +msgid "%lu downgraded, " +msgstr "%lu nai-downgrade, " -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:714 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "" - -#: 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-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-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-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-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-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-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-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)<" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" -#: apt-pkg/sourcelist.cc:206 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (URI)" +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:740 +msgid "[Y/n]" +msgstr "[O/h]" -#: 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)" +#. 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:746 +msgid "[y/N]" +msgstr "[o/H]" -#: apt-pkg/sourcelist.cc:211 -#, 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)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "O" -#: apt-pkg/sourcelist.cc:217 -#, 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)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "H" -#: 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)<" +#: 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/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "Binubuksan %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)" -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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "Oo, gawin ang sinasabi ko!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, 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:230 apt-private/private-install.cc:248 +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:245 +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:315 +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:322 +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:326 +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:331 +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:332 +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:368 +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:372 +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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" msgstr "" +"Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" + +#: apt-private/private-install.cc:508 +#, fuzzy +msgid "Internal Error, AutoRemover broke stuff" +msgstr "Error na internal, may nasira ang problem resolver" + +#: apt-private/private-install.cc:515 +#, 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:" + +#: apt-private/private-install.cc:519 +#, 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-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:521 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "" +msgstr[1] "" -#: 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:614 +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/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " +"mga pakete (o magtakda ng solusyon)." -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"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: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-install.cc:661 +msgid "Broken packages" +msgstr "Sirang mga pakete" -#. 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:738 +msgid "The following extra packages will be installed:" +msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Mga paketeng mungkahi:" -#. 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:829 +msgid "Recommended packages:" +msgstr "Mga paketeng rekomendado:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %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" -#. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:420 -#, c-format -msgid "%limin %lis" +#: apt-private/private-install.cc:855 +#, 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" -#. s means seconds -#: apt-pkg/contrib/strutl.cc:425 +#: apt-private/private-install.cc:867 #, c-format -msgid "%lis" -msgstr "" +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/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, c-format -msgid "Selection %s not found" -msgstr "Piniling %s ay hindi nahanap" +msgid "%s is already the newest version.\n" +msgstr "%s ay pinakabagong bersyon na.\n" -#: 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-install.cc:920 +#, 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:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "Hindi mabuksan ang talaksang aldaba %s" +#: apt-private/private-install.cc:925 +#, 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: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" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "hindi makuha ang aldaba %s" +#: apt-private/private-install.cc:973 +#, 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: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 "" +"BABALA: Ang susunod na mga pakete ay hindi matiyak ang pagka-awtentiko!" -#: 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 "" +"Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\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 "May mga paketeng hindi matiyak ang pagka-awtentiko" -#: 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:50 +msgid "Install these packages without verification?" +msgstr "Iluklok ang mga paketeng ito na walang beripikasyon?" -#: apt-pkg/contrib/fileutl.cc:826 +#: 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:88 +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:119 +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:123 +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:147 +#, 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:237 +#, 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:298 +#, 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" - -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "Hindi mai-mmap ang talaksang walang laman" +#: 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:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "Hindi makapag-bukas ng pipe para sa %s" +#: methods/rsh.cc:343 +msgid "Connection closed prematurely" +msgstr "Nagsara ng maaga ang koneksyon" -#: 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:33 +msgid "Bad default setting!" +msgstr "Maling nakatakda na default!" -#: apt-pkg/contrib/mmap.cc:146 -#, fuzzy -msgid "Unable to close mmap" -msgstr "Hindi mabuksan %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 "Pindutin ang enter upang magpatuloy." -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -#, fuzzy -msgid "Unable to synchronize mmap" -msgstr "Hindi ma-invoke " +#: 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 "Hindi makagawa ng mmap ng %lu na byte" +#: 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" -#: 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:184 #, 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 =." -msgstr "" -"Opsyon %s: Ang pagtakda ng aytem sa pagkaayos ay nangangailangan ng " -"=." +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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3208,12 +3221,7 @@ msgstr "" " -c=? Basahin ang talaksang pagkaayos na ito\n" " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Hindi ma-stat ang %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?" @@ -3335,17 +3343,17 @@ msgstr "Walang mga pinili na tugma" msgid "Some files are missing in the package file group `%s'" msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Nasira ang DB, pinalitan ng pangalan ang talaksan sa %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Luma ang DB, sinusubukang maupgrade ang %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3354,105 +3362,105 @@ msgstr "" "Hindi tanggap ang anyo ng DB. Kung kayo ay nagsariwa mula sa nakaraang " "bersiyon ng apt, tanggalin at likhain muli ang database." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Hindi mabuksan ang talaksang DB %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Bigo ang pagbasa ng link %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Walang kontrol rekord ang arkibo" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Hindi makakuha ng cursor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: Hindi mabasa ang directory %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: Hindi ma-stat %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Mga error ay tumutukoy sa talaksang " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Bigo sa pag-resolba ng %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Bigo ang paglakad sa puno" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Bigo ang pagbukas ng %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Bigo ang pagbasa ng link %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Bigo ang pag-unlink ng %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Bigo ang pag-link ng %s sa %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " DeLink limit na %sB tinamaan.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Walang field ng pakete ang arkibo" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s ay walang override entry\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Tagapangalaga ng %s ay %s hindi %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s ay walang override entry para sa pinagmulan\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ay wala ring override entry na binary\n" diff --git a/po/tr.po b/po/tr.po index d7511a864..4b295f120 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 \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2013-02-18 03:41+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian l10n Turkish\n" @@ -20,3236 +20,3249 @@ msgstr "" "X-Generator: Poedit 1.5.5\n" "X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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." + +#: apt-pkg/cachefile.cc:116 +msgid "The list of sources could not be read." +msgstr "Kaynak listesi okunamadı." + +#: apt-pkg/pkgcache.cc:150 +msgid "Empty package cache" +msgstr "Boş paket önbelleği" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Paket önbelleği dosyası bozulmuş" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Paket önbelleği dosyası uyumsuz bir sürümde" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Paket önbellek dosyası bozulmuş, çok küçük" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "%s paket dosyası eşzamansız." +msgid "This APT does not support the versioning system '%s'" +msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor." -#: 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/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Paket önbelleği farklı bir mimarı için yapılmış" -#: 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:324 +msgid "Depends" +msgstr "Bağımlılıklar" -#: 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:324 +msgid "PreDepends" +msgstr "ÖnBağımlılıklar" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Önerdikleri" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Tavsiye ettikleri" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Çakışmalar" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Değiştirilenler" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Eskiyenler" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Bozdukları" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Geliştirdikleri" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "önemli" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "gerekli" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "standart" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "seçimlik" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "ilave" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "%s paketi bulunamadı" +msgid "Index file type '%s' is not supported" +msgstr "İndeks dosyası türü '%s' desteklenmiyor" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Paket dosyaları:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex derleme hatası - %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 "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor." +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -msgstr "Sabitlenmiş paketler:" +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(bulunamadı)" +#: apt-pkg/pkgcachegen.cc:280 +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-cache.cc:1586 -msgid " Installed: " -msgstr " Kurulu: " +#: apt-pkg/pkgcachegen.cc:283 +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-cache.cc:1587 -msgid " Candidate: " -msgstr " Aday: " +#: apt-pkg/pkgcachegen.cc:286 +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-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(hiçbiri)" +#: apt-pkg/pkgcachegen.cc:289 +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-cache.cc:1620 -msgid " Package pin: " -msgstr " Paket sabitleme: " +#: apt-pkg/pkgcachegen.cc:598 +#, 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ı" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Sürüm çizelgesi:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Paket listeleri okunuyor" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "Dosya Sağlananları Toplanıyor" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s (%s için) %s %s tarihinde derlendi\n" +msgid "Unable to write to %s" +msgstr "%s dosyasına yazılamıyor" -#: 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +msgstr "Çözücüye senaryo gönder" -#: 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/edsp.cc:241 +msgid "Send request to solver" +msgstr "Çözücüye istek gönder" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "'%s', '%s' konumuna bağlanamadı" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "Çözüm almak için hazırlan" -#: 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/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" -#: 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/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" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "Değişkenler (argüman) çiftler halinde değil" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "yeniden adlandırma başarısız, %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 "" -"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/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Sağlama toplamları eşleşmiyor" -#: 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-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Boyutlar eşleşmiyor" -#: 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/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Geçersiz işlem: %s" -#: 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/acquire-item.cc:1679 +#, 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ı)" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı" -#: 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/acquire-item.cc:1737 +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" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Couldn't find package %s" -msgstr "%s paketi bulunamadı" +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." -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s elle kurulmuş olarak ayarlı.\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:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\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." +"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 "" -"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " -"manual' kullanı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" - -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "İndirme dizini kilitlenemiyor" - -#: 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" +"İ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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "%s paketinin kaynak paketi bulunamadı" +msgid "GPG error: %s: %s" +msgstr "GPG hatası: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"NOT: '%s' paketlemesi '%s' sürüm kontrol sistemiyle aşağıdaki adreste " -"yapılmaktadır:\n" -"%s\n" +"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " +"düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 #, 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" +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:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "%s içindeki boş alan miktarı belirlenemedi" +msgid "Vendor block %s contains no fingerprint" +msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "You don't have enough free space in %s" -msgstr "%s üzerinde yeterli boş alan yok" +msgid "List directory %spartial is missing." +msgstr "Liste dizini %spartial bulunamadı." -#. 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.cc:92 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "%sB/%sB kaynak arşivi indirilecek.\n" +msgid "Archives directory %spartial is missing." +msgstr "Arşiv dizini %spartial bulunamadı." -#. TRANSLATOR: The required 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.cc:100 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "%sB kaynak arşivi indirilecek.\n" +msgid "Unable to lock directory %s" +msgstr "%s dizini kilitlenemiyor" -#: cmdline/apt-get.cc:902 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Fetch source %s\n" -msgstr "%s kaynağını al\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "Bazı arşivler alınamadı." +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Alınan dosya: %li / %li (%s kaldı)" -#: 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" +#: apt-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Alınan dosya: %li / %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.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 "Failed to fetch %s %s\n" +msgstr "%s ağdan alınamadı. %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 "" +"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki " +"sürümleri kullanıldı." + +#: 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." -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Paket açma komutu '%s' başarısız.\n" +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." -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" +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:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "İnşa komutu '%s' başarısız oldu.\n" +msgid "Did not understand pin type %s" +msgstr "İğne türü %s anlaşılamadı" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Alt süreç başarısız" +#: 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: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/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt." +"conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' paketi yapılandırılamadı. " -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 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." +"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:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" +msgid "Line %u too long in source list %s." +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." + +#: apt-pkg/cdrom.cc:571 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM ayrılıyor...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM bağlama noktası %s kullanılıyor\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "Disk bekleniliyor...\n" + +#: 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 "Stored label: %s\n" +msgstr "Kayıtlı etiket: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Disk, indeks dosyaları için taranıyor...\n" + +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" 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." +"%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " +"bulundu\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." +"Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya " +"da yanlış mimariye sahip." -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, 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 "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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" 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" +"Disk adı: \n" +"'%s'\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok" +"%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası " +"bulunamıyor." + +#: 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" -#: cmdline/apt-get.cc:1380 +#: 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 "Failed to satisfy %s dependency for %s: %s" -msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s" +msgid "Failed to open StateFile %s" +msgstr "Durum dosyası (StateFile) %s açılamadı." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "%s için inşa bağımlılıkları karşılanamadı." +msgid "Failed to write temporary StateFile %s" +msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu" -#: 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/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Paket dosyası %s ayrıştırılamadı (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "%s (%s) paketinin değişim günlüğü" +msgid "Unable to parse package file %s (2)" +msgstr "Paket dosyası %s ayrıştırılamadı (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Desteklenen birimler:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "%s paketi bulunamadı" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "'%s' görevi bulunamadı" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" + +#: apt-pkg/cacheset.cc:616 +#, 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:627 +#, 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:634 apt-pkg/cacheset.cc:641 +#, 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 "" -"Kullanım: apt-get [seçenekler] komut\n" -" apt-get [seçenekler] install|remove paket1 [paket2 ...]\n" -" apt-get [seçenekler] kaynak paket1 [paket2 ...]\n" -"\n" -"apt-get, paket indirmek ve kurmakta kullanılan basit bir komut satırı\n" -"arayüzüdür. En sık kullanılan komutlar güncelleme (update) ve kurma\n" -"(install) komutlarıdır.\n" -"\n" -"Komutlar:\n" -" update - Paket listelerini yenile\n" -" upgrade - Yükseltme işlemini gerçekleştir\n" -" install - Yeni paket kur (paket adı libc6.deb değil libc6 şeklinde " -"olmalıdır)\n" -" remove - Paket(leri) kaldır\n" -" autoremove - Kullanılmayan tüm paketleri otomatik olarak kaldır\n" -" purge - Paketleri ve yapılandırma dosyalarını kaldır\n" -" source - Kaynak paket dosyalarını indir\n" -" build-dep - Kaynak paketlerin inşa bağımlılıklarını yapılandır\n" -" dist-upgrade - Dağıtım yükseltme, ayrıntılı bilgi için apt-get(8)\n" -" dselect-upgrade - dselect yapılandırmalarına uy\n" -" clean - İndirilmiş olan arşiv dosyalarını sil\n" -" autoclean - İndirilmiş olan eski arşiv dosyalarını sil\n" -" check - Eksik bağımlılık olmadığından emin ol\n" -" changelog - Belirtilen paketlerin değişim günlüklerini indir ve " -"görüntüle\n" -" download - İkili paketleri içinde bulunulan dizine indir\n" -"\n" -"Seçenekler:\n" -" -h Bu yardım metni.\n" -" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" -" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" -" -d Yalnızca indir - Paketleri açmaz ve kurmaz\n" -" -s Bir şey yapma. Simülasyon kipinde çalış\n" -" -y Tüm sorulara Evet yanıtını ver ve soru sorma\n" -" -f Eksik bağımlılıklara sahip bir sistemi onarmaya çalış\n" -" -m Eksik paketleri görmezden gel ve işleme devam et\n" -" -u Yükseltilen paketlerin listesini de görüntüle\n" -" -b Kaynak paketi indirdikten sonra inşa et\n" -" -V Sürüm numaralarını daha ayrıntılı göster\n" -" -c=? Belirtilen yapılandırma dosyası kullan\n" -" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" -"Ayrıntılı bilgi için apt-get(8), sources.list(5) ve apt.conf(5) rehber\n" -"sayfalarına bakabilirsiniz.\n" -" Bu APT'nin Süper İnek Güçleri vardır.\n" - -#: cmdline/apt-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" - -#: 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" +"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " +"seçilemiyor" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s kurulu olmadığı için işaretlenemedi.\n" +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" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s zaten elle kurulmuş olarak ayarlı.\n" +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" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n" +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" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s zaten tutulacak şekilde ayarlanmış.\n" +msgid "Unable to parse Release file %s" +msgstr "'Release' dosyası (%s) ayrıştırılamadı" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n" +msgid "No sections in Release file %s" +msgstr "'Release' dosyası %s içinde hiç bölüm yok" -#: 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/indexrecords.cc:136 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "%s için beklenildi ama o gelmedi" +msgid "No Hash entry in Release file %s" +msgstr "'Release' dosyasında (%s) sağlama girdisi yok" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s set on hold.\n" -msgstr "%s paketi tutuluyor.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "Canceled hold on %s.\n" -msgstr "%s paketini tutma işlemi iptal edildi.\n" - -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" - -#: 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 "" -"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." +msgid "Invalid 'Date' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" -#: 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/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/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Unable to read the cdrom database %s" -msgstr "'cdrom' veritabanı %s okunamıyor" - -#: methods/cdrom.cc:212 -msgid "" -"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " -"cannot be used to add new CD-ROMs" +msgid "Malformed line %lu in source list %s ([option] unparseable)" msgstr "" -"Lütfen bu CD-ROM'un APT tarafından tanınması için apt-cdrom aracını " -"kullanın. apt-get update yeni CD-ROM'lar eklemek için kullanılamaz." - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Yanlış CD-ROM" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] " +"ayrıştırılamıyor)" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "%s konumundaki CD-ROM çıkarılamıyor, hala kullanımda olabilir." - -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "Disk bulunamadı." - -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "Dosya bulunamadı" - -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "Durum bilgisi okunamadı" - -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "Değişiklik zamanı ayarlanamadı" - -#: 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" - -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "Giriş yapılıyor" - -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "Eş adı belirlenemiyor" - -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "Yerel ad belirlenemiyor" +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:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:184 #, 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] is not an assignment)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama " +"değil)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:190 #, 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 ([%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:232 +#: apt-pkg/sourcelist.cc:193 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS başarısız, sunucunun iletisi: %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] key %s has no value)" 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ı ([%3$s] %4$s " +"anahtarına değer atanmamış)" -#: methods/ftp.cc:280 +#: apt-pkg/sourcelist.cc:206 #, 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 (URI)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE başarısız, sunucunun iletisi: %s" - -#: 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ı" - -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "Sunucu bağlantıyı kesti" - -#: 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ı" - -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -msgstr "Bir yanıt arabelleği taşırdı." - -#: methods/ftp.cc:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "İletişim kuralları bozulması" - -#: 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ı" - -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "Bir soket oluşturulamadı" - -#: 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ı" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Başarısız" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Edilgen sokete bağlanılamadı." - -#: methods/ftp.cc:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo bir dinleme soketi alamıyor" - -#: 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" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" -#: methods/ftp.cc:760 -msgid "Could not determine the socket's name" -msgstr "Soketin adı belirlenemedi" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" -#: methods/ftp.cc:792 -msgid "Unable to send PORT command" -msgstr "PORT komutu gönderilemedi" +#: apt-pkg/sourcelist.cc:217 +#, 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)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Bilinmeyen adres ailesi %u (AF_*)" +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:811 +#: apt-pkg/sourcelist.cc:335 #, c-format -msgid "EPRT failed, server said: %s" -msgstr "EPRT başarısız, sunucunun iletisi: %s" +msgid "Opening %s" +msgstr "%s Açılıyor" -#: methods/ftp.cc:831 -msgid "Data socket connect timed out" -msgstr "Veri soketi bağlantısı zaman aşımına uğradı" +#: 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:838 -msgid "Unable to accept connection" -msgstr "Bağlantı kabul edilemiyor" +#: 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:877 methods/server.cc:352 methods/rsh.cc:316 -msgid "Problem hashing file" -msgstr "Dosya sağlaması yapılamadı" +#: 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:890 +#: apt-pkg/deb/dpkgpm.cc:95 #, c-format -msgid "Unable to fetch file, server said '%s'" -msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" - -#: methods/ftp.cc:905 methods/rsh.cc:335 -msgid "Data socket timed out" -msgstr "Veri soketi zaman aşımına uğradı" +msgid "Installing %s" +msgstr "%s kuruluyor" -#: 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 "Veri aktarımı başarısız, sunucunun iletisi: '%s'" +msgid "Configuring %s" +msgstr "%s yapılandırılıyor" -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Sorgu" +#: 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:1128 -msgid "Unable to invoke " -msgstr "Çağrılamıyor " +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "%s tamamen kaldırılıyor" -#: methods/connect.cc:76 +#: apt-pkg/deb/dpkgpm.cc:99 #, c-format -msgid "Connecting to %s (%s)" -msgstr "Bağlanılıyor %s (%s)" +msgid "Noting disappearance of %s" +msgstr "%s paketinin kaybolduğu not ediliyor" -#: 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 "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" -#: 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 için bir soket oluşturulamadı (f=%u t=%u p=%u)" +msgid "Directory '%s' missing" +msgstr "'%s' dizini bulunamadı" -#: 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 bağlantısı başlatılamıyor (%s)." +msgid "Could not open file '%s'" +msgstr "'%s' dosyası açılamadı" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:989 #, 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 "Preparing %s" +msgstr "%s hazırlanıyor" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Adrese bağlanılamadı: %s:%s (%s)." +msgid "Unpacking %s" +msgstr "%s paketi açılıyor" -#. 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 "Bağlanılıyor: %s" +msgid "Preparing to configure %s" +msgstr "%s paketini yapılandırmaya hazırlanılıyor" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:997 #, c-format -msgid "Could not resolve '%s'" -msgstr "'%s' çözümlenemedi" +msgid "Installed %s" +msgstr "%s kuruldu" -#: methods/connect.cc:205 +#: apt-pkg/deb/dpkgpm.cc:1002 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" +msgid "Preparing for removal of %s" +msgstr "%s paketinin kaldırılmasına hazırlanılıyor" -#: 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/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "%s kaldırıldı" -#: 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) adresi çözümlenirken bir şeyler kötü gitti" +msgid "Preparing to completely remove %s" +msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1010 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Bağlanılamıyor %s:%s:" +msgid "Completely removed %s" +msgstr "%s tamamen kaldırıldı" -#: 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/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: 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/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "%s dosyasına yazılamıyor" -#: 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/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +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:1088 +msgid "Is stdout a terminal?" msgstr "" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "gpgv çalıştırılırken bilinmeyen hata" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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 için beklenildi ama o gelmedi" -#: 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/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "İşlem yarıda kesildi" -#: 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/deb/dpkgpm.cc:1625 +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ı" -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor" -#: methods/http.cc:509 -msgid "Error writing to the file" -msgstr "Dosyaya yazılamadı" +#: apt-pkg/deb/dpkgpm.cc:1632 +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." -#: methods/http.cc:523 -msgid "Error reading from server. Remote end closed connection" -msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı" +#: apt-pkg/deb/dpkgpm.cc:1638 +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ı" -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "Sunucundan okunurken hata" +#: apt-pkg/deb/dpkgpm.cc:1645 +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ı" -#: methods/http.cc:561 -msgid "Error writing to file" -msgstr "Dosyaya yazılamadı" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, 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ı" -#: methods/http.cc:621 -msgid "Select failed" -msgstr "Seçme başarısız" +#: apt-pkg/deb/dpkgpm.cc:1679 +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ı" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Bağlantı zaman aşımına uğradı" +#: apt-pkg/deb/debsystem.cc:91 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor " +"olmasın?" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Çıktı dosyasına yazılırken hata" +#: 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?" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Başlıklar bekleniyor" +#. 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 kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. " -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Kötü başlık satırı" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "Kilitlenmemiş" -#: 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" +#. 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." -#: 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" +#. 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." -#: 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" +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:420 +#, c-format +msgid "%limin %lis" +msgstr "%li dk. %li sn." -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "HTTP sunucusunun aralık desteği bozuk" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%li sn." -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "Bilinmeyen tarih biçimi" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "%s seçimi bulunamadı" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Kötü başlık verisi" +#: apt-pkg/contrib/fileutl.cc:191 +#, 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" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "Bağlantı başarısız" +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kilit dosyası %s açılamadı" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "İç hata" +#: apt-pkg/contrib/fileutl.cc:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "Yükseltme hesaplanıyor... " +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "%s kilidi alınamadı" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "Bitti" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" msgstr "" +"'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor." -#: apt-private/private-list.cc:131 -msgid "Listing" +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" msgstr "" +"'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor." -#: apt-private/private-list.cc:164 +#: apt-pkg/contrib/fileutl.cc:422 #, 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 "Bağımlılıklar düzeltiliyor..." - -#: apt-private/private-cachefile.cc:96 -msgid " failed." -msgstr " başarısız oldu." +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için " +"yok sayılıyor." -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "Bağımlılıklar düzeltilemedi" +#: apt-pkg/contrib/fileutl.cc:841 +#, 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-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "Yükseltme kümesi küçültülemiyor" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s altsüreci %u sinyali aldı" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Tamamlandı" +#: apt-pkg/contrib/fileutl.cc:847 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-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/contrib/fileutl.cc:849 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-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Yazma hatası" -#: 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:951 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gzip dosyası %s kapatılamadı" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Kuruldu]" +#: apt-pkg/contrib/fileutl.cc:1139 +#, c-format +msgid "Could not open file %s" +msgstr "%s dosyası açılamadı" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Kuruldu]" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Dosya tanımlayıcı %d açılamadı" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Altsüreç IPC'si oluşturulamadı" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Kuruldu]" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Sıkıştırma programı çalıştırılamadı " -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Kuruldu]" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Okuma hatası" -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:1552 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "read, still have %llu to read but none left" +msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "write, yazılması gereken %llu bayt yazılamıyor" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "but %s is installed" -msgstr "ama %s kurulu" +msgid "Problem closing the file %s" +msgstr "%s dosyası kapatılamadı" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "but %s is to be installed" -msgstr "ama %s kurulacak" +msgid "Problem renaming the file %s to %s" +msgstr "%s dosyası %s olarak yeniden adlandırılamadı" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "ama kurulabilir değil" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "%s dosyasından bağ kaldırma sorunu" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "ama o bir sanal paket" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Dosya eşitlenirken sorun çıktı" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "ama kurulu değil" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "%s durum bilgisi alınamadı" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "ama kurulmayacak" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Hata!" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " ya da" +#: apt-pkg/contrib/progress.cc:150 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Bitti" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "Aşağıdaki YENİ paketler kurulacak:" +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Bitti" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Aşağıdaki paketler KALDIRILACAK:" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Boş dosya mmap yapılamıyor" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Dosya tanımlayıcı %i çoğaltılamadı" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Aşağıdaki paketler yükseltilecek:" +#: 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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap kapatılamıyor" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap eşlenemiyor" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%s (due to %s) " -msgstr "%s (%s nedeniyle) " +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu baytlık mmap yapılamaz" -#: apt-private/private-output.cc:675 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Dosya kesilemedi" + +#: 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 "" -"UYARI: Aşağıdaki temel paketler kaldırılacak.\n" -"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!" +"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-output.cc:706 +#: apt-pkg/contrib/mmap.cc:446 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " +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:710 -#, c-format -msgid "%lu reinstalled, " -msgstr "%lu paket yeniden kurulacak, " +#: 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:712 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "%lu downgraded, " -msgstr "%lu paketin sürümü düşürülecek, " +msgid "Unable to stat the mount point %s" +msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı" -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Cdrom durum bilgisi alınamadı" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\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:740 -msgid "[Y/n]" -msgstr "[E/h]" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tanınamayan tür kısaltması: '%c'" -#. 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:746 -msgid "[y/N]" -msgstr "[e/H]" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "Yapılandırma dosyası (%s) açılıyor" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" -msgstr "E" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" -msgstr "H" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:839 #, c-format -msgid "Regex compilation error - %s" -msgstr "Regex derleme hatası - %s" +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz" -#: 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-pkg/contrib/configuration.cc:879 +#, 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-update.cc:90 +#: apt-pkg/contrib/configuration.cc:886 #, 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özdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:899 #, 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 "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" +#: apt-pkg/contrib/configuration.cc:902 +#, 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-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" - -#: 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/contrib/configuration.cc:952 +#, 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-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "İç hata, Sıralama tamamlanamadı" +#. 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-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/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." -#. 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 +#: 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 arşiv dosyası indirilecek.\n" +msgid "Command line option %s is not understood" +msgstr "Komut satırı seçeneği %s anlaşılamadı" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/cmndline.cc:168 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "%sB arşiv dosyası indirilecek.\n" +msgid "Command line option %s is not boolean" +msgstr "Komut satırı seçeneği %s mantıksal değer değil" -#. TRANSLATOR: The required space between number and unit 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 +#: 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 "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n" +msgid "Option %s requires an argument." +msgstr "%s seçeneği bir bağımsız değişkene gerek duyar." -#. TRANSLATOR: The required space between number and unit 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 +#: 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 "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n" +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"%s seçeneği: Yapılandırma öğesi tanımlaması = şeklinde değer " +"içermelidir." -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "You don't have enough free space in %s." -msgstr "%s içinde yeterli boş alanınız yok." +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-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/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "'%s' seçeneği çok uzun" -#: 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/contrib/cmndline.cc:341 +#, 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." -#. 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-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Geçersiz işlem: %s" -#: apt-private/private-install.cc:222 +#: 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 "" -"Tehlikeli bir iş yapmak üzeresiniz.\n" -"Devam etmek için '%s' ifadesini yazınız\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" + +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +msgstr "Toplam paketlerin adları: " -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Vazgeç." +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Toplam paket yapıları: " -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "Devam etmek istiyor musunuz?" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Normal paketler: " -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "Bazı dosyalar indirilemedi" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Saf sanal paketler: " -#: apt-private/private-install.cc:320 -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:361 +msgid " Single virtual packages: " +msgstr " Tekil sanal paketler: " -#: 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" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Karışık sanal paketler: " -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "Eksik paketler düzeltilemedi." +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Eksik: " -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "Kurulum iptal ediliyor." +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Toplam farklı sürümler: " -#: 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] "" -"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:367 +msgid "Total distinct descriptions: " +msgstr "Toplam farklı açıklamalar: " -#: 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." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "Toplam bağımlılıklar: " -#: 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" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +msgstr "Toplam sürüm/dosya ilişkileri: " -#: 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 "" -"AutoRemover yapmaması gereken bir yıkıma\n" -"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "Toplam Tanım/Dosya ilişkileri: " -#. -#. 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:" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "Toplam destekleme eşleştirmeleri: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "İç hata, AutoRemover bazı şeyleri bozdu" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Toplam birikmiş dizgiler: " -#: 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] "" -"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-cache.cc:402 +msgid "Total dependency version space: " +msgstr "Toplam bağlımlık sürümü alanı: " + +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Toplam serbest alan: " -#: apt-private/private-install.cc:517 +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Hesaplanan toplam alan: " + +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: 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 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" +msgid "Package file %s is out of sync." +msgstr "%s paket dosyası eşzamansız." -#: 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." +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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-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:" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "En az bir arama örüntüsü vermelisiniz" -#: 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:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği " -"vermeden deneyin (ya da bir çözüm belirtin)." +"Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' " +"komutunu kullanın." -#: 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 "" -"Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n" -"olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n" -"bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n" -"olduğunu gösterir." +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Paket dosyaları:" -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Bozuk paketler" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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:712 -msgid "The following extra packages will be installed:" -msgstr "Aşağıdaki ek paketler de kurulacak:" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Sabitlenmiş paketler:" -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Önerilen paketler:" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(bulunamadı)" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Tavsiye edilen paketler:" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Kurulu: " -#: apt-private/private-install.cc:825 -#, 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-cache.cc:1639 +msgid " Candidate: " +msgstr " Aday: " -#: apt-private/private-install.cc:829 -#, 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-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(hiçbiri)" -#: apt-private/private-install.cc:841 -#, 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-cache.cc:1672 +msgid " Package pin: " +msgstr " Paket sabitleme: " -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s zaten en yeni sürümde.\n" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Sürüm çizelgesi:" -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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' paketinin '%1$s' (%2$s) sürümü seçildi\n" +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s (%s için) %s %s tarihinde derlendi\n" + +#: cmdline/apt-cache.cc:1801 +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-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" +#: cmdline/apt-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'" -#. 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 "" -"'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: " -"'%s'?\n" +#: 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:947 +#: cmdline/apt-cdrom.cc:139 #, 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 "Failed to mount '%s' to '%s'" +msgstr "'%s', '%s' konumuna bağlanamadı" -#: apt-private/private-main.cc:32 +#: cmdline/apt-cdrom.cc:178 msgid "" -"NOTE: This is only a simulation!\n" -" apt-get needs root privileges for real execution.\n" -" Keep also in mind that locking is deactivated,\n" -" so don't depend on the relevance to the real current situation!" -msgstr "" -"NOT: Bu sadece simülasyondur!\n" -" apt-get sadece root hakları ile gerçekten kullanılabilir.\n" -" Unutmayın ki simülasyonda kilitleme yapılmaz,\n" -" bu nedenle bu simülasyonun tam uygunluğuna güvenmeyin." - -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!" - -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" - -#: 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-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Paketler doğrulanmadan kurulsun mu?" - -#: apt-private/private-download.cc:91 apt-pkg/update.cc:77 -#, 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ı" - -#: 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" +"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 "Bağlandı " - -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "Alınıyor: " - -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "Yoksay " - -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "Hata " - -#: apt-private/acqprogress.cc:146 -#, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n" +#: 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/acqprogress.cc:236 -#, c-format -msgid " [Working]" -msgstr " [Çalışıyor]" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "Değişkenler (argüman) çiftler halinde değil" -#: 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 "" -"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" +"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" -#. 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 okunamıyor" +#: 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ı" -#: 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 olarak değiştirilemedi" +#: 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ı" -#. FIXME: fallback to a default mirror here instead -#. and provide a config option to define that default -#: methods/mirror.cc:280 -#, c-format -msgid "No mirror file '%s' found " -msgstr "'%s' yansı dosyası bulunamadı " +#: 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ı" -#. 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 "Yansı dosyası %s okunamıyor" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Yansı dosyası %s okunamıyor" +msgid "Can not find version '%s' of package '%s'" +msgstr "'%2$s' paketinin mevcut olmayan '%1$s' sürümünü görmezden gel" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, 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." +msgid "Couldn't find package %s" +msgstr "%s paketi bulunamadı" -#: 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" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s elle kurulmuş olarak ayarlı.\n" -#: 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" +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\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 "" -"ü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ı" +"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " +"manual' kullanın." -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "Yönlendirme tahsisi başarısız oldu" +#: 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-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "AddDiversion'da iç hata" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "İndirme dizini kilitlenemiyor" -#: 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" +#: 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-inst/filelist.cc:506 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" +msgid "Unable to find a source package for %s" +msgstr "%s paketinin kaynak paketi bulunamadı" -#: apt-inst/filelist.cc:549 +#: cmdline/apt-get.cc:786 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "%s/%s yapılandırma dosyası zaten mevcut" +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-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 yolu çok uzun" +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-inst/extract.cc:132 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Unpacking %s more than once" -msgstr "%s paketi bir çok kez açıldı" +msgid "Skipping already downloaded file '%s'\n" +msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "The directory %s is diverted" -msgstr "%s dizini yönlendirilmiş" +msgid "Couldn't determine free space in %s" +msgstr "%s içindeki boş alan miktarı belirlenemedi" -#: apt-inst/extract.cc:152 +#: cmdline/apt-get.cc:884 #, 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" +msgid "You don't have enough free space in %s" +msgstr "%s üzerinde yeterli boş alan yok" -#: 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:893 #, c-format -msgid "Failed to stat %s" -msgstr "%s durum bilgisi alınamadı" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB/%sB kaynak arşivi indirilecek.\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:898 #, c-format -msgid "Failed to rename %s to %s" -msgstr "%s, %s olarak yeniden adlandırılamadı" +msgid "Need to get %sB of source archives.\n" +msgstr "%sB kaynak arşivi indirilecek.\n" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:904 #, c-format -msgid "The directory %s is being replaced by a non-directory" -msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi" +msgid "Fetch source %s\n" +msgstr "%s kaynağını al\n" -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "Düğüm sağlama kovasında bulunamadı" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Bazı arşivler alınamadı." -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Yol çok uzun" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:952 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "%s paketinin sürümü yok" +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:964 #, 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 "Unpack command '%s' failed.\n" +msgstr "Paket açma komutu '%s' başarısız.\n" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Unable to stat %s" -msgstr "%s durum bilgisi alınamadı" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#: cmdline/apt-get.cc:993 #, c-format -msgid "Failed to write file %s" -msgstr "%s dosyasına yazılamadı" +msgid "Build command '%s' failed.\n" +msgstr "İnşa komutu '%s' başarısız oldu.\n" -#: apt-inst/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "%s dosyası kapatılamadı" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Alt süreç başarısız" -#: 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 "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik" +#: cmdline/apt-get.cc:1031 +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-inst/deb/debfile.cc:132 +#: cmdline/apt-get.cc:1056 #, 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ı" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"%s mimarisine uygun mimari bilgileri mevcut değil. Kurulumu için apt.conf(5) " +"rehber sayfasındaki APT::Architectures kısmına göz atın." -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "Geçersiz arşiv imzası" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "Arşiv üyesi başlığı okuma hatası" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1296 #, c-format -msgid "Invalid archive member header %s" -msgstr "Geçerşiz arşiv üyesi başlığı %s" +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/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "Geçersiz arşiv üyesi başlığı" +#: cmdline/apt-get.cc:1314 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "Arşiv çok kısa" +#: cmdline/apt-get.cc:1337 +#, 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." -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "Arşiv başlıkları okunamadı" +#: cmdline/apt-get.cc:1376 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü " +"gerekli sürüm şartlarını karşılamıyor" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Boru oluşturulamadı" +#: cmdline/apt-get.cc:1382 +#, 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" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "Gzip çalıştırılamadı " +#: cmdline/apt-get.cc:1405 +#, 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-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "Bozuk arşiv" +#: cmdline/apt-get.cc:1420 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s için inşa bağımlılıkları karşılanamadı." -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "İnşa bağımlılıklarını işleme başarısız oldu" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Bilinmeyen TAR başlığı türü %u, üye %s" +msgid "Changelog for %s (%s)" +msgstr "%s (%s) paketinin değişim günlüğü" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "%s için dosya bilgisi alınamadı." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Desteklenen birimler:" -#: apt-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1657 +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" +msgid "Unable to read the cdrom database %s" +msgstr "'cdrom' veritabanı %s okunamıyor" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Tavsiye ettikleri" +#: 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:322 -msgid "Conflicts" -msgstr "Çakışmalar" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Yanlış CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Değiştirilenler" +#: 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:323 -msgid "Obsoletes" -msgstr "Eskiyenler" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk bulunamadı." -#: apt-pkg/pkgcache.cc:323 -msgid "Breaks" -msgstr "Bozdukları" +#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 +msgid "File not found" +msgstr "Dosya bulunamadı" -#: apt-pkg/pkgcache.cc:323 -msgid "Enhances" -msgstr "Geliştirdikleri" +#: 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/pkgcache.cc:334 -msgid "important" -msgstr "önemli" +#: 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/pkgcache.cc:334 -msgid "required" -msgstr "gerekli" +#: 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/pkgcache.cc:334 -msgid "standard" -msgstr "standart" +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:177 +msgid "Logging in" +msgstr "Giriş yapılıyor" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "seçimlik" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Eş adı belirlenemiyor" -#: apt-pkg/pkgcache.cc:335 -msgid "extra" -msgstr "ilave" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Yerel ad belirlenemiyor" -#: apt-pkg/pkgrecords.cc:38 +#: methods/ftp.cc:219 methods/ftp.cc:247 #, c-format -msgid "Index file type '%s' is not supported" -msgstr "İndeks dosyası türü '%s' desteklenmiyor" - -#: apt-pkg/pkgcachegen.cc:93 -msgid "Cache has an incompatible versioning system" -msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" +msgid "The server refused the connection and said: %s" +msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %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 paketi işlenirken sorunlarla karşılaşıldı (%s%d)" - -#: 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." - -#: 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." +msgid "USER failed, server said: %s" +msgstr "USER başarısız, sunucunun iletisi: %s" -#: 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:232 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS başarısız, sunucunun iletisi: %s" -#: 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: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:576 +#: methods/ftp.cc:280 #, 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 "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:1211 +#: methods/ftp.cc:306 #, c-format -msgid "Couldn't stat source package list %s" -msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" +msgid "TYPE failed, server said: %s" +msgstr "TYPE 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: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/pkgcachegen.cc:1316 -msgid "Collecting File Provides" -msgstr "Dosya Sağlananları Toplanıyor" +#: methods/ftp.cc:350 +msgid "Server closed the connection" +msgstr "Sunucu bağlantıyı kesti" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "%s dosyasına yazılamıyor" +#: methods/ftp.cc:360 methods/rsh.cc:209 +msgid "A response overflowed the buffer." +msgstr "Bir yanıt arabelleği taşırdı." -#: 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:377 methods/ftp.cc:389 +msgid "Protocol corruption" +msgstr "İletişim kuralları bozulması" -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "Çözücüye senaryo gönder" +#: 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:241 -msgid "Send request to solver" -msgstr "Çözücüye istek gönder" +#: 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/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "Çözüm almak için hazırlan" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Başarısız" -#: 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" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Edilgen sokete bağlanılamadı." -#: 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" +#: 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: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:749 +msgid "Could not bind a socket" +msgstr "Bir sokete bağlanılamadı" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Sağlama toplamları eşleşmiyor" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Soket dinlenemedi" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Boyutlar eşleşmiyor" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Soketin adı belirlenemedi" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Geçersiz işlem: %s" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "PORT komutu gönderilemedi" -#: 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 "" -"'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list " -"dosyasındaki girdi ya da satır hatalı)" +msgid "Unknown address family %u (AF_*)" +msgstr "Bilinmeyen adres ailesi %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 "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı" +msgid "EPRT failed, server said: %s" +msgstr "EPRT başarısız, sunucunun iletisi: %s" -#: 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:831 +msgid "Data socket connect timed out" +msgstr "Veri soketi bağlantısı zaman aşımına uğradı" + +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "Bağlantı kabul edilemiyor" + +#: 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:1677 +#: 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 "" -"%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun " -"güncelleştirmeleri uygulanmayacak." +msgid "Unable to fetch file, server said '%s'" +msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" + +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Veri soketi zaman aşımına uğradı" -#: apt-pkg/acquire-item.cc:1699 +#: methods/ftp.cc:935 #, c-format -msgid "Conflicting distribution: %s (expected %s but got %s)" -msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" +msgid "Data transfer failed, server said '%s'" +msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'" -#: apt-pkg/acquire-item.cc:1729 +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "Sorgu" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Çağrılamıyor " + +#: 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 "" -"İ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" +msgid "Connecting to %s (%s)" +msgstr "Bağlanılıyor %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 hatası: %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 paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " -"düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)" +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-item.cc:1933 +#: methods/connect.cc:100 #, 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 "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s bağlantısı başlatılamıyor (%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 "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok." +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/vendorlist.cc:85 +#: methods/connect.cc:126 #, c-format -msgid "Vendor block %s contains no fingerprint" -msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" +msgid "Could not connect to %s:%s (%s)." +msgstr "Adrese bağlanılamadı: %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 "Liste dizini %spartial bulunamadı." +msgid "Connecting to %s" +msgstr "Bağlanılıyor: %s" -#: apt-pkg/acquire.cc:91 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format -msgid "Archives directory %spartial is missing." -msgstr "Arşiv dizini %spartial bulunamadı." +msgid "Could not resolve '%s'" +msgstr "'%s' çözümlenemedi" -#: apt-pkg/acquire.cc:99 +#: methods/connect.cc:205 #, c-format -msgid "Unable to lock directory %s" -msgstr "%s dizini kilitlenemiyor" +msgid "Temporary failure resolving '%s'" +msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" -#. 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' çözümlenirken geçici bir sorunla karşılaşıldı" + +#: methods/connect.cc:211 #, c-format -msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Alınan dosya: %li / %li (%s kaldı)" +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti" -#: apt-pkg/acquire.cc:901 +#: methods/connect.cc:258 #, c-format -msgid "Retrieving file %li of %li" -msgstr "Alınan dosya: %li / %li" +msgid "Unable to connect to %s:%s:" +msgstr "Bağlanılamıyor %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 "" -"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki " -"sürümleri kullanıldı." +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" -#: 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/gpgv.cc:172 +msgid "At least one invalid signature was encountered." +msgstr "En az bir geçersiz imza ile karşılaşıldı." -#: apt-pkg/policy.cc:83 +#: 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 "" -"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::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle " -"bir sürüm yok." -#: apt-pkg/policy.cc:422 -#, c-format -msgid "Invalid record in the preferences file %s, no Package header" -msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok" - -#: apt-pkg/policy.cc:444 -#, c-format -msgid "Did not understand pin type %s" -msgstr "İğne türü %s anlaşılamadı" +#: methods/gpgv.cc:184 +msgid "Unknown error executing gpgv" +msgstr "gpgv çalıştırılırken bilinmeyen hata" -#: 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/gpgv.cc:217 methods/gpgv.cc:224 +msgid "The following signatures were invalid:\n" +msgstr "Aşağıdaki imzalar geçersiz:\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\" 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)" +"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/packagemanager.cc:503 apt-pkg/packagemanager.cc:533 -#, c-format -msgid "Could not configure '%s'. " -msgstr "'%s' paketi yapılandırılamadı. " +#: methods/gzip.cc:69 +msgid "Empty files can't be valid archives" +msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" -#: 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 "" -"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." +#: methods/http.cc:509 +msgid "Error writing to the file" +msgstr "Dosyaya yazılamadı" -#: 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/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:571 -msgid "Unmounting CD-ROM...\n" -msgstr "CD-ROM ayrılıyor...\n" +#: methods/http.cc:525 +msgid "Error reading from server" +msgstr "Sunucundan okunurken hata" -#: 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/http.cc:561 +msgid "Error writing to file" +msgstr "Dosyaya yazılamadı" -#: apt-pkg/cdrom.cc:599 -msgid "Waiting for disc...\n" -msgstr "Disk bekleniliyor...\n" +#: methods/http.cc:621 +msgid "Select failed" +msgstr "Seçme başarısız" -#: apt-pkg/cdrom.cc:609 -msgid "Mounting CD-ROM...\n" -msgstr "CD-ROM bağlanıyor...\n" +#: methods/http.cc:626 +msgid "Connection timed out" +msgstr "Bağlantı zaman aşımına uğradı" -#: apt-pkg/cdrom.cc:620 -msgid "Identifying... " -msgstr "Tanımlanıyor... " +#: methods/http.cc:649 +msgid "Error writing to output file" +msgstr "Çıktı dosyasına yazılırken hata" -#: apt-pkg/cdrom.cc:662 -#, c-format -msgid "Stored label: %s\n" -msgstr "Kayıtlı etiket: %s\n" +#: methods/server.cc:51 +msgid "Waiting for headers" +msgstr "Başlıklar bekleniyor" -#: apt-pkg/cdrom.cc:680 -msgid "Scanning disc for index files...\n" -msgstr "Disk, indeks dosyaları için taranıyor...\n" +#: methods/server.cc:109 +msgid "Bad header line" +msgstr "Kötü başlık satırı" -#: apt-pkg/cdrom.cc:734 +#: 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" + +#: 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" + +#: 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" + +#: methods/server.cc:196 +msgid "This HTTP server has broken range support" +msgstr "HTTP sunucusunun aralık desteği bozuk" + +#: methods/server.cc:220 +msgid "Unknown date format" +msgstr "Bilinmeyen tarih biçimi" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "Kötü başlık verisi" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "Bağlantı başarısız" + +#: methods/server.cc:572 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " -"bulundu\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 "" -"Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya " -"da yanlış mimariye sahip." +#: methods/server.cc:692 +msgid "Internal error" +msgstr "İç hata" -#: apt-pkg/cdrom.cc:771 -#, c-format -msgid "Found label '%s'\n" -msgstr "'%s' etiketi bulundu\n" +#: apt-private/private-upgrade.cc:25 +msgid "Calculating upgrade... " +msgstr "Yükseltme hesaplanıyor... " -#: 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-private/private-upgrade.cc:28 +msgid "Done" +msgstr "Bitti" -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" +#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 +msgid "Sorting" msgstr "" -"Disk adı: \n" -"'%s'\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Paket listeleri kopyalanıyor.." +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Yeni kaynak listesi yazılıyor\n" +#: apt-private/private-list.cc:156 +#, 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/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Bu disk için olan kaynak listesi girdileri:\n" +#: 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-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Yükseltme kümesi küçültülemiyor" -#: 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." +#: apt-private/private-cachefile.cc:104 +msgid " Done" +msgstr " Tamamlandı" -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -"Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun " -"nedeni tutulan paketler olabilir." +"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Bağımlılık ağacı oluşturuluyor" +#: 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 "Aday sürümler" +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Kuruldu]" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Bağımlılık oluşturma" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Kuruldu]" -#: 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-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/depcache.cc:250 -#, c-format -msgid "Failed to open StateFile %s" -msgstr "Durum dosyası (StateFile) %s açılamadı." +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Kuruldu]" -#: 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-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Kuruldu]" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:248 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Paket dosyası %s ayrıştırılamadı (1)" +msgid "[upgradable from: %s]" +msgstr "" -#: 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-output.cc:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:489 +#: apt-private/private-output.cc:434 #, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" +msgid "but %s is installed" +msgstr "ama %s kurulu" -#: apt-pkg/cacheset.cc:492 +#: apt-private/private-output.cc:436 #, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" +msgid "but %s is to be installed" +msgstr "ama %s kurulacak" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "'%s' görevi bulunamadı" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "ama kurulabilir değil" -#: 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:445 +msgid "but it is a virtual package" +msgstr "ama o bir sanal paket" -#: 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-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "ama kurulu değil" -#: 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:448 +msgid "but it is not going to be installed" +msgstr "ama kurulmayacak" -#: 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' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " -"seçilemiyor" +#: apt-private/private-output.cc:453 +msgid " or" +msgstr " ya da" -#: 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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" -#: 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:502 +msgid "The following NEW packages will be installed:" +msgstr "Aşağıdaki YENİ paketler kurulacak:" -#: 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" +#: apt-private/private-output.cc:528 +msgid "The following packages will be REMOVED:" +msgstr "Aşağıdaki paketler KALDIRILACAK:" -#: 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:550 +msgid "The following packages have been kept back:" +msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "'Release' dosyası %s içinde hiç bölüm yok" +#: apt-private/private-output.cc:571 +msgid "The following packages will be upgraded:" +msgstr "Aşağıdaki paketler yükseltilecek:" -#: apt-pkg/indexrecords.cc:117 -#, c-format -msgid "No Hash entry in Release file %s" -msgstr "'Release' dosyasında (%s) sağlama girdisi yok" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" -#: 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:612 +msgid "The following held packages will be changed:" +msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" -#: apt-pkg/indexrecords.cc:149 +#: apt-private/private-output.cc:667 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" +msgid "%s (due to %s) " +msgstr "%s (%s nedeniyle) " -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" +#: apt-private/private-output.cc:675 +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:170 +#: apt-private/private-output.cc:706 #, 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)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:710 #, 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)" +msgid "%lu reinstalled, " +msgstr "%lu paket yeniden kurulacak, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:712 #, 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)" +msgid "%lu downgraded, " +msgstr "%lu paketin sürümü düşürülecek, " -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:714 #, 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)" +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:193 +#: apt-private/private-output.cc:718 #, 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ış)" +msgid "%lu not fully installed or removed.\n" +msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" -#: 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)" +#. 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:740 +msgid "[Y/n]" +msgstr "[E/h]" -#: 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)" +#. 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:746 +msgid "[y/N]" +msgstr "[e/H]" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "E" -#: apt-pkg/sourcelist.cc:217 -#, 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)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "H" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "" -"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dağıtım ayrıştırma)" +#: apt-private/private-update.cc:31 +msgid "The update command takes no arguments" +msgstr "'update' komutu bağımsız değişken almamaktadır" -#: apt-pkg/sourcelist.cc:335 +#: apt-private/private-update.cc:90 #, c-format -msgid "Opening %s" -msgstr "%s Açı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/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)" +#: 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' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %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' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %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 kuruluyor" +#: apt-private/private-install.cc:84 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" -#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 -#, c-format -msgid "Configuring %s" -msgstr "%s yapılandırılıyor" +#: apt-private/private-install.cc:93 +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:97 apt-pkg/deb/dpkgpm.cc:1003 -#, c-format -msgid "Removing %s" -msgstr "%s kaldırılıyor" +#: apt-private/private-install.cc:112 +msgid "Internal error, Ordering didn't finish" +msgstr "İç hata, Sıralama tamamlanamadı" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "%s tamamen kaldırılıyor" +#: apt-private/private-install.cc:150 +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: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:157 #, c-format -msgid "Noting disappearance of %s" -msgstr "%s paketinin kaybolduğu not ediliyor" +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sB/%sB arşiv dosyası indirilecek.\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:162 #, c-format -msgid "Running post-installation trigger %s" -msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" +msgid "Need to get %sB of archives.\n" +msgstr "%sB arşiv dosyası indirilecek.\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:169 #, c-format -msgid "Directory '%s' missing" -msgstr "'%s' dizini bulunamadı" +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: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:174 #, c-format -msgid "Could not open file '%s'" -msgstr "'%s' dosyası açılamadı" +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:989 +#: apt-private/private-install.cc:202 #, c-format -msgid "Preparing %s" -msgstr "%s hazırlanıyor" +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:990 -#, c-format -msgid "Unpacking %s" -msgstr "%s paketi açılıyor" +#: apt-private/private-install.cc:212 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:995 -#, c-format -msgid "Preparing to configure %s" -msgstr "%s paketini yapılandırmaya hazırlanılıyor" +#: apt-private/private-install.cc:218 apt-private/private-install.cc:240 +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:997 -#, c-format -msgid "Installed %s" -msgstr "%s kuruldu" +#. 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:222 +msgid "Yes, do as I say!" +msgstr "Evet, söylediğim şekilde yap!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, c-format -msgid "Preparing for removal of %s" -msgstr "%s paketinin kaldırılmasına hazırlanılıyor" +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:1004 -#, c-format -msgid "Removed %s" -msgstr "%s kaldırıldı" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Vazgeç." -#: 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" +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "Devam etmek istiyor musunuz?" -#: apt-pkg/deb/dpkgpm.cc:1010 -#, c-format -msgid "Completely removed %s" -msgstr "%s tamamen kaldırıldı" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "Bazı dosyalar indirilemedi" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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." -#: 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:326 +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:1069 -msgid "Is /dev/pts mounted?" -msgstr "" +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "Eksik paketler düzeltilemedi." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Kurulum iptal ediliyor." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "İşlem yarıda kesildi" +#: apt-private/private-install.cc:368 +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:" -#: 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:372 +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." -#. 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:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:501 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 raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan " -"kaynaklanan bir hata olduğunu belirtiyor." +"AutoRemover yapmaması gereken bir yıkıma\n" +"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." -#: 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ı" +#. +#. 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:" -#: 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-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "İç hata, AutoRemover bazı şeyleri bozdu" -#: apt-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 -#, fuzzy +#: apt-private/private-install.cc:515 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ı" +"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-private/private-install.cc:519 +#, 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-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:521 +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -"Hata iletisi bir dpkg G/Ç hatasına işaret ettiği için apport raporu " -"yazılamadı" +"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir:" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:616 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 "" -"Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor " -"olmasın?" - -#: 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?" +"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:640 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:661 +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:738 +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:828 +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:829 +msgid "Recommended packages:" +msgstr "Tavsiye edilen paketler:" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:851 #, 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:855 #, 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:867 #, 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:872 #, 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:920 #, 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:925 #, 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:967 #, 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:973 #, 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:88 +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:119 +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:123 +msgid "Err " +msgstr "Hata " -#: apt-pkg/contrib/fileutl.cc:1915 +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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]" + +#: 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!" -#: apt-pkg/contrib/mmap.cc:119 -#, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "%llu baytlık mmap yapılamaz" +#: 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:184 #, 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 =." -msgstr "" -"%s seçeneği: Yapılandırma öğesi tanımlaması = ş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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3273,12 +3286,7 @@ msgstr "" " -c=? Belirtilen ayar dosyasını kullanır\n" " -o=? Ayar seçeneği belirtmeyi sağlar, ör -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "%s durum bilgisi alınamadı" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf sürümü alınamıyor. debconf kurulu mu?" @@ -3398,17 +3406,17 @@ msgstr "Hiçbir seçim eşleşmedi" msgid "Some files are missing in the package file group `%s'" msgstr "'%s' paket dosyası grubunda bazı dosyalar eksik" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "Veritabanı bozuk, dosya adı %s.old olarak değiştirildi" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "Veritabanı eski, %s yükseltilmeye çalışılıyor" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3416,105 +3424,105 @@ msgstr "" "Veritabanı biçimi geçersiz. Eğer apt'ın eski bir sürümünden yükseltme " "yaptıysanız, lütfen veritabanını silin ve yeniden oluşturun." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Veritabanı dosyası %s açılamadı: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "%s bağlantı okuması başarılamadı" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "Arşivin denetim kaydı yok" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "İmleç alınamıyor" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "W: %s dizini okunamıyor\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "W: %s durum bilgisi alınamıyor\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "E: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "W: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "E: Hatalar şu dosya için geçerli: " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "%s çözümlenemedi" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Ağaçta gezinme başarısız" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "%s açılamadı" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "%s bağlantı okuması başarılamadı" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "%s bağlantı koparma başarılamadı" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** %s, %s konumuna bağlanamadı" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " %sB'lik bağlantı koparma (DeLink) sınırına ulaşıldı.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Arşivde paket alanı yok" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s için geçersiz kılma girdisi yok\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s geliştiricisi %s, %s değil\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " '%s' paketinin yerine geçecek bir kaynak paket yok\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " '%s' paketinin yerine geçecek bir ikili paket de yok\n" diff --git a/po/uk.po b/po/uk.po index 1c3907254..cbb2721b1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko \n" "Language-Team: Українська \n" @@ -24,3264 +24,3277 @@ 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 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "Кеш пакунків пустий" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "Файл кешу пакунків пошкоджений" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "Файл кешу пакунків має несумісну версію" + +#: apt-pkg/pkgcache.cc:164 +msgid "The package cache file is corrupted, it is too small" +msgstr "Файл кешу пакунків пошкоджений, занадто малий" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "Перелік пакунків %s розсинхронізований." +msgid "This APT does not support the versioning system '%s'" +msgstr "Цей APT не підтримує систему призначення версій '%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 "Не знайдено жодного пакунка" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "Кеш пакунків був побудований для іншої архітектури" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "Ви повинні задати не менше одного шаблону пошуку" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "Залежності (Depends)" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Ця команда є застарілою. Будь-ласка використовуйте 'apt-mark showauto'" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "Пре-Залежності (PreDepends)" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "Пропонує (Suggests)" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "Рекомендує (Recommends)" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "Конфлікти (Conflicts)" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "Заміняє (Replaces)" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "Застарілі (Obsoletes)" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "Ламає (Breaks)" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "Покращує (Enhances)" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "важливі (important)" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "необхідні (required)" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "стандартні (standard)" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "необов'язкові (optional)" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "додаткові (extra)" + +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "Не можу знайти пакунок %s" +msgid "Index file type '%s' is not supported" +msgstr "Тип '%s' індексного файлу не підтримується" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "Переліки пакунків:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +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 "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "Кеш має несумісну систему призначення версій" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "Виникла помилка під час обробки %s (%s%d)" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(не знайдено)" +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Ого! Ви перевищили кількість імен пакунків, які APT може обробити." -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " Встановлено: " +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Ого! Ви перевищили кількість версій, які APT може обробити." -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " Кандидат: " +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Ого! Ви перевищили кількість описів, які APT може обробити." -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(відсутній)" +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " Фіксатор(pin) пакунка: " +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " Таблиця версій:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "Зчитування переліків пакунків" + +#: apt-pkg/pkgcachegen.cc:1338 +#, fuzzy +msgid "Collecting File Provides" +msgstr "Збирання інформації про 'File Provides'" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s для %s скомпільовано %s %s\n" +msgid "Unable to write to %s" +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 [опції] 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/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "Помилка IO під час збереження кешу вихідних текстів" -#: 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/edsp.cc:52 apt-pkg/edsp.cc:78 +#, fuzzy +msgid "Send scenario to solver" +msgstr "Відправити сценарій розв'язувачу" -#: cmdline/apt-cdrom.cc:91 -msgid "Please insert a Disc in the drive and press enter" -msgstr "Будь-ласка, вставте Диск у пристрій і натисніть Enter" +#: apt-pkg/edsp.cc:241 +#, fuzzy +msgid "Send request to solver" +msgstr "Відправити запит розв'язувачу" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "Не вдалося під'єднати '%s' до '%s'" +#: apt-pkg/edsp.cc:320 +#, fuzzy +msgid "Prepare for receiving solution" +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/edsp.cc:327 +msgid "External solver failed without a proper error message" msgstr "" +"Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " +"помилку" -#: 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 "Аргументи не в парах" +#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +#, fuzzy +msgid "Execute external solver" +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-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "не вдалося перейменувати, %s (%s -> %s)." -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Невідповідність хешу MD5Sum" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "Невідповідність розміру" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "Невірна дія %s" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:1679 #, 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 "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" +"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " +"sources.list, або пошкоджений файл)" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1697 #, c-format -msgid "Couldn't find package %s" -msgstr "Не можу знайти пакунок %s" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "Неможливо знайти хеш-суму для '%s' у 'Release' файлі" -#: 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" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "Відсутній публічний ключ для заданих ідентифікаторів (ID) ключа:\n" -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s позначений як автоматично встановлений.\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." +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -"Ця команда застаріла. Будь-ласка, використовуйте замість неї 'apt-mark auto' " -"і 'apt-mark manual'." - -#: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546 -msgid "Internal error, problem resolver broke stuff" -msgstr "Внутрішня помилка, вирішувач проблем щось поламав" +"Файл 'Release' для %s застарів (недійсний з %s). Оновлення для цього " +"репозиторія не будуть застосовані." -#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 -msgid "Unable to lock the download directory" -msgstr "Неможливо заблокувати директорію для завантаження" +#: apt-pkg/acquire-item.cc:1797 +#, c-format +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" -#: cmdline/apt-get.cc:726 -msgid "Must specify at least one package to fetch source for" +#: apt-pkg/acquire-item.cc:1827 +#, 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:766 cmdline/apt-get.cc:1066 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "Неможливо знайти пакунок з вихідними текстами для %s" +msgid "GPG error: %s: %s" +msgstr "Помилка GPG: %s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\n" -"%s\n" +"Я не зміг знайти файл для пакунку %s. Можливо, це значить, що вам потрібно " +"власноруч виправити цей пакунок. (через відсутність 'arch')" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "Неможливо знайти джерело для завантаження версії '%s' для '%s'" + +#: apt-pkg/acquire-item.cc:2074 #, c-format msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +"The package index files are corrupted. No Filename: field for package %s." msgstr "" -"Будь-ласка використовуйте:\n" -"bzr branch %s\n" -"щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" +"Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." -#: cmdline/apt-get.cc:843 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Skipping already downloaded file '%s'\n" -msgstr "Пропускаємо вже завантажений файл '%s'\n" +msgid "Vendor block %s contains no fingerprint" +msgstr "Блок постачальника %s не містить відбитку (fingerprint)" -#: cmdline/apt-get.cc:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "Не вдалося визначити кількість вільного місця в %s" +msgid "List directory %spartial is missing." +msgstr "Відсутня директорія зі списками: %spartial" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:92 #, c-format -msgid "You don't have enough free space in %s" -msgstr "Недостатньо місця в %s" +msgid "Archives directory %spartial is missing." +msgstr "Відсутня директорія для архівів: %spartial" -#. 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.cc:100 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" +msgid "Unable to lock directory %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 -#: cmdline/apt-get.cc:896 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Завантажується файл %li з %li (залишилось %s)" -#: cmdline/apt-get.cc:902 +#: apt-pkg/acquire.cc:927 #, 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:314 -msgid "Download complete and in download only mode" -msgstr "Завантаження завершено в режимі \"тільки завантаження\"" +msgid "Retrieving file %li of %li" +msgstr "Завантажується файл %li з %li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "Не вдалося завантажити %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 "" -"Пропускається розпакування вихідних текстів, тому що вже розпаковано в %s\n" +"Деякі індексні файли не вдалося завантажити. Вони були зігноровані, або " +"замість них були використані старіші версії." + +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "Додайте деякі посилання (URI) на вихідні тексти у ваш sources.list" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "Команда розпакування '%s' завершилася невдало.\n" +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, так як такий випуск не є " +"доступним у вихідних кодах" -#: cmdline/apt-get.cc:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "Невірний запис у файлі налаштувань %s, відсутній заголовок Package" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "Команда побудови '%s' закінчилася невдало.\n" +msgid "Did not understand pin type %s" +msgstr "Не зрозумів тип %s для фіксатора пакунків (pin)" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "Породжений процес завершився невдало" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "Не встановлено пріоритету (або стоїть 0) для фіксатора пакунків (pin)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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'. Будь-ласка, дивіться man 5 " +"apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, c-format +msgid "Could not configure '%s'. " +msgstr "Неможливо налаштувати '%s'." -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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.conf(5) APT::" -"Архітектури для налащтування" +"Для виконання даного встановлення потрібне тимчасове видалення важливого " +"пакунку %s через петлеві конфлікти/пре-залежності (Pre-Depends loop). Це " +"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр APT::Force-" +"LoopBreak." -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "Неможливо одержати інформацію про залежності для побудови %s" +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" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr "%s не має залежностей для побудови.\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "Використовується точка монтування CD-ROM: %s\n" + +#: 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 "Stored label: %s\n" +msgstr "Записано мітку: %s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "Сканується диск на вміст індексних файлів...\n" -#: cmdline/apt-get.cc:1271 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " -"packages" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо %s не є дозволеним на " -"'%s' пакунках" +"Знайдено %zu індексів пакунків, %zu індексів вихідних текстів, %zu індексів " +"перекладів і %zu підписів\n" -#: cmdline/apt-get.cc:1289 -#, c-format +#: apt-pkg/cdrom.cc:744 msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" +"Неможливо знайти ніякі файли пакунків, можливо, що це не диск з Debian, або " +"невірна архітектура?" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "" -"Не вдалося задовольнити залежність типу %s для %s: Встановлений пакунок %s " -"новіше, аніж треба" +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" -#: cmdline/apt-get.cc:1351 +#: apt-pkg/cdrom.cc:817 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо версія пакунку-" -"кандидата %s не задовольняє умови по версіям" +"Цей диск зветься: \n" +"'%s'\n" + +#: 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" -#: cmdline/apt-get.cc:1357 +#: apt-pkg/algorithms.cc:265 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because package %s has no candidate " -"version" +"The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Залежність типу %s для %s не може бути задоволена, бо немає пакунку-" -"кандидата %s потрібної версії" +"Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." + +#: 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 "Версії кандидатів" -#: cmdline/apt-get.cc:1380 +#: 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 "Failed to satisfy %s dependency for %s: %s" -msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" +msgid "Failed to open StateFile %s" +msgstr "Не вдалося відкрити StateFile %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "Залежності для побудови %s не можуть бути задоволені." +msgid "Failed to write temporary StateFile %s" +msgstr "Не вдалося записати до тимчасового StateFile файла %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "Обробка залежностей для побудови закінчилася невдало" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Неможливо проаналізувати файл пакунку %s (1)" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/tagfile.cc:269 #, c-format -msgid "Changelog for %s (%s)" -msgstr "Журнал змін для %s (%s)" +msgid "Unable to parse package file %s (2)" +msgstr "Неможливо проаналізувати файл пакунку %s (2)" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "Підтримувані модулі:" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "Випуск '%s' для '%s' не знайдено" -#: cmdline/apt-get.cc:1632 +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "Версія '%s' для '%s' не знайдена" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "Не можу знайти пакунок %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "Неможливо знайти завдання '%s'" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" + +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" + +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "Неможливо вибирати версії пакунку '%s', так як він є чисто віртуальним" + +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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 - встановити нові пакунки (назва пакунка вказується\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" - -#: 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" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" msgstr "" +"Неможливо вибрати встановлений пакунок, або версію-кандидат пакунку '%s', " +"так як вони відсутні" -#: cmdline/apt-mark.cc:68 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "%s can not be marked as it is not installed.\n" -msgstr "%s не може бути позначений, тому що він не встановлений.\n" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" +"Неможливо вибрати найновішу версію пакунку '%s', так як він є чисто " +"віртуальним" -#: cmdline/apt-mark.cc:74 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s вже був позначений, як встановлений вручну.\n" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "Неможливо вибрати версію пакунку %s, так як він не має кандидатів" -#: cmdline/apt-mark.cc:76 +#: apt-pkg/cacheset.cc:664 #, c-format -msgid "%s was already set to automatically installed.\n" -msgstr "%s вже був позначений, як автоматично встановлений.\n" +msgid "Can't select installed version from package %s as it is not installed" +msgstr "" +"Неможливо вибрати встановлену версію пакунку %s, так як такий пакунок не " +"встановлено" -#: cmdline/apt-mark.cc:241 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "%s was already set on hold.\n" -msgstr "%s вже був зафіксований.\n" +msgid "Unable to parse Release file %s" +msgstr "Неможливо проаналізувати 'Release' файл %s" -#: cmdline/apt-mark.cc:243 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "%s was already not hold.\n" -msgstr "%s вже був незафіксований.\n" +msgid "No sections in Release file %s" +msgstr "Немає секцій у 'Release' файлі %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/indexrecords.cc:136 #, c-format -msgid "Waited for %s but it wasn't there" -msgstr "Очікував на %s, але його там не було" +msgid "No Hash entry in Release file %s" +msgstr "Немає запису 'Hash' у 'Release' файлі %s" -#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 +#: apt-pkg/indexrecords.cc:149 #, c-format -msgid "%s set on hold.\n" -msgstr "%s зафіксовано.\n" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "Невірний запис 'Valid-Until' у 'Release' файлі %s" -#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 +#: apt-pkg/indexrecords.cc:168 #, 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. Ви 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 "" -"Використання: 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)." +msgid "Invalid 'Date' entry in Release file %s" +msgstr "Невірний запис 'Date' у 'Release' файлі %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/sourcelist.cc:127 +#, fuzzy, c-format +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" -#: methods/cdrom.cc:203 +#: apt-pkg/sourcelist.cc:170 #, 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" -msgstr "" -"Будь-ласка запустіть apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get update " -"не може додавати нові CD-ROM" - -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "Невірний CD-ROM" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "Спотворений рядок %lu у переліку джерел %s (нечитабельний [параметр])" -#: methods/cdrom.cc:249 +#: apt-pkg/sourcelist.cc:173 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgid "Malformed line %lu in source list %s ([option] too short)" msgstr "" -"Неможливо відмонтувати CDROM в %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 -#, fuzzy -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 //" -msgstr "Невірне посилання (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 "Неможливо визначити локальну назву" +"Спотворений рядок %lu у переліку джерел %s ([параметр] занадто короткий)" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/sourcelist.cc:184 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "Сервер розірвав з'єднання, відповівши: %s" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не є призначенням)" -#: methods/ftp.cc:225 +#: apt-pkg/sourcelist.cc:190 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER невдало, сервер мовив: %s" +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не має ключа)" -#: methods/ftp.cc:232 +#: apt-pkg/sourcelist.cc:193 #, 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." +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" msgstr "" -"Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin " -"пустий." - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "Команда '%s' у скрипті логіна не вдалася, сервер мовив: %s" +"Спотворений рядок %lu у переліку джерел %s ([%s] ключ %s не має значення)" -#: methods/ftp.cc:306 +#: apt-pkg/sourcelist.cc:206 #, 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 "Неможливо створити сокет (socket)" - -#: methods/ftp.cc:712 -msgid "Could not connect data socket, connection timed out" -msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "Невдача" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "Неможливо під'єднати пасивний сокет (passive socket)." - -#: 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 "Malformed line %lu in source list %s (URI)" +msgstr "Спотворений рядок %lu у переліку джерел %s (проблема з URI)" -#: methods/ftp.cc:802 +#: apt-pkg/sourcelist.cc:208 #, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "Невідоме адресове сімейство %u (AF_*)" +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Спотворений рядок %lu у переліку джерел %s (dist)" -#: methods/ftp.cc:811 +#: apt-pkg/sourcelist.cc:211 #, 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 "Malformed line %lu in source list %s (URI parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" -#: methods/ftp.cc:890 +#: apt-pkg/sourcelist.cc:217 #, 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 "Malformed line %lu in source list %s (absolute dist)" +msgstr "Спотворений рядок %lu у переліку джерел %s (absolute dist)" -#: methods/ftp.cc:935 +#: apt-pkg/sourcelist.cc:224 #, c-format -msgid "Data transfer failed, server said '%s'" -msgstr "Передача даних обірвалася, сервер мовив '%s'" - -#. Get the files information -#: methods/ftp.cc:1014 -msgid "Query" -msgstr "Черга" +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "Спотворений рядок %lu у переліку джерел %s (dist parse)" -#: methods/ftp.cc:1128 -msgid "Unable to invoke " -msgstr "Неможливо викликати " +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "Відкриття %s" -#: methods/connect.cc:76 +#: apt-pkg/sourcelist.cc:371 #, c-format -msgid "Connecting to %s (%s)" -msgstr "З'єднання з %s (%s)" +msgid "Malformed line %u in source list %s (type)" +msgstr "Спотворений рядок %u у переліку джерел %s (тип)" -#: methods/connect.cc:87 +#: apt-pkg/sourcelist.cc:375 #, c-format -msgid "[IP: %s %s]" -msgstr "[IP: %s %s]" +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" -#: methods/connect.cc:94 +#: 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 #, 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 "Installing %s" +msgstr "Встановлюється %s" -#: methods/connect.cc:100 +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 #, c-format -msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Неможливо почати з'єднання з %s:%s (%s)." +msgid "Configuring %s" +msgstr "Налаштовується %s" -#: methods/connect.cc:108 +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 #, c-format -msgid "Could not connect to %s:%s (%s), connection timed out" -msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" +msgid "Removing %s" +msgstr "Видаляється %s" -#: methods/connect.cc:126 +#: apt-pkg/deb/dpkgpm.cc:98 #, c-format -msgid "Could not connect to %s:%s (%s)." -msgstr "Неможливо під'єднатися до %s:%s (%s)." +msgid "Completely removing %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:99 #, c-format -msgid "Connecting to %s" -msgstr "З'єднання з %s" +msgid "Noting disappearance of %s" +msgstr "Взято до відома зникнення %s" -#: methods/connect.cc:180 methods/connect.cc:199 +#: apt-pkg/deb/dpkgpm.cc:100 #, c-format -msgid "Could not resolve '%s'" -msgstr "Не можу знайти IP адрес для %s" +msgid "Running post-installation trigger %s" +msgstr "Виконується післяустановочний ініціатор %s" -#: methods/connect.cc:205 +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:827 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "Тимчасова помилка при отриманні IP адреси '%s'" +msgid "Directory '%s' missing" +msgstr "Директорія '%s' відсутня" -#: methods/connect.cc:209 -#, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" +#: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864 +#, c-format +msgid "Could not open file '%s'" +msgstr "Неможливо відкрити файл '%s'" -#: methods/connect.cc:211 +#: apt-pkg/deb/dpkgpm.cc:989 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" +msgid "Preparing %s" +msgstr "Підготовка %s" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:990 #, c-format -msgid "Unable to connect to %s:%s:" -msgstr "Неможливо під'єднатися до %s:%s:" +msgid "Unpacking %s" +msgstr "Розпакування %s" -#: methods/gpgv.cc:168 -msgid "" -"Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "" -"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " -"відбиток?!" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %s" +msgstr "Підготовка до конфігурації %s" -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "Знайдено як мінімум один невірний підпис." +#: apt-pkg/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %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:1002 +#, c-format +msgid "Preparing for removal of %s" +msgstr "Підготовка до видалення %s" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1004 #, c-format -msgid "" -"Clearsigned file isn't valid, got '%s' (does the network require " -"authentication?)" -msgstr "" +msgid "Removed %s" +msgstr "Видалено %s" -#: methods/gpgv.cc:184 -msgid "Unknown error executing gpgv" -msgstr "Невідома помилка виконання gpgv" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %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:1010 +#, c-format +msgid "Completely removed %s" +msgstr "Повністю видалено %s" -#: 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:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -"Наступні підписи не можуть бути перевірені, тому що публічний ключ " -"відсутній:\n" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -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 "Вибір провалився" -#: methods/http.cc:626 -msgid "Connection timed out" -msgstr "Час очікування з'єднання вийшов" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "Неможливо записати в %s" -#: methods/http.cc:649 -msgid "Error writing to output file" -msgstr "Помилка запису у вихідний файл" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" +msgstr "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "Очікування на заголовки" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" +msgstr "" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "Невірний рядок заголовку" +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "HTTP сервер відіслав невірний заголовок 'reply'" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "Операцію було перервано до того, як вона мала завершитися" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"Звіт apport не був записаний, тому що параметр MaxReports вже досягнув " +"максимальної величини" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "HTTP сервер відіслав невірний заголовок 'Content-Range'" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "проблеми з залежностями - залишено неналаштованим" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "Цей HTTP сервер має поламану підтримку 'range'" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на те, " +"що ця помилка є наслідком попередньої невдачі." -#: 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 a disk full " +"error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця на диску" -#: methods/server.cc:489 -msgid "Bad header data" -msgstr "Погана заголовкова інформація" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця у пам'яті" -#: methods/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -msgstr "З'єднання не вдалося" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"відсутність вільного місця на диску" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "Внутрішня помилка" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Звіт apport не був записаний, тому що повідомлення про помилку вказує на " +"помилку В/В (I/O) у dpkg" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -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-upgrade.cc:28 -msgid "Done" -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-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] "" -msgstr[1] "" -msgstr[2] "" - -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -msgstr "Виправлення залежностей..." +msgid "%lid %lih %limin %lis" +msgstr "%liд %liг %liхв %liс" -#: apt-private/private-cachefile.cc:96 -msgid " 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с" -#: apt-private/private-cachefile.cc:99 -msgid "Unable to correct dependencies" -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:102 -msgid "Unable to minimize the upgrade set" -msgstr "Неможливо мінімізувати набір оновлень" +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 +#, c-format +msgid "%lis" +msgstr "%liс" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " Виконано" +#: apt-pkg/contrib/strutl.cc:1243 +#, c-format +msgid "Selection %s not found" +msgstr "Вибір %s не знайдено" -#: apt-private/private-cachefile.cc:108 -msgid "You might want to run 'apt-get -f install' to correct these." +#: apt-pkg/contrib/fileutl.cc:191 +#, c-format +msgid "Not using locking for read only lock file %s" msgstr "" -"Для виправлення цих помилок ви можете скористатися 'apt-get -f install'." +"Блокування не використовується, так як файл блокування %s доступний тільки " +"для зчитування" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "Незадоволені залежності. Спробуйте використати -f." +#: apt-pkg/contrib/fileutl.cc:196 +#, c-format +msgid "Could not open lock file %s" +msgstr "Неможливо відкрити 'lock' файл %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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" msgstr "" +"Блокування не використовується, так як файл блокування %s знаходиться на " +"файловій системі nfs" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "Неможливо отримати замок %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "Неможливо створити перелік файлів, так як '%s' не є директорією" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/contrib/fileutl.cc:395 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "Ігнорується '%s' у директорії '%s', так як не є звичайним файлом" + +#: apt-pkg/contrib/fileutl.cc:413 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "Ігнорується файл '%s' у директорії '%s', так як він не має розширення" + +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" +"Ігнорується файл '%s' у директорії '%s', так як він має невірне розширення" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:841 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "Підпроцес %s отримав 'segmentation fault' (фатальна помилка)." -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [Встановлено]" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "Підпроцес %s отримав сигнал %u." -#: apt-private/private-output.cc:248 +#: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239 #, c-format -msgid "[upgradable from: %s]" -msgstr "" +msgid "Sub-process %s returned an error code (%u)" +msgstr "Підпроцес %s повернув код помилки (%u)" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "Підпроцес %s раптово завершився" -#: apt-private/private-output.cc:434 +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "Помилка запису" + +#: apt-pkg/contrib/fileutl.cc:951 #, c-format -msgid "but %s is installed" -msgstr "але %s вже встановлений" +msgid "Problem closing the gzip file %s" +msgstr "Проблема з закриттям gzip файла %s" -#: apt-private/private-output.cc:436 +#: apt-pkg/contrib/fileutl.cc:1139 #, c-format -msgid "but %s is to be installed" -msgstr "але %s буде встановлений" +msgid "Could not open file %s" +msgstr "Неможливо відкрити файл %s" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "але він не може бути встановлений" +#: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Неможливо відкрити файловий дескриптор %d" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "але це віртуальний пакунок" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "Не вдалося створити IPC з породженим процесом" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "але він не встановлений" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "Не вдалося виконати компресор " -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "але він не буде встановлений" +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "Помилка зчитування" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " чи" +#: apt-pkg/contrib/fileutl.cc:1552 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "зчитування, повинен зчитати ще %llu байт, але нічого більше нема" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "Пакунки, що мають незадоволені залежності:" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "записування, повинен був записати ще %llu байт, але не вдалося" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "НОВІ пакунки, які будуть встановлені:" +#: apt-pkg/contrib/fileutl.cc:1953 +#, c-format +msgid "Problem closing the file %s" +msgstr "Проблема з закриттям файла %s" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -msgstr "Пакунки, які будуть ВИДАЛЕНІ:" +#: apt-pkg/contrib/fileutl.cc:1964 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "Проблема з перейменуванням файла %s на %s" -#: apt-private/private-output.cc:550 -msgid "The following packages have been kept back:" -msgstr "Пакунки, які залишені в незмінному стані:" +#: apt-pkg/contrib/fileutl.cc:1975 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "Проблема з роз'єднанням файла %s" -#: apt-private/private-output.cc:571 -msgid "The following packages will be upgraded:" -msgstr "Пакунки, які будуть ОНОВЛЕНІ:" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "Проблема з синхронізацією файла" -#: apt-private/private-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "Пакунки, які будуть замінені на СТАРІШІ версії:" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "Неможливо прочитати атрибути %s" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -msgstr "Пакунки, які мали б залишитися без змін, але будуть замінені:" +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Помилка!" -#: apt-private/private-output.cc:667 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "%s (due to %s) " -msgstr "%s (внаслідок %s) " +msgid "%c%s... Done" +msgstr "%c%s... Виконано" -#: apt-private/private-output.cc:675 -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 "" -"УВАГА: Наступні важливі пакунки будуть вилучені.\n" -"НЕ РОБІТЬ цього, якщо ви НЕ уявляєте собі всі можливі наслідки!" -#: apt-private/private-output.cc:706 -#, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "оновлено %lu, встановлено %lu нових, " +#. Print the spinner +#: apt-pkg/contrib/progress.cc:197 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Виконано" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Неможливо відобразити в пам'яті (mmap) пустий файл" + +#: apt-pkg/contrib/mmap.cc:111 #, c-format -msgid "%lu reinstalled, " -msgstr "%lu перевстановлено, " +msgid "Couldn't duplicate file descriptor %i" +msgstr "Неможливо створити копію файлового дескриптора %i" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/mmap.cc:119 #, c-format -msgid "%lu downgraded, " -msgstr "%lu замінено на старіші версії, " +msgid "Couldn't make mmap of %llu bytes" +msgstr "Неможливо зробити mmap для %llu байт" -#: apt-private/private-output.cc:714 -#, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "%lu відмічено для видалення і %lu не оновлено.\n" +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "Не вдалося закрити mmap" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "Не вдалося синхронізувати mmap" + +#: apt-pkg/contrib/mmap.cc:290 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "не встановлено(видалено) до кінця %lu пакунків.\n" +msgid "Couldn't make mmap of %lu bytes" +msgstr "Неможливо відобразити в пам'яті %lu байт" -#. 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:740 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +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:746 -msgid "[y/N]" +#: 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)" -#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set -#: apt-private/private-output.cc:757 -msgid "Y" +#: 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 байт вже досягнуто." -#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set -#: apt-private/private-output.cc:763 -msgid "N" +#: 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:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/cdromutl.cc:65 #, c-format -msgid "Regex compilation error - %s" -msgstr "Помилка компіляції регулярного виразу - %s" +msgid "Unable to stat the mount point %s" +msgstr "Неможливо прочитати атрибути точки монтування %s" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr "Команді update не потрібні аргументи" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "Не вдалося прочитати атрибути cdrom" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/configuration.cc:521 #, 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] "" - -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Нерозпізнаваний тип абревіатури: '%c'" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/configuration.cc:635 #, 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 "Opening configuration file %s" +msgstr "Відкривається конфігураційний файл %s" -#: apt-private/private-install.cc:82 -msgid "Internal error, InstallPackages was called with broken packages!" -msgstr "" -"Внутрішня помилка, InstallPackages була викликана з непрацездатними " -"пакунками!" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Синтаксична помилка %s:%u: Блок починається без назви." -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "Необхідно видалити пакунки, але видалення заборонене." +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Синтаксична помилка %s:%u: спотворений тег" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "Внутрішня помилка, Ordering не завершилася" +#: apt-pkg/contrib/configuration.cc:839 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Синтаксична помилка %s:%u: зайві символи після величини" -#: 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/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "" +"Синтаксична помилка %s:%u: Директиви можуть бути виконані тільки на " +"найвищому рівні" -#. 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 +#: apt-pkg/contrib/configuration.cc:886 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "Необхідно завантажити %sB/%sB архівів.\n" +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Синтаксична помилка %s:%u: Забагато вмонтованих (nested) включень" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "Необхідно завантажити %sB архівів.\n" +msgid "Syntax error %s:%u: Included from here" +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:167 +#: apt-pkg/contrib/configuration.cc:899 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Синтаксична помилка %s:%u: Директива '%s' не підтримується" + +#: apt-pkg/contrib/configuration.cc:902 +#, fuzzy, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" msgstr "" -"Після цієї операції об'єм зайнятого дискового простору зросте на %sB.\n" +"Синтаксична помилка %s:%u: 'clear directive' потребує дерево налаштувань як " +"аргумент" -#. TRANSLATOR: The required space between number and unit 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 +#: apt-pkg/contrib/configuration.cc:952 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "" -"Після цієї операції об'єм зайнятого дискового простору зменшиться на %sB.\n" +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Синтаксична помилка %s:%u: Зайве сміття в кінці файла" -#: apt-private/private-install.cc:200 +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/contrib/gpgv.cc:72 #, c-format -msgid "You don't have enough free space in %s." -msgstr "Недостатньо вільного місця в %s." +msgid "No keyring installed in %s." +msgstr "Не встановлено 'keyring' у %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/contrib/cmndline.cc:121 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Невідомий параметр командного рядка '%c' [з %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/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 командного рядка" -#. 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/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Параметр %s командного рядка не є логічного типу 'boolean'" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230 #, 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 "Option %s requires an argument." +msgstr "Параметр %s потребує аргумента." -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "Перервано." +#: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"Опція %s: Специфікація вимагає, щоб рядки у конфігурації мали вираз =." -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -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:313 -msgid "Some files failed to download" -msgstr "Деякі файли не вдалося завантажити" +#: apt-pkg/contrib/cmndline.cc:309 +#, c-format +msgid "Option '%s' is too long" +msgstr "Параметр '%s' є занадто довгим" -#: 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/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:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing і зміна носія в даний момент не підтримується" +#: apt-pkg/contrib/cmndline.cc:391 +#, c-format +msgid "Invalid operation %s" +msgstr "Невірна дія %s" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -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:330 -msgid "Aborting install." -msgstr "Переривається встановлення." +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +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" -"усі файли були перезаписані іншими пакунками:" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "Всього структур пакунків: " -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "Увага: це зроблено автоматично і умисно dpkg'ем." +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +msgstr " Нормальних пакунків: " -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Нам не дозволено видаляти, неможливо запустити AutoRemover" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " Цілком віртуальних пакунків: " -#: 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 "" -"Хм, виглядає так, що AutoRemover помилково знищив щось потрібне.\n" -"Будь-ласка відправте багрепорт щодо apt." +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +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 "Наступна інформація можливо допоможе Вам виправити ситуацію:" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " Змішаних віртуальних пакунків: " -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "Внутрішня Помилка, AutoRemover щось поламав" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " Відсутні: " -#: 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] "" -"Наступний пакунок був встановлений автоматично і більше не потрібен:" -msgstr[1] "Наступні пакунки були встановлені автоматично і більше не потрібні:" -msgstr[2] "Наступні пакунки були встановлені автоматично і більше не потрібні:" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "Всього унікальних версій: " -#: 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" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +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] "Використовуйте 'apt-get autoremove' щоб видалити його." -msgstr[1] "Використовуйте 'apt-get autoremove' щоб видалити їх." -msgstr[2] "Використовуйте 'apt-get autoremove' щоб видалити їх." +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +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:372 +msgid "Total ver/file relations: " +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:374 +msgid "Total Desc/File relations: " +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 "" -"Деякі пакунки неможливо встановити. Можливо, Ви просите неможливого,\n" -"або ж використовуєте нестабільний дистрибутив, і запитані Вами пакунки\n" -"ще не створені або були вилучені з Incoming." +#: cmdline/apt-cache.cc:376 +#, fuzzy +msgid "Total Provides mappings: " +msgstr "Всього карт 'Provides': " -#: apt-private/private-install.cc:659 -msgid "Broken packages" -msgstr "Зламані пакунки" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Всього відфільтрованих (globbed) рядків: " -#: apt-private/private-install.cc:712 -msgid "The following extra packages will be installed:" -msgstr "Будуть встановлені наступні додаткові пакунки:" +#: cmdline/apt-cache.cc:402 +#, fuzzy +msgid "Total dependency version space: " +msgstr "Всього інформації про залежності: " -#: apt-private/private-install.cc:802 -msgid "Suggested packages:" -msgstr "Пропоновані пакунки:" +#: cmdline/apt-cache.cc:407 +#, fuzzy +msgid "Total slack space: " +msgstr "Порожнього місця в кеші: " -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "Рекомендовані пакунки:" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "Загальний простір полічений для: " -#: apt-private/private-install.cc:825 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "" -"Пропускається %s, пакунок вже встановлений і опція ОНОВИТИ не встановлена.\n" +msgid "Package file %s is out of sync." +msgstr "Перелік пакунків %s розсинхронізований." -#: apt-private/private-install.cc:829 -#, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "" -"Пропускається %s, пакунок не встановлений, а запитуються тільки оновлення.\n" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "Ви повинні задати не менше одного шаблону пошуку" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "Вже встановлена найновіша версія %s.\n" +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "Ця команда є застарілою. Будь-ласка використовуйте 'apt-mark showauto'" -#: apt-private/private-install.cc:894 -#, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "Обрана версія '%s' (%s) для '%s'\n" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "Переліки пакунків:" -#: apt-private/private-install.cc:899 -#, c-format -msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" -msgstr "Обрана версія '%s' (%s) для '%s' через '%s'\n" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Кеш не синхронізований, неможливо знайти посилання на перелік пакунків" -#. 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 "" -"Пакунок '%s' не встановлений, тому не видалений. Можливо ви мали на увазі " -"'%s'?\n" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +msgid "Pinned packages:" +msgstr "Зафіксовані пакунки:" -#: apt-private/private-install.cc:947 -#, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "Пакунок '%s' не встановлений, тому не видалений\n" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not 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 потребує права root для реального запуску.\n" -" Також не забувайте, що блокування вимикається,\n" -" тому не очікуйте на відповідність поточній реальній ситуації!" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " Встановлено: " -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " Кандидат: " -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "Автентифікаційне попередження не прийнято до уваги.\n" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +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:1672 +msgid " Package pin: " +msgstr " Фіксатор(pin) пакунка: " -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "Встановити ці пакунки без перевірки?" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " Таблиця версій:" + +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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:1801 +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-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 "В кеші " - -#: 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 за %sB (%sB/s)\n" +#: cmdline/apt-cdrom.cc:182 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Повторіть цей процес для решти CD з вашого набору." -#: 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" +"Використання: 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" -#. 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:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%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" +#: 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:280 -#, c-format -msgid "No mirror file '%s' found " -msgstr "Не знайдено файла дзеркала '%s' " +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%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:367 #, c-format -msgid "Can not read mirror file '%s'" -msgstr "Неможливо прочитати файл дзеркала '%s'" +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Обираю '%s' як пакунок вихідних текстів, замість '%s'\n" -#: methods/mirror.cc:315 +#: cmdline/apt-get.cc:423 #, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "Неможливо прочитати файл дзеркала '%s'" +msgid "Can not find version '%s' of package '%s'" +msgstr "Ігнорувати недоступну версію '%s' пакунку '%s'" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:454 #, c-format -msgid "[Mirror: %s]" -msgstr "[Дзеркало: %s]" +msgid "Couldn't find package %s" +msgstr "Не можу знайти пакунок %s" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "Не вдалося створити IPC канал для підпроцесу" +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s позначений як встановлений вручну.\n" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -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:33 -msgid "Bad default setting!" -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'." -#: 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:538 cmdline/apt-get.cc:546 +msgid "Internal error, problem resolver broke stuff" +msgstr "Внутрішня помилка, вирішувач проблем щось поламав" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "Чи хочете ви видалити всі раніше завантажені .deb файли?" +#: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611 +msgid "Unable to lock the download directory" +msgstr "Неможливо заблокувати директорію для завантаження" -#: 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 "" -"Під час розпакування виникли якісь помилки. Пакунки, які були встановлені" +"Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " +"тексти" -#: dselect/install:103 -msgid "will be configured. This may result in duplicate errors" -msgstr "будуть налаштовані. Це може призвести до повторення помилок" +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "Неможливо знайти пакунок з вихідними текстами для %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 "" -"або виникнення нових через незадоволені залежності. Це нормально,тільки " -"помилки" +"УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\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 "" -"зазначені вище цього повідомлення є важливими. Будь-ласка, виправте їх і " -"виконайте установку '[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 -#, fuzzy -msgid "Failed to allocate diversion" -msgstr "Не вдалося створити diversion" +"Будь-ласка використовуйте:\n" +"bzr branch %s\n" +"щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "Внутрішня помилка в AddDiversion" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Пропускаємо вже завантажений файл '%s'\n" -#: apt-inst/filelist.cc:477 -#, fuzzy, c-format -msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Спроба перезапису diversion, %s -> %s і %s/%s" +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "Не вдалося визначити кількість вільного місця в %s" -#: apt-inst/filelist.cc:506 -#, fuzzy, c-format -msgid "Double add of diversion %s -> %s" -msgstr "Подвійне додавання diversion %s -> %s" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "Недостатньо місця в %s" -#: apt-inst/filelist.cc:549 +#. 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:893 #, c-format -msgid "Duplicate conf file %s/%s" -msgstr "Копія конфігураційного файлу %s/%s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" -#: apt-inst/extract.cc:101 apt-inst/extract.cc:172 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "The path %s is too long" -msgstr "Шлях %s занадто довгий" +msgid "Need to get %sB of source archives.\n" +msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" -#: apt-inst/extract.cc:132 +#: cmdline/apt-get.cc:904 #, c-format -msgid "Unpacking %s more than once" -msgstr "Розпакування %s більш ніж один раз" +msgid "Fetch source %s\n" +msgstr "Завантаження вихідних текстів %s\n" -#: apt-inst/extract.cc:142 -#, fuzzy, c-format -msgid "The directory %s is diverted" -msgstr "Директорія %s є відхиленою (diverted)" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "Деякі архіви не вдалося завантажити." -#: apt-inst/extract.cc:152 -#, c-format -msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Пакунок пробує записати у ціль з diversion %s/%s" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "Завантаження завершено в режимі \"тільки завантаження\"" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -#, fuzzy -msgid "The diversion path is too long" -msgstr "Шлях 'diversion' є занадто довгим" +#: cmdline/apt-get.cc:952 +#, c-format +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:964 #, 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:965 #, 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:993 #, 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 -#, fuzzy -msgid "Failed to locate node in its hash bucket" -msgstr "Не вдалося знайти вузол у його наборі хешів" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "Породжений процес завершився невдало" -#: apt-inst/extract.cc:293 -msgid "The path is too long" -msgstr "Шлях занадто довгий" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "" +"Для перевірки залежностей для побудови необхідно вказати як мінімум один " +"пакунок" -#: apt-inst/extract.cc:421 +#: cmdline/apt-get.cc:1056 #, 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::" +"Архітектури для налащтування" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, 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:1126 #, 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:1296 #, 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:1314 #, 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:1337 #, 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:1376 #, 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 "Архів занадто малий" - -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -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/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "Не вдалося створити канали (pipes)" +#: cmdline/apt-get.cc:1382 +#, 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:1405 +#, 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:1420 +#, 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 "Контрольна сума tar архіва невірна, архів пошкоджений" +#: cmdline/apt-get.cc:1425 +msgid "Failed to process build dependencies" +msgstr "Обробка залежностей для побудови закінчилася невдало" -#: apt-inst/contrib/extracttar.cc:308 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "Невідомий тип заголовку TAR - %u, член %s" +msgid "Changelog for %s (%s)" +msgstr "Журнал змін для %s (%s)" -#: apt-pkg/clean.cc:61 -#, c-format -msgid "Unable to stat %s." -msgstr "Неможливо прочитати атрибути %s." +#: cmdline/apt-get.cc:1616 +msgid "Supported modules:" +msgstr "Підтримувані модулі:" + +#: cmdline/apt-get.cc:1657 +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 - встановити нові пакунки (назва пакунка вказується\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/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" -msgstr "Виконується dpkg" - -#: apt-pkg/init.cc:146 -#, c-format -msgid "Packaging system '%s' is not supported" -msgstr "Система пакування '%s' не підтримується" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/init.cc:162 -msgid "Unable to determine a suitable packaging system type" -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:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-mark.cc:68 #, c-format -msgid "Wrote %i records.\n" -msgstr "Записано %i записів.\n" +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s не може бути позначений, тому що він не встановлений.\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 "Записано %i записів з %i відсутніми файлами.\n" +msgid "%s was already set to manually installed.\n" +msgstr "%s вже був позначений, як встановлений вручну.\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 "Записано %i записів з %i невідповідними файлам\n" +msgid "%s was already set to automatically installed.\n" +msgstr "%s вже був позначений, як автоматично встановлений.\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 "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" +msgid "%s was already set on hold.\n" +msgstr "%s вже був зафіксований.\n" -#: apt-pkg/indexcopy.cc:515 +#: cmdline/apt-mark.cc:243 #, c-format -msgid "Can't find authentication record for: %s" -msgstr "Неможливо знайти аутентифікаційний запис для: %s" +msgid "%s was already not hold.\n" +msgstr "%s вже був незафіксований.\n" -#: apt-pkg/indexcopy.cc:521 +#: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322 #, c-format -msgid "Hash mismatch for: %s" -msgstr "Невідповідність хешу для: %s" +msgid "%s set on hold.\n" +msgstr "%s зафіксовано.\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 "Драйвер для метода %s не знайдено." - -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" +msgid "Canceled hold on %s.\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:345 +msgid "Executing dpkg failed. Are you root?" +msgstr "Не вдалося виконати 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 "" -"Будь-ласка, вставте диск з поміткою: '%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 "Файл кешу пакунків має несумісну версію" +"Використання: 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: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-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 "Залежності (Depends)" +msgid "Unable to read the cdrom database %s" +msgstr "Неможливо прочитати базу %s з cdrom" -#: apt-pkg/pkgcache.cc:321 -msgid "PreDepends" -msgstr "Пре-Залежності (PreDepends)" +#: 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:321 -msgid "Suggests" -msgstr "Пропонує (Suggests)" +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Невірний CD-ROM" -#: apt-pkg/pkgcache.cc:322 -msgid "Recommends" -msgstr "Рекомендує (Recommends)" +#: 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:322 -msgid "Conflicts" -msgstr "Конфлікти (Conflicts)" +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Диск не знайдено." -#: apt-pkg/pkgcache.cc:322 -msgid "Replaces" -msgstr "Заміняє (Replaces)" +#: 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 "Застарілі (Obsoletes)" +#: 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:323 -msgid "Breaks" -msgstr "Ламає (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" -msgstr "Покращує (Enhances)" +#: methods/file.cc:48 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Невірне посилання (URI), локальні посилання не повинні починатися з //" -#: apt-pkg/pkgcache.cc:334 -msgid "important" -msgstr "важливі (important)" +#. 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 "необхідні (required)" +#: methods/ftp.cc:183 +msgid "Unable to determine the peer name" +msgstr "Неможливо визначити назву вузла" -#: apt-pkg/pkgcache.cc:334 -msgid "standard" -msgstr "стандартні (standard)" +#: methods/ftp.cc:188 +msgid "Unable to determine the local name" +msgstr "Неможливо визначити локальну назву" -#: apt-pkg/pkgcache.cc:335 -msgid "optional" -msgstr "необов'язкові (optional)" +#: 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 "додаткові (extra)" +#: 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)" - -#: apt-pkg/pkgcachegen.cc:257 -msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "Ого! Ви перевищили кількість імен пакунків, які APT може обробити." +msgid "Login script command '%s' failed, server said: %s" +msgstr "Команда '%s' у скрипті логіна не вдалася, сервер мовив: %s" -#: apt-pkg/pkgcachegen.cc:260 -msgid "Wow, you exceeded the number of versions 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:263 -msgid "Wow, you exceeded the number of descriptions 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:266 -msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." +#: 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" -msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" +#: 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" -msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %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 "Зчитування переліків пакунків" +#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 +msgid "Could not create a socket" +msgstr "Неможливо створити сокет (socket)" -#: apt-pkg/pkgcachegen.cc:1316 -#, fuzzy -msgid "Collecting File Provides" -msgstr "Збирання інформації про 'File Provides'" +#: methods/ftp.cc:712 +msgid "Could not connect data socket, connection timed out" +msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" -#: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259 -#, c-format -msgid "Unable to write to %s" -msgstr "Неможливо записати в %s" +#: methods/ftp.cc:716 methods/connect.cc:116 +msgid "Failed" +msgstr "Невдача" -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "Помилка IO під час збереження кешу вихідних текстів" +#: methods/ftp.cc:718 +msgid "Could not connect passive socket." +msgstr "Неможливо під'єднати пасивний сокет (passive socket)." -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -#, fuzzy -msgid "Send scenario to solver" -msgstr "Відправити сценарій розв'язувачу" +#: methods/ftp.cc:735 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "Виклик getaddrinfo не зміг отримати слухаючий сокет" -#: apt-pkg/edsp.cc:241 -#, fuzzy -msgid "Send request to solver" -msgstr "Відправити запит розв'язувачу" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "Неможливо приєднатися до сокета" -#: apt-pkg/edsp.cc:320 -#, fuzzy -msgid "Prepare for receiving solution" -msgstr "Пригодуватися до отримання розв'язку" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "Неможливо прослухати на сокеті" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" -"Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " -"помилку" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "Не вдалося визначити назву сокета" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -#, fuzzy -msgid "Execute external solver" -msgstr "Виконати зовнішній розв'язувач" +#: methods/ftp.cc:792 +msgid "Unable to send PORT command" +msgstr "Неможливо відіслати команду PORT" -#: 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 "не вдалося перейменувати, %s (%s -> %s)." +msgid "Unknown address family %u (AF_*)" +msgstr "Невідоме адресове сімейство %u (AF_*)" -#: apt-pkg/acquire-item.cc:163 -msgid "Hash Sum mismatch" -msgstr "Невідповідність хешу MD5Sum" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT невдало, сервер мовив: %s" -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "Невідповідність розміру" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Час з'єднання з сокетом даних вичерпався" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "Невірна дія %s" +#: 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)" -msgstr "" -"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " -"sources.list, або пошкоджений файл)" +#: 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 #, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "Неможливо знайти хеш-суму для '%s' у 'Release' файлі" +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 "Час з'єднання з сокетом (socket) з даними вичерпався" -#: 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 "" -"Файл 'Release' для %s застарів (недійсний з %s). Оновлення для цього " -"репозиторія не будуть застосовані." +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 "Черга" + +#: methods/ftp.cc:1128 +msgid "Unable to invoke " +msgstr "Неможливо викликати " -#: 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 "" -"Виникла помилка під час перевірки підпису. Репозиторій не оновлено, " -"попередні індексні файли будуть використані. Помилка 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. Можливо, це значить, що вам потрібно " -"власноруч виправити цей пакунок. (через відсутність 'arch')" +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 "Неможливо знайти джерело для завантаження версії '%s' для '%s'" +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 "" -"Індексні файли пакунків пошкоджені. Немає поля 'Filename' для пакунку %s." +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 не містить відбитку (fingerprint)" +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 "Не можу знайти IP адрес для %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 "Тимчасова помилка при отриманні IP адреси '%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 "Сталося щось дивне при спробі отримати IP адрес для '%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 "Сталося щось дивне при спробі отримати IP адрес для '%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." +"Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Деякі індексні файли не вдалося завантажити. Вони були зігноровані, або " -"замість них були використані старіші версії." +"Внутрішня помилка: Вірний підпис (signature), але не можливо визначити його " +"відбиток?!" -#: apt-pkg/srcrecords.cc:52 -msgid "You must put some 'source' URIs in your sources.list" -msgstr "Додайте деякі посилання (URI) на вихідні тексти у ваш 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 "Неможливо виконати '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 "" -"Невірне значення '%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 для фіксатора пакунків (pin)" +#: 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) для фіксатора пакунків (pin)" +#: 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 "" -"Неможливо прямо налаштувати конфігурацію на '%s'. Будь-ласка, дивіться man 5 " -"apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" +"Наступні підписи не можуть бути перевірені, тому що публічний ключ " +"відсутній:\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 через петлеві конфлікти/пре-залежності (Pre-Depends loop). Це " -"погано, але якщо Ви дійсно бажаєте зробити це, активуйте параметр 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 "Демонтується 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 "Вибір провалився" -#: 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 +#: methods/server.cc:134 methods/server.cc:141 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP сервер відіслав невірний заголовок 'reply'" + +#: 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:496 +msgid "Bad header data" +msgstr "Погана заголовкова інформація" + +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "З'єднання не вдалося" + +#: methods/server.cc:572 #, c-format msgid "" -"Found %zu package indexes, %zu source indexes, %zu translation indexes and " -"%zu signatures\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"Знайдено %zu індексів пакунків, %zu індексів вихідних текстів, %zu індексів " -"перекладів і %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?" +#: methods/server.cc:692 +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 "" -"Неможливо знайти ніякі файли пакунків, можливо, що це не диск з Debian, або " -"невірна архітектура?" -#: apt-pkg/cdrom.cc:771 +#: apt-private/private-list.cc:123 +msgid "Listing" +msgstr "" + +#: apt-private/private-list.cc:156 #, c-format -msgid "Found label '%s'\n" -msgstr "Знайдено мітку: '%s'\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:800 -msgid "That is not a valid name, try again.\n" -msgstr "Не є вірною назвою, спробуйте ще.\n" +#: apt-private/private-cachefile.cc:93 +msgid "Correcting dependencies..." +msgstr "Виправлення залежностей..." -#: apt-pkg/cdrom.cc:817 -#, c-format -msgid "" -"This disc is called: \n" -"'%s'\n" -msgstr "" -"Цей диск зветься: \n" -"'%s'\n" +#: apt-private/private-cachefile.cc:96 +msgid " failed." +msgstr " невдача." -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "Копіюються переліки пакунків..." +#: apt-private/private-cachefile.cc:99 +msgid "Unable to correct dependencies" +msgstr "Неможливо скоригувати залежності" -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "Записується новий перелік вихідних текстів\n" +#: apt-private/private-cachefile.cc:102 +msgid "Unable to minimize the upgrade set" +msgstr "Неможливо мінімізувати набір оновлень" -#: apt-pkg/cdrom.cc:874 -msgid "Source list entries for this disc are:\n" -msgstr "Перелік вихідних текстів для цього диска:\n" +#: apt-private/private-cachefile.cc:104 +msgid " Done" +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-cachefile.cc:108 +msgid "You might want to run 'apt-get -f install' to correct these." msgstr "" -"Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." +"Для виправлення цих помилок ви можете скористатися 'apt-get -f install'." + +#: apt-private/private-cachefile.cc:111 +msgid "Unmet dependencies. Try using -f." +msgstr "Незадоволені залежності. Спробуйте використати -f." -#: apt-pkg/algorithms.cc:1086 -msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +#: apt-private/private-output.cc:103 apt-private/private-show.cc:84 +#: apt-private/private-show.cc:89 +msgid "unknown" msgstr "" -"Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " -"пов'язано з зафіксованими пакунками." -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." +#: apt-private/private-output.cc:233 +#, fuzzy, c-format +msgid "[installed,upgradable to: %s]" +msgstr " [Встановлено]" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "Побудова дерева залежностей" +#: apt-private/private-output.cc:237 +#, fuzzy +msgid "[installed,local]" +msgstr " [Встановлено]" -#: apt-pkg/depcache.cc:139 -msgid "Candidate versions" -msgstr "Версії кандидатів" +#: apt-private/private-output.cc:240 +msgid "[installed,auto-removable]" +msgstr "" -#: apt-pkg/depcache.cc:168 -msgid "Dependency generation" -msgstr "Ґенерація залежностей" +#: apt-private/private-output.cc:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr " [Встановлено]" -#: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225 -msgid "Reading state information" -msgstr "Зчитування інформації про стан" +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr " [Встановлено]" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-output.cc:248 #, c-format -msgid "Failed to open StateFile %s" -msgstr "Не вдалося відкрити StateFile %s" +msgid "[upgradable from: %s]" +msgstr "" -#: apt-pkg/depcache.cc:256 -#, c-format -msgid "Failed to write temporary StateFile %s" -msgstr "Не вдалося записати до тимчасового StateFile файла %s" +#: apt-private/private-output.cc:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/tagfile.cc:140 +#: apt-private/private-output.cc:434 #, c-format -msgid "Unable to parse package file %s (1)" -msgstr "Неможливо проаналізувати файл пакунку %s (1)" +msgid "but %s is installed" +msgstr "але %s вже встановлений" -#: apt-pkg/tagfile.cc:237 +#: apt-private/private-output.cc:436 #, c-format -msgid "Unable to parse package file %s (2)" -msgstr "Неможливо проаналізувати файл пакунку %s (2)" +msgid "but %s is to be installed" +msgstr "але %s буде встановлений" -#: apt-pkg/cacheset.cc:489 -#, c-format -msgid "Release '%s' for '%s' was not found" -msgstr "Випуск '%s' для '%s' не знайдено" +#: apt-private/private-output.cc:443 +msgid "but it is not installable" +msgstr "але він не може бути встановлений" -#: apt-pkg/cacheset.cc:492 -#, c-format -msgid "Version '%s' for '%s' was not found" -msgstr "Версія '%s' для '%s' не знайдена" +#: apt-private/private-output.cc:445 +msgid "but it is a virtual package" +msgstr "але це віртуальний пакунок" -#: apt-pkg/cacheset.cc:603 -#, c-format -msgid "Couldn't find task '%s'" -msgstr "Неможливо знайти завдання '%s'" +#: apt-private/private-output.cc:448 +msgid "but it is not installed" +msgstr "але він не встановлений" -#: apt-pkg/cacheset.cc:609 -#, c-format -msgid "Couldn't find any package by regex '%s'" -msgstr "Неможливо знайти ніякий пакунок через рег.вираз '%s'" +#: apt-private/private-output.cc:448 +msgid "but it is not going to be installed" +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:453 +msgid " or" +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:467 apt-private/private-output.cc:479 +msgid "The following packages have unmet dependencies:" +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:502 +msgid "The following NEW packages will be 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:528 +msgid "The following packages will be REMOVED:" +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:550 +msgid "The following packages have been kept back:" +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:571 +msgid "The following packages will be upgraded:" +msgstr "Пакунки, які будуть ОНОВЛЕНІ:" -#: apt-pkg/indexrecords.cc:78 -#, c-format -msgid "Unable to parse Release file %s" -msgstr "Неможливо проаналізувати 'Release' файл %s" +#: apt-private/private-output.cc:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "Пакунки, які будуть замінені на СТАРІШІ версії:" -#: apt-pkg/indexrecords.cc:86 -#, c-format -msgid "No sections in Release file %s" -msgstr "Немає секцій у 'Release' файлі %s" +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "Пакунки, які мали б залишитися без змін, але будуть замінені:" -#: apt-pkg/indexrecords.cc:117 +#: apt-private/private-output.cc:667 #, c-format -msgid "No Hash entry in Release file %s" -msgstr "Немає запису 'Hash' у 'Release' файлі %s" +msgid "%s (due to %s) " +msgstr "%s (внаслідок %s) " -#: 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:675 +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/indexrecords.cc:149 +#: apt-private/private-output.cc:706 #, c-format -msgid "Invalid 'Date' entry in Release file %s" -msgstr "Невірний запис 'Date' у 'Release' файлі %s" - -#: apt-pkg/sourcelist.cc:127 -#, fuzzy, c-format -msgid "Malformed stanza %u in source list %s (URI parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" +msgid "%lu upgraded, %lu newly installed, " +msgstr "оновлено %lu, встановлено %lu нових, " -#: apt-pkg/sourcelist.cc:170 +#: apt-private/private-output.cc:710 #, c-format -msgid "Malformed line %lu in source list %s ([option] unparseable)" -msgstr "Спотворений рядок %lu у переліку джерел %s (нечитабельний [параметр])" +msgid "%lu reinstalled, " +msgstr "%lu перевстановлено, " -#: apt-pkg/sourcelist.cc:173 +#: apt-private/private-output.cc:712 #, c-format -msgid "Malformed line %lu in source list %s ([option] too short)" -msgstr "" -"Спотворений рядок %lu у переліку джерел %s ([параметр] занадто короткий)" +msgid "%lu downgraded, " +msgstr "%lu замінено на старіші версії, " -#: apt-pkg/sourcelist.cc:184 +#: apt-private/private-output.cc:714 #, c-format -msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" -msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не є призначенням)" +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu відмічено для видалення і %lu не оновлено.\n" -#: apt-pkg/sourcelist.cc:190 +#: apt-private/private-output.cc:718 #, c-format -msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "Спотворений рядок %lu у переліку джерел %s ([%s] не має ключа)" +msgid "%lu not fully installed or removed.\n" +msgstr "не встановлено(видалено) до кінця %lu пакунків.\n" -#: apt-pkg/sourcelist.cc:193 -#, c-format -msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +#. 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:740 +msgid "[Y/n]" msgstr "" -"Спотворений рядок %lu у переліку джерел %s ([%s] ключ %s не має значення)" - -#: apt-pkg/sourcelist.cc:206 -#, c-format -msgid "Malformed line %lu in source list %s (URI)" -msgstr "Спотворений рядок %lu у переліку джерел %s (проблема з URI)" -#: apt-pkg/sourcelist.cc:208 -#, c-format -msgid "Malformed line %lu in source list %s (dist)" -msgstr "Спотворений рядок %lu у переліку джерел %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:746 +msgid "[y/N]" +msgstr "" -#: apt-pkg/sourcelist.cc:211 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (аналіз URI)" +#. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set +#: apt-private/private-output.cc:757 +msgid "Y" +msgstr "" -#: apt-pkg/sourcelist.cc:217 -#, c-format -msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "Спотворений рядок %lu у переліку джерел %s (absolute dist)" +#. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set +#: apt-private/private-output.cc:763 +msgid "N" +msgstr "" -#: apt-pkg/sourcelist.cc:224 -#, c-format -msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "Спотворений рядок %lu у переліку джерел %s (dist parse)" +#: 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] "" +msgstr[1] "" +msgstr[2] "" -#: 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] "" +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-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:84 +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:93 +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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "Внутрішня помилка, Ordering не завершилася" -#: apt-pkg/deb/dpkgpm.cc:98 -#, c-format -msgid "Completely removing %s" -msgstr "Повністю видаляється %s" +#: apt-private/private-install.cc:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "Так, робити, як я скажу!" -#: apt-pkg/deb/dpkgpm.cc:1002 +#: apt-private/private-install.cc:224 #, 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:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "Перервано." -#: apt-pkg/deb/dpkgpm.cc:1009 -#, c-format -msgid "Preparing to completely remove %s" -msgstr "Підготовка до повного видалення %s" +#: apt-private/private-install.cc:245 +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:315 +msgid "Some files failed to download" +msgstr "Деякі файли не вдалося завантажити" -#: apt-pkg/deb/dpkgpm.cc:1066 -msgid "ioctl(TIOCGWINSZ) failed" +#: apt-private/private-install.cc:322 +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:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "Неможливо виправити втрачені пакунки." -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" -msgstr "" +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "Переривається встановлення." -#: apt-pkg/deb/dpkgpm.cc:1569 -msgid "Operation was interrupted before it could finish" -msgstr "Операцію було перервано до того, як вона мала завершитися" +#: apt-private/private-install.cc:368 +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:372 +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:393 +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:501 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:504 apt-private/private-install.cc:655 +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:508 +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:515 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:519 +#, 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:521 +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:614 +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:616 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:640 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:661 +msgid "Broken packages" +msgstr "Зламані пакунки" -#. TRANSLATORS: the %s contains the recovery command, usually -#. dpkg --configure -a -#: apt-pkg/deb/debsystem.cc:110 +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "Будуть встановлені наступні додаткові пакунки:" + +#: apt-private/private-install.cc:828 +msgid "Suggested packages:" +msgstr "Пропоновані пакунки:" + +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "Рекомендовані пакунки:" + +#: apt-private/private-install.cc:851 #, c-format -msgid "" -"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"dpkg було перервано, ви повинні вручну запустити '%s' аби виправити " -"проблему. " - -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -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:855 #, 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:867 #, 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:872 #, 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:920 #, c-format -msgid "%lis" -msgstr "%liс" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "Обрана версія '%s' (%s) для '%s'\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:925 #, 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:967 #, 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:973 #, 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-private/private-download.cc:40 +msgid "Authentication warning overridden.\n" +msgstr "Автентифікаційне попередження не прийнято до уваги.\n" -#: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474 +#: 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-private/private-search.cc:51 +msgid "Full Text Search" +msgstr "" + +#: apt-private/acqprogress.cc:66 +msgid "Hit " +msgstr "В кеші " + +#: apt-private/acqprogress.cc:88 +msgid "Get:" +msgstr "Отр:" + +#: apt-private/acqprogress.cc:119 +msgid "Ign " +msgstr "Ігн " -#: apt-pkg/contrib/fileutl.cc:394 +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "Пом " + +#: apt-private/acqprogress.cc:147 #, 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:237 #, 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:298 #, 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:184 #, 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-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-pkg/contrib/configuration.cc:801 +#: 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 =." -msgstr "" -"Опція %s: Специфікація вимагає, щоб рядки у конфігурації мали вираз =." +#: 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3305,12 +3318,7 @@ msgstr "" " -c=? Читати зазначений конфігураційний файл\n" " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "Неможливо прочитати атрибути %s" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "Неможливо визначити версію debconf. Він встановлений?" @@ -3437,17 +3445,17 @@ msgstr "Збігів не виявлено" msgid "Some files are missing in the package file group `%s'" msgstr "У групі пакунків '%s' відсутні деякі файли" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "БД була пошкоджена, файл перейменований на %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "БД застаріла, намагаюсь оновити %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." @@ -3455,105 +3463,105 @@ msgstr "" "Невірний формат БД. Якщо ви оновилися зі старої версії apt, будь-ласка " "видаліть і наново створіть базу-даних." -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "Не вдалося відкрити файл БД %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "Не вдалося прочитати посилання (readlink) %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "В архіві немає запису 'control'" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "Неможливо одержати курсор" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "У: Не вдалося прочитати директорію %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "У: Неможливо прочитати атрибути %s\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "П: " -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "У: " -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "П: Помилки відносяться до файлу " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "Не вдалося визначити %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "Не вдалося зробити обхід дерева" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "Не вдалося відкрити %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr "DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "Не вдалося прочитати посилання (readlink) %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "Не вдалося видалити посилання (unlink) %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** Не вдалося створити посилання %s на %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " Перевищено ліміт в %sB в DeLink.\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "Архів не мав поля 'package'" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, fuzzy, c-format msgid " %s has no override entry\n" msgstr " Відсутній запис про перепризначення (override) для %s\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакунок %s супроводжується %s, а не %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Відсутній запис про перепризначення вихідних текстів для %s\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Крім того, відсутній запис про бінарне перепризначення для %s\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 1cb0291b6..7abf45257 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu \n" "Language-Team: Chinese (simplified) \n" @@ -19,3118 +19,3131 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: cmdline/apt-cache.cc:149 +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: apt-pkg/clean.cc:40 apt-pkg/init.cc:103 apt-pkg/init.cc:111 +#: apt-pkg/acquire.cc:492 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280 +#: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369 +#: apt-pkg/contrib/fileutl.cc:482 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:46 apt-pkg/clean.cc:64 apt-pkg/clean.cc:127 +#: apt-pkg/acquire.cc:498 apt-pkg/acquire.cc:523 +#: 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:61 +#, 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:775 +#, 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:777 +#, 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:780 +#, 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:783 +#, 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:460 +#, 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 +#: 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:150 +msgid "Empty package cache" +msgstr "软件包缓存区是空的" + +#: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167 +msgid "The package cache file is corrupted" +msgstr "软件包缓存文件损坏了" + +#: apt-pkg/pkgcache.cc:161 +msgid "The package cache file is an incompatible version" +msgstr "软件包缓存区文件的版本不兼容" + +#: apt-pkg/pkgcache.cc:164 +#, fuzzy +msgid "The package cache file is corrupted, it is too small" +msgstr "软件包缓存文件损坏了" + +#: apt-pkg/pkgcache.cc:171 #, c-format -msgid "Package file %s is out of sync." -msgstr "软件包文件 %s 尚未同步。" +msgid "This APT does not support the versioning system '%s'" +msgstr "本程序目前不支持“%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 "没有发现匹配的软件包" +#: apt-pkg/pkgcache.cc:181 +#, fuzzy, c-format +msgid "The package cache was built for different architectures: %s vs %s" +msgstr "软件包缓存区是为其它架构的硬件构建的" -#: cmdline/apt-cache.cc:1254 -msgid "You must give at least one search pattern" -msgstr "您必须明确地给出至少一个表达式" +#: apt-pkg/pkgcache.cc:324 +msgid "Depends" +msgstr "依赖" -#: cmdline/apt-cache.cc:1420 -msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "" +#: apt-pkg/pkgcache.cc:324 +msgid "PreDepends" +msgstr "预依赖" + +#: apt-pkg/pkgcache.cc:324 +msgid "Suggests" +msgstr "建议" + +#: apt-pkg/pkgcache.cc:325 +msgid "Recommends" +msgstr "推荐" + +#: apt-pkg/pkgcache.cc:325 +msgid "Conflicts" +msgstr "冲突" + +#: apt-pkg/pkgcache.cc:325 +msgid "Replaces" +msgstr "替换" + +#: apt-pkg/pkgcache.cc:326 +msgid "Obsoletes" +msgstr "废弃" + +#: apt-pkg/pkgcache.cc:326 +msgid "Breaks" +msgstr "破坏" + +#: apt-pkg/pkgcache.cc:326 +msgid "Enhances" +msgstr "增强" + +#: apt-pkg/pkgcache.cc:337 +msgid "important" +msgstr "重要" + +#: apt-pkg/pkgcache.cc:337 +msgid "required" +msgstr "必需" + +#: apt-pkg/pkgcache.cc:337 +msgid "standard" +msgstr "标准" + +#: apt-pkg/pkgcache.cc:338 +msgid "optional" +msgstr "可选" + +#: apt-pkg/pkgcache.cc:338 +msgid "extra" +msgstr "额外" -#: cmdline/apt-cache.cc:1515 apt-pkg/cacheset.cc:596 +#: apt-pkg/pkgrecords.cc:38 #, c-format -msgid "Unable to locate package %s" -msgstr "未发现软件包 %s" +msgid "Index file type '%s' is not supported" +msgstr "不支持索引文件类型“%s”" -#: cmdline/apt-cache.cc:1545 -msgid "Package files:" -msgstr "软件包文件:" +#: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:785 +#, c-format +msgid "Regex compilation error - %s" +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)一个软件包文件" +#: apt-pkg/pkgcachegen.cc:116 +msgid "Cache has an incompatible versioning system" +msgstr "软件包暂存区使用的是不兼容的版本控制系统" -#. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1566 -msgid "Pinned packages:" -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:247 apt-pkg/pkgcachegen.cc:257 +#: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389 +#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422 +#: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447 +#: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532 +#: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:591 +#, fuzzy, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "处理 %s (FindPkg)时出错" -#: cmdline/apt-cache.cc:1578 cmdline/apt-cache.cc:1623 -msgid "(not found)" -msgstr "(没有找到)" +#: apt-pkg/pkgcachegen.cc:280 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "哇,软件包数量超出了本 APT 的处理能力。" -#: cmdline/apt-cache.cc:1586 -msgid " Installed: " -msgstr " 已安装:" +#: apt-pkg/pkgcachegen.cc:283 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "哇,软件包版本数量超出了本 APT 的处理能力。" -#: cmdline/apt-cache.cc:1587 -msgid " Candidate: " -msgstr " 候选软件包:" +#: apt-pkg/pkgcachegen.cc:286 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" -#: cmdline/apt-cache.cc:1605 cmdline/apt-cache.cc:1613 -msgid "(none)" -msgstr "(无)" +#: apt-pkg/pkgcachegen.cc:289 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" -#: cmdline/apt-cache.cc:1620 -msgid " Package pin: " -msgstr " 软件包锁:" +#: apt-pkg/pkgcachegen.cc:598 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" -#. Show the priority tables -#: cmdline/apt-cache.cc:1629 -msgid " Version table:" -msgstr " 版本列表:" +#: apt-pkg/pkgcachegen.cc:1233 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "无法获取源软件包列表 %s 的状态" -#: 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 +#: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425 +#: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588 +msgid "Reading package lists" +msgstr "正在读取软件包列表" + +#: apt-pkg/pkgcachegen.cc:1338 +msgid "Collecting File Provides" +msgstr "正在收集文件所提供的软件包" + +#: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098 +#: cmdline/apt-extracttemplates.cc:262 #, c-format -msgid "%s %s for %s compiled on %s %s\n" -msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" +msgid "Unable to write to %s" +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 "请把盘片插入驱动器再按回车键" +#: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537 +msgid "IO Error saving source cache" +msgstr "无法读取或写入软件源缓存" -#: cmdline/apt-cdrom.cc:139 -#, c-format -msgid "Failed to mount '%s' to '%s'" -msgstr "无法将 %s 挂载到 %s" +#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 +msgid "Send scenario to solver" +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/edsp.cc:241 +msgid "Send request to solver" msgstr "" -#: cmdline/apt-cdrom.cc:182 -msgid "Repeat this process for the rest of the CDs in your set." -msgstr "请对您的盘片套件中的其它盘片重复相同的操作。" +#: apt-pkg/edsp.cc:320 +msgid "Prepare for receiving solution" +msgstr "" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "参数没有成对" +#: apt-pkg/edsp.cc:327 +msgid "External solver failed without a proper error message" +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/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 +msgid "Execute external solver" 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" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "无法重命名文件,%s (%s -> %s)。" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash 校验和不符" -#: cmdline/apt-get.cc:330 -#, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "无法按照正则表达式 %s 找到任何软件包" +#: apt-pkg/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "大小不符" -#: cmdline/apt-get.cc:367 +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "无效的操作 %s" + +#: apt-pkg/acquire-item.cc:1679 #, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "选择 %s 作为源代码包而非 %s\n" +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find version '%s' of package '%s'" -msgstr "忽略不可用的 %2$s 软件包的 %1$s 版" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "无法解析软件包仓库 Release 文件 %s" -#: cmdline/apt-get.cc:454 -#, c-format -msgid "Couldn't find package %s" -msgstr "无法找到软件包 %s" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "以下 ID 的密钥没有可用的公钥:\n" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "%s set to manually installed.\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:461 cmdline/apt-mark.cc:83 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 被设置为手动安装。\n" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" -#: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127 +#: apt-pkg/acquire-item.cc:1827 +#, c-format msgid "" -"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " -"instead." +"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: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 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "无法找到与 %s 对应的源代码包" +msgid "GPG error: %s: %s" +msgstr "GPG 错误:%s: %s" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" -"提示:%s 的打包工作被维护于以下位置的 %s 版本控制系统中:\n" -"%s\n" +"我无法找到一个对应 %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" +#: apt-pkg/acquire-item.cc:2038 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -"请使用:\n" -"bzr get %s\n" -"获得该软件包的最近更新(可能尚未正式发布)。\n" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "无法获知您在 %s 上的可用空间" +msgid "Vendor block %s contains no fingerprint" +msgstr "软件提供者数据块内 %s 没有包含指纹信息" -#: cmdline/apt-get.cc:882 +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 #, c-format -msgid "You don't have enough free space in %s" -msgstr "您在 %s 上没有足够的可用空间" +msgid "List directory %spartial is missing." +msgstr "软件包列表的目录 %spartial 缺失。" -#. 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.cc:92 #, c-format -msgid "Need to get %sB/%sB of source archives.\n" -msgstr "需要下载 %sB/%sB 的源代码包。\n" +msgid "Archives directory %spartial is missing." +msgstr "仓库目录 %spartial 确实。" -#. TRANSLATOR: The required 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.cc:100 #, c-format -msgid "Need to get %sB of source archives.\n" -msgstr "需要下载 %sB 的源代码包。\n" +msgid "Unable to lock directory %s" +msgstr "无法对目录 %s 加锁" -#: cmdline/apt-get.cc:902 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Fetch source %s\n" -msgstr "下载源代码 %s\n" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "正在下载第 %li 个文件,共 %li 个(还剩 %s 个)" -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "有一些包文件无法下载。" +#: apt-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "正在下载第 %li 个文件,共 %li 个" -#: 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 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "忽略已经被解包到 %s 目录的源代码包\n" +msgid "Failed to fetch %s %s\n" +msgstr "无法下载 %s %s\n" + +#: 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 "" +"有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。" + +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "您必须在您的 sources.list 写入一些“软件源”的 URI" -#: cmdline/apt-get.cc:962 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "运行解包的命令“%s”出错。\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:963 +#: apt-pkg/policy.cc:422 #, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "请检查是否安装了“dpkg-dev”软件包。\n" +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "首选项文件 %s 中发现有无效的记录,无 Package 字段头" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:444 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "执行构造软件包命令“%s”失败。\n" +msgid "Did not understand pin type %s" +msgstr "无法识别锁定的类型 %s" -#: cmdline/apt-get.cc:1010 -msgid "Child process failed" -msgstr "子进程出错" +#: apt-pkg/policy.cc:452 +msgid "No priority (or zero) specified for pin" +msgstr "没有为版本锁定指定优先级(或为零)" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 +#, 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 进行配置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure " +"(%d)" + +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "无法打开文件 %s" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:584 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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 选项。" -#: cmdline/apt-get.cc:1078 cmdline/apt-get.cc:1081 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "无法获得 %s 的构建依赖关系信息" +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 "正在卸载 CD-ROM...\n" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "%s has no build depends.\n" -msgstr " %s 没有构建依赖关系信息。\n" +msgid "Using CD-ROM mount point %s\n" +msgstr "现把 %s 作为了 CD-ROM 的挂载点\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 "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" +#: 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 "Stored label: %s\n" +msgstr "已归档文件的标签:%s\n" + +#: apt-pkg/cdrom.cc:680 +msgid "Scanning disc for index files...\n" +msgstr "正在盘片中查找索引文件...\n" -#: cmdline/apt-get.cc:1289 +#: apt-pkg/cdrom.cc:734 #, c-format msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"找到了 %zu 个软件包索引、%zu 个源代码包索引、%zu 个翻译索引和 %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?" +msgstr "" +"无法确定任何包文件的位置,可能这不是一张 Debian 盘片或者是选择了错误的硬件构" +"架。" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:771 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" +msgid "Found label '%s'\n" +msgstr "找到标签 '%s'\n" -#: cmdline/apt-get.cc:1351 -#, fuzzy, c-format +#: 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 "" -"%s dependency for %s cannot be satisfied because candidate version of " -"package %s can't satisfy version requirements" +"This disc is called: \n" +"'%s'\n" msgstr "" -"由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 " -"%1$s 依赖关系" +"这张盘片现在的名字是:\n" +"“%s”\n" -#: cmdline/apt-get.cc:1357 -#, fuzzy, c-format +#: 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 dependency for %s cannot be satisfied because package %s has no candidate " -"version" -msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" +"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::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 "正在分析软件包的依赖关系树" -#: cmdline/apt-get.cc:1380 +#: 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 "Failed to satisfy %s dependency for %s: %s" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" +msgid "Failed to open StateFile %s" +msgstr "无法打开状态文件 %s" -#: cmdline/apt-get.cc:1395 +#: apt-pkg/depcache.cc:256 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "不能满足软件包 %s 所要求的构建依赖关系。" +msgid "Failed to write temporary StateFile %s" +msgstr "无法写入临时状态文件 %s" -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "无法处理构建依赖关系" +#: apt-pkg/tagfile.cc:169 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "无法解析软件包文件 %s (1)" + +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "无法解析软件包文件 %s (2)" + +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "未找到“%2$s”的“%1$s”发布版本" + +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "未找到“%2$s”的“%1$s”版本" + +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "未发现软件包 %s" + +#: apt-pkg/cacheset.cc:604 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "无法找到任务 %s" + +#: apt-pkg/cacheset.cc:610 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: cmdline/apt-get.cc:1493 cmdline/apt-get.cc:1505 +#: apt-pkg/cacheset.cc:616 #, fuzzy, c-format -msgid "Changelog for %s (%s)" -msgstr "正在连接 %s (%s)" +msgid "Couldn't find any package by glob '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -msgstr "支持的模块:" +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "无法从完全虚拟的软件包 %s 中选择版本" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 +#, 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" -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" - -#: cmdline/apt-mark.cc:243 -#, fuzzy, 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 -#, 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 "" - -#: 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 "" - -#: 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" -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 "无法找到该文件" - -#: 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" - -#: 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 "" -"您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。" - -#: methods/ftp.cc:280 -#, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "登录脚本命令“%s”出错,服务器响应信息为:%s" - -#: methods/ftp.cc:306 -#, 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 -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 -#, c-format -msgid "Unknown address family %u (AF_*)" -msgstr "无法识别的地址族 %u (AF_*)" - -#: methods/ftp.cc:811 -#, 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 "把文件加入哈希表时出错" - -#: methods/ftp.cc:890 -#, 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 "数据套接字超时" - -#: 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 "无法调用 " - -#: methods/connect.cc:76 -#, c-format -msgid "Connecting to %s (%s)" -msgstr "正在连接 %s (%s)" +"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:648 #, 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:656 #, 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:664 #, 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:83 #, 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:91 #, 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:136 #, 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:149 #, c-format -msgid "Could not resolve '%s'" -msgstr "无法解析域名“%s”" +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内 Valid-Until 条目无效" -#: methods/connect.cc:205 +#: apt-pkg/indexrecords.cc:168 #, c-format -msgid "Temporary failure resolving '%s'" -msgstr "暂时不能解析域名“%s”" +msgid "Invalid 'Date' entry in Release file %s" +msgstr "软件包仓库 Release 文件 %s 内 Date 条目无效" -#: methods/connect.cc:209 +#: apt-pkg/sourcelist.cc:127 #, fuzzy, c-format -msgid "System error resolving '%s:%s'" -msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" +msgid "Malformed stanza %u in source list %s (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" -#: methods/connect.cc:211 +#: apt-pkg/sourcelist.cc:170 #, c-format -msgid "Something wicked happened resolving '%s:%s' (%i - %s)" -msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 无法解析)" -#: methods/connect.cc:258 +#: apt-pkg/sourcelist.cc:173 #, 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 "内部错误:签名正确无误,但是无法确认密钥指纹?!" - -#: methods/gpgv.cc:172 -msgid "At least one invalid signature was encountered." -msgstr "至少发现一个无效的签名。" - -#: methods/gpgv.cc:174 -msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" -msgstr "无法运行 gpgv 以验证签名(您安装了 gpgv 吗?)" +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([选项] 太短)" -#. 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?)" -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" - -#: methods/gzip.cc:69 -msgid "Empty files can't be valid archives" -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 调用出错" +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误([%3$s] 不是一个任务)" -#: methods/http.cc:626 -msgid "Connection timed out" -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] 没有键)" -#: methods/http.cc:649 -msgid "Error writing to output file" -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 没有值)" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "正在等待报头" +#: apt-pkg/sourcelist.cc:206 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误(URI)" -#: methods/server.cc:109 -msgid "Bad header line" -msgstr "错误的报头行" +#: apt-pkg/sourcelist.cc:208 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版)" -#: methods/server.cc:134 methods/server.cc:141 -msgid "The HTTP server sent an invalid reply header" -msgstr "该 HTTP 服务器发送了一个无效的应答报头" +#: apt-pkg/sourcelist.cc:211 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" -#: methods/server.cc:171 -msgid "The HTTP server sent an invalid Content-Length header" -msgstr "该 HTTP 服务器发送了一个无效的 Content-Length 报头" +#: apt-pkg/sourcelist.cc:217 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(独立发行版)" -#: methods/server.cc:194 -msgid "The HTTP server sent an invalid Content-Range header" -msgstr "该 HTTP 服务器发送了一个无效的 Content-Range 报头" +#: apt-pkg/sourcelist.cc:224 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版解析)" -#: methods/server.cc:196 -msgid "This HTTP server has broken range support" -msgstr "该 HTTP 服务器的 range 支持不正常" +#: apt-pkg/sourcelist.cc:335 +#, c-format +msgid "Opening %s" +msgstr "正在打开 %s" -#: methods/server.cc:220 -msgid "Unknown date format" -msgstr "无法识别的日期格式" +#: apt-pkg/sourcelist.cc:371 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" -#: methods/server.cc:489 -msgid "Bad header data" -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/server.cc:506 methods/server.cc:562 -msgid "Connection failed" -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/server.cc:654 -msgid "Internal error" -msgstr "内部错误" +#: apt-pkg/deb/dpkgpm.cc:95 +#, c-format +msgid "Installing %s" +msgstr "正在安装 %s" -#: apt-private/private-upgrade.cc:25 -msgid "Calculating upgrade... " -msgstr "正在对升级进行计算... " +#: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996 +#, c-format +msgid "Configuring %s" +msgstr "正在配置 %s" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "完成" +#: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003 +#, c-format +msgid "Removing %s" +msgstr "正在删除 %s" -#: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47 -msgid "Sorting" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:98 +#, c-format +msgid "Completely removing %s" +msgstr "完全删除 %s" -#: apt-private/private-list.cc:131 -msgid "Listing" -msgstr "" +#: apt-pkg/deb/dpkgpm.cc:99 +#, c-format +msgid "Noting disappearance of %s" +msgstr "注意到 %s 已经消失" -#: 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] "" +msgid "Running post-installation trigger %s" +msgstr "执行安装后执行的触发器 %s" -#: apt-private/private-cachefile.cc:93 -msgid "Correcting dependencies..." -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-cachefile.cc:96 -msgid " failed." -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-cachefile.cc:99 -msgid "Unable to correct dependencies" -msgstr "无法更正依赖关系" +#: apt-pkg/deb/dpkgpm.cc:989 +#, c-format +msgid "Preparing %s" +msgstr "正在准备 %s" -#: apt-private/private-cachefile.cc:102 -msgid "Unable to minimize the upgrade set" -msgstr "无法最小化要升级的软件包集合" +#: apt-pkg/deb/dpkgpm.cc:990 +#, c-format +msgid "Unpacking %s" +msgstr "正在解压缩 %s" -#: apt-private/private-cachefile.cc:104 -msgid " Done" -msgstr " 完成" +#: apt-pkg/deb/dpkgpm.cc:995 +#, c-format +msgid "Preparing to configure %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/deb/dpkgpm.cc:997 +#, c-format +msgid "Installed %s" +msgstr "已安装 %s" -#: apt-private/private-cachefile.cc:111 -msgid "Unmet dependencies. Try using -f." -msgstr "不能满足依赖关系。不妨试一下 -f 选项。" +#: apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Preparing for removal of %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/deb/dpkgpm.cc:1004 +#, c-format +msgid "Removed %s" +msgstr "已删除 %s" -#: apt-private/private-output.cc:233 -#, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr " [已安装]" +#: apt-pkg/deb/dpkgpm.cc:1009 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "正在准备完全删除 %s" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr " [已安装]" +#: apt-pkg/deb/dpkgpm.cc:1010 +#, c-format +msgid "Completely removed %s" +msgstr "完全删除了 %s" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" +#: apt-pkg/deb/dpkgpm.cc:1064 +msgid "ioctl(TIOCGWINSZ) failed" msgstr "" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr " [已安装]" - -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr " [已安装]" +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 +#, fuzzy, c-format +msgid "Can not write log (%s)" +msgstr "无法写入 %s" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" +#: apt-pkg/deb/dpkgpm.cc:1067 +msgid "Is /dev/pts mounted?" msgstr "" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" +#: apt-pkg/deb/dpkgpm.cc:1088 +msgid "Is stdout a terminal?" msgstr "" -#: apt-private/private-output.cc:434 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339 #, c-format -msgid "but %s is installed" -msgstr "但是 %s 已经安装" +msgid "Waited for %s but it wasn't there" +msgstr "等待子进程 %s 的退出,但是它并不存在" -#: apt-private/private-output.cc:436 -#, c-format -msgid "but %s is to be installed" -msgstr "但是 %s 正要被安装" +#: apt-pkg/deb/dpkgpm.cc:1563 +msgid "Operation was interrupted before it could finish" +msgstr "" -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "但无法安装它" +#: apt-pkg/deb/dpkgpm.cc:1625 +msgid "No apport report written because MaxReports is reached already" +msgstr "由于已经达到 MaxReports 限制,没有写入 apport 报告。" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "但是它是虚拟软件包" +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "依赖问题 - 保持未配置" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "但是它还没有被安装" +#: apt-pkg/deb/dpkgpm.cc:1632 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "因为错误消息指示这是由于上一个问题导致的错误,没有写入 apport 报告。" -#: apt-private/private-output.cc:448 -msgid "but it is not going to be installed" -msgstr "但是它将不会被安装" +#: apt-pkg/deb/dpkgpm.cc:1638 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" -#: apt-private/private-output.cc:453 -msgid " or" -msgstr " 或" +#: apt-pkg/deb/dpkgpm.cc:1645 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "因为错误消息指示这是由于内存不足,没有写入 apport 报告。" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "下列软件包有未满足的依赖关系:" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +#, fuzzy +msgid "" +"No apport report written because the error message indicates an issue on the " +"local system" +msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" -#: apt-private/private-output.cc:502 -msgid "The following NEW packages will be installed:" -msgstr "下列【新】软件包将被安装:" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "因为错误消息指示这是一个 dpkg I/O 错误,没有写入 apport 报告。" -#: apt-private/private-output.cc:528 -msgid "The following packages will be REMOVED:" -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:550 -msgid "The following packages have been kept back:" -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-output.cc:571 -msgid "The following packages will be upgraded:" -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-output.cc:592 -msgid "The following packages will be DOWNGRADED:" -msgstr "下列软件包将被【降级】:" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +msgstr "未锁定" -#: apt-private/private-output.cc:612 -msgid "The following held packages will be changed:" -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-output.cc:667 +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:413 #, c-format -msgid "%s (due to %s) " -msgstr "%s (是由于 %s) " +msgid "%lih %limin %lis" +msgstr "%li小时 %li分 %li秒" -#: apt-private/private-output.cc:675 -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" -"请勿尝试,除非您确实知道您在做什么!" +#. 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:706 +#. s means seconds +#: apt-pkg/contrib/strutl.cc:425 #, c-format -msgid "%lu upgraded, %lu newly installed, " -msgstr "升级了 %lu 个软件包,新安装了 %lu 个软件包," +msgid "%lis" +msgstr "%li秒" -#: apt-private/private-output.cc:710 +#: apt-pkg/contrib/strutl.cc:1243 #, c-format -msgid "%lu reinstalled, " -msgstr "重新安装了 %lu 个软件包," +msgid "Selection %s not found" +msgstr "找不到您选则的 %s" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/fileutl.cc:191 #, c-format -msgid "%lu downgraded, " -msgstr "降级了 %lu 个软件包," +msgid "Not using locking for read only lock file %s" +msgstr "由于文件系统为只读,因而无法使用文件锁 %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/fileutl.cc:196 #, c-format -msgid "%lu to remove and %lu not upgraded.\n" -msgstr "要卸载 %lu 个软件包,有 %lu 个软件包未被升级。\n" +msgid "Could not open lock file %s" +msgstr "无法打开锁文件 %s" -#: apt-private/private-output.cc:718 +#: apt-pkg/contrib/fileutl.cc:219 #, c-format -msgid "%lu not fully installed or removed.\n" -msgstr "有 %lu 个软件包没有被完全安装或卸载。\n" +msgid "Not using locking for nfs mounted lock file %s" +msgstr "无法在 nfs 文件系统上使用文件锁 %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:740 -msgid "[Y/n]" +#: apt-pkg/contrib/fileutl.cc:224 +#, c-format +msgid "Could not get lock %s" +msgstr "无法获得锁 %s" + +#: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475 +#, 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:746 -msgid "[y/N]" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:757 -msgid "Y" +#: apt-pkg/contrib/fileutl.cc:413 +#, 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:763 -msgid "N" +#: apt-pkg/contrib/fileutl.cc:422 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" msgstr "" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/fileutl.cc:841 #, c-format -msgid "Regex compilation error - %s" -msgstr "编译正则表达式时出错 - %s" +msgid "Sub-process %s received a segmentation fault." +msgstr "子进程 %s 发生了段错误" -#: apt-private/private-update.cc:31 -msgid "The update command takes no arguments" -msgstr " update 命令不需要参数" +#: apt-pkg/contrib/fileutl.cc:843 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "子进程 %s 收到信号 %u。" -#: apt-private/private-update.cc:90 +#: apt-pkg/contrib/fileutl.cc:847 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] "" +msgid "Sub-process %s returned an error code (%u)" +msgstr "子进程 %s 返回了一个错误号 (%u)" -#: apt-private/private-update.cc:94 -msgid "All packages are up to date." -msgstr "" +#: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "子进程 %s 异常退出" -#: apt-private/private-show.cc:156 +#: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: methods/ftp.cc:462 methods/rsh.cc:246 +msgid "Write error" +msgstr "写出错" + +#: apt-pkg/contrib/fileutl.cc:951 #, 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 "Problem closing the gzip file %s" +msgstr "关闭 gzip %s 文件出错" -#: apt-private/private-show.cc:163 -msgid "not a real package (virtual)" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1139 +#, 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/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "无法打开文件描述符 %d" -#: apt-private/private-install.cc:91 -msgid "Packages need to be removed but remove is disabled." -msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。" +#: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "无法创建子进程的 IPC 管道" -#: apt-private/private-install.cc:110 -msgid "Internal error, Ordering didn't finish" -msgstr "内部错误,Ordering 未能完成" +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "无法执行压缩程序" -#: 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/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +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:155 +#: apt-pkg/contrib/fileutl.cc:1552 +#, fuzzy, c-format +msgid "read, still have %llu to read but none left" +msgstr "读取文件出错,还剩 %lu 字节没有读出" + +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "写入文件出错,还剩 %lu 字节没有保存" + +#: apt-pkg/contrib/fileutl.cc:1953 #, c-format -msgid "Need to get %sB/%sB of archives.\n" -msgstr "需要下载 %sB/%sB 的软件包。\n" +msgid "Problem closing the 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:160 +#: apt-pkg/contrib/fileutl.cc:1964 #, c-format -msgid "Need to get %sB of archives.\n" -msgstr "需要下载 %sB 的软件包。\n" +msgid "Problem renaming the file %s to %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:167 +#: apt-pkg/contrib/fileutl.cc:1975 #, c-format -msgid "After this operation, %sB of additional disk space will be used.\n" -msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" +msgid "Problem unlinking the file %s" +msgstr "用 unlink 删除文件 %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 +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "同步文件出错" + +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "无法读取 %s 的状态" + +#: apt-pkg/contrib/progress.cc:148 #, c-format -msgid "After this operation, %sB disk space will be freed.\n" -msgstr "解压缩后将会空出 %sB 的空间。\n" +msgid "%c%s... Error!" +msgstr "%c%s... 有错误!" -#: apt-private/private-install.cc:200 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "You don't have enough free space in %s." -msgstr "您在 %s 上没有足够的可用空间。" +msgid "%c%s... Done" +msgstr "%c%s... 完成" + +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +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-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 "无法 mmap %lu 字节的数据" -#: 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/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "无法关闭 mmap" -#: 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/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "无法同步 mmap " -#. 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/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "无法 mmap %lu 字节的数据" -#: apt-private/private-install.cc:222 +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "无法截断文件" + +#: 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 "" -"您的操作会导致潜在的危害。\n" -"若还想继续的话,就输入下面的短句“%s”\n" -" ?] " - -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "中止执行。" - -#: apt-private/private-install.cc:243 -msgid "Do you want to continue?" -msgstr "您希望继续执行吗?" +"动态 MMap 没有空间了。请增大 APT::Cache-Start 的大小。当前值:%lu。(man 5 " +"apt.conf)" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -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 "无法增加 MMap 的大小,因为已经达到 %lu 字节的限制。" -#: apt-private/private-install.cc:320 +#: apt-pkg/contrib/mmap.cc:449 msgid "" -"Unable to fetch some archives, maybe run apt-get update or try with --fix-" -"missing?" -msgstr "" -"有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" -"再试试?" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "无法增加 MMap 大小,因为用户已禁用自动增加。" -#: apt-private/private-install.cc:324 -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:329 -msgid "Unable to correct missing packages." -msgstr "无法更正缺少的软件包。" +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "无法读取盘片的状态" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "中止安装。" +#: apt-pkg/contrib/configuration.cc:521 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "无法识别的类型缩写:“%c”" -#: 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] "以下软件包因为文件已被其他软件包覆盖而消失:" +#: apt-pkg/contrib/configuration.cc:635 +#, c-format +msgid "Opening configuration file %s" +msgstr "正在打开配置文件 %s" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意:这是自动被 dpkg 有意完成的。" +#: apt-pkg/contrib/configuration.cc:803 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "语法错误 %s:%u:配置小节没有以名字开头" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "我们不应该进行删除,无法启动自动删除器" +#: apt-pkg/contrib/configuration.cc:822 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "语法错误 %s:%u:标签格式有误" -#: 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 "似乎自动卸载工具损坏了一些软件,这不应该发生。请向 apt 提交错误报告。" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "下列信息可能会对解决问题有所帮助:" +#: apt-pkg/contrib/configuration.cc:879 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "语法错误 %s:%u:只能在顶层配置文件中使用指示" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部错误,自动卸载工具坏事了" +#: apt-pkg/contrib/configuration.cc:886 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "语法错误 %s:%u:太多的嵌套 include 命令" -#: 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] "下列软件包是自动安装的并且现在不需要了:" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "语法错误 %s:%u:Included from here" -#: apt-private/private-install.cc:517 +#: apt-pkg/contrib/configuration.cc:899 #, 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 "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "语法错误 %s:%u:不支持的指令“%s”" -#: 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-pkg/contrib/configuration.cc:902 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "语法错误 %s:%u:clean 指令需要一个选项树作为参数" -#: 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:952 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "语法错误 %s:%u:文件尾部有多余的无意义的数据" -#: 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”(也可" -"以指定一个解决办法)。" +#. 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: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)目录移出。" +#: 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:659 -msgid "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:712 -msgid "The following extra packages will be installed:" -msgstr "将会安装下列额外的软件包:" +#: apt-pkg/contrib/cmndline.cc:168 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "命令行选项 %s 不是布尔值" -#: apt-private/private-install.cc:802 -msgid "Suggested 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:803 -msgid "Recommended 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 =." +msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定" -#: apt-private/private-install.cc:825 +#: apt-pkg/contrib/cmndline.cc:278 #, c-format -msgid "Skipping %s, it is already installed and upgrade is not set.\n" -msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" +msgid "Option %s requires an integer argument, not '%s'" +msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”" -#: apt-private/private-install.cc:829 +#: apt-pkg/contrib/cmndline.cc:309 #, c-format -msgid "Skipping %s, it is not installed and only upgrades are requested.\n" -msgstr "忽略了 %s,它已经被安装而且仅请求了升级。\n" +msgid "Option '%s' is too long" +msgstr "选项“%s”太长" -#: apt-private/private-install.cc:841 +#: apt-pkg/contrib/cmndline.cc:341 #, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "不能重新安装 %s,因为无法下载它。\n" +msgid "Sense %s is not understood, try true or false." +msgstr "不能识别参数 %s,请用 true 或 false" -#: apt-private/private-install.cc:846 +#: apt-pkg/contrib/cmndline.cc:391 #, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 已经是最新的版本了。\n" +msgid "Invalid operation %s" +msgstr "无效的操作 %s" -#: apt-private/private-install.cc:894 +#: cmdline/apt-cache.cc:149 #, c-format -msgid "Selected version '%s' (%s) for '%s'\n" -msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" +msgid "Package %s version %s has an unmet dep:\n" +msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n" -#: 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" +#: cmdline/apt-cache.cc:317 +msgid "Total package names: " +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" +#: cmdline/apt-cache.cc:319 +msgid "Total package structures: " +msgstr "全部软件包结构:" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "软件包 %s 还未安装,因而不会被卸载\n" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +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 需要 root 特权进行实际的执行。\n" -"   同时请记住此时并未锁定,所以请勿完全相信当前的情况!" +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " 完全虚拟软件包:" + +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " 单虚拟软件包:" -#: apt-private/private-download.cc:36 -msgid "WARNING: The following packages cannot be authenticated!" -msgstr "【警告】:下列软件包不能通过验证!" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " 混合虚拟软件包:" -#: apt-private/private-download.cc:40 -msgid "Authentication warning overridden.\n" -msgstr "忽略了认证警告。\n" +#: cmdline/apt-cache.cc:363 +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:365 +msgid "Total distinct versions: " +msgstr "按版本共计:" -#: apt-private/private-download.cc:50 -msgid "Install these packages without verification?" -msgstr "不经验证就安装这些软件包吗?" +#: cmdline/apt-cache.cc:367 +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:369 +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:372 +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:374 +msgid "Total Desc/File relations: " +msgstr "按说明/文件关系共计:" -#: apt-private/private-search.cc:51 -msgid "Full Text Search" -msgstr "" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "提供映射共计:" -#: apt-private/acqprogress.cc:66 -msgid "Hit " -msgstr "命中 " +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "Glob 字串共计:" -#: apt-private/acqprogress.cc:90 -msgid "Get:" -msgstr "获取:" +#: cmdline/apt-cache.cc:402 +msgid "Total dependency version space: " +msgstr "依赖关系版本名所占空间共计:" -#: apt-private/acqprogress.cc:121 -msgid "Ign " -msgstr "忽略 " +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "Slack 空间共计:" -#: apt-private/acqprogress.cc:125 -msgid "Err " -msgstr "错误 " +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +msgstr "总占用空间:" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "下载 %sB,耗时 %s (%sB/s)\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:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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" +#: cmdline/apt-cache.cc:1306 +msgid "You must give at least one search pattern" +msgstr "您必须明确地给出至少一个表达式" + +#: cmdline/apt-cache.cc:1472 +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:1597 +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" -msgstr "无法切换工作目录到 %s" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +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:280 -#, c-format -msgid "No mirror file '%s' found " -msgstr "没有找到镜像文件 %s" +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1618 +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:1630 cmdline/apt-cache.cc:1675 +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:1638 +msgid " Installed: " +msgstr " 已安装:" -#: methods/mirror.cc:445 -#, c-format -msgid "[Mirror: %s]" -msgstr "[镜像:%s]" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +msgstr " 候选软件包:" -#: methods/rsh.cc:102 ftparchive/multicompress.cc:171 -msgid "Failed to create IPC pipe to subprocess" -msgstr "无法为子进程创建 IPC 管道" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +msgstr "(无)" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -msgstr "连接被永久关闭" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +msgstr " 软件包锁:" -#: dselect/install:33 -msgid "Bad default setting!" -msgstr "错误的默认设置!" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +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:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "您想要删除之前下载的所有 .deb 文件吗?" +#: cmdline/apt-cache.cc:1801 +#, 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" -#: 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 Disk 1”" -#: 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 "请把盘片插入驱动器再按回车键" -#: 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" -msgstr "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall" +"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 "请对您的盘片套件中的其它盘片重复相同的操作。" -#: dselect/update:30 -msgid "Merging available information" -msgstr "正在合并可用信息" +#: cmdline/apt-config.cc:48 +msgid "Arguments not in pairs" +msgstr "参数没有成对" -#: apt-inst/filelist.cc:380 -msgid "DropNode called on still linked node" -msgstr "把 DropNode 用在了仍在链表中的节点上" +#: 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-inst/filelist.cc:412 -msgid "Failed to locate the hash element!" -msgstr "无法定位哈希表元素!" +#: cmdline/apt-get.cc:245 +#, fuzzy, c-format +msgid "Can not find a package for architecture '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-inst/filelist.cc:459 -msgid "Failed to allocate diversion" -msgstr "无法分配转移项" +#: cmdline/apt-get.cc:327 +#, fuzzy, c-format +msgid "Can not find a package '%s' with version '%s'" +msgstr "无法按照正则表达式 %s 找到任何软件包" -#: apt-inst/filelist.cc:464 -msgid "Internal error in AddDiversion" -msgstr "内部错误,出现在 AddDiversion" +#: cmdline/apt-get.cc:330 +#, fuzzy, c-format +msgid "Can not find a package '%s' with release '%s'" +msgstr "无法按照正则表达式 %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 -#, c-format -msgid "Double add of diversion %s -> %s" -msgstr "添加了两个转移项 %s-> %s" +#: cmdline/apt-get.cc:423 +#, fuzzy, c-format +msgid "Can not find version '%s' of package '%s'" +msgstr "忽略不可用的 %2$s 软件包的 %1$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:891 #, 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 已被转移" +#: 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 "该软件包正尝试写入转移对象 %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 -#, c-format -msgid "Failed to stat %s" -msgstr "无法获得 %s 的状态" +#: cmdline/apt-get.cc:726 +msgid "Must specify at least one package to fetch source for" +msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1091 #, c-format -msgid "Failed to rename %s to %s" -msgstr "无法将 %s 重命名为 %s" +msgid "Unable to find a source package for %s" +msgstr "无法找到与 %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 "目录 %s 要被一个非目录的文件替换" - -#: apt-inst/extract.cc:289 -msgid "Failed to locate node in its hash bucket" -msgstr "无法在其散列桶中分配节点" +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:293 -msgid "The path is too long" -msgstr "路径名太长" +#: 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:421 +#: cmdline/apt-get.cc:839 #, c-format -msgid "Overwrite package match with no version for %s" -msgstr "用来覆盖的软件包不属于 %s 的任何版本" +msgid "Skipping already downloaded file '%s'\n" +msgstr "忽略已下载过的文件“%s”\n" -#: apt-inst/extract.cc:438 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件" +msgid "Couldn't determine free space in %s" +msgstr "无法获知您在 %s 上的可用空间" -#: apt-inst/extract.cc:498 +#: cmdline/apt-get.cc:884 #, c-format -msgid "Unable to stat %s" -msgstr "无法读取 %s 的状态" +msgid "You don't have enough free space in %s" +msgstr "您在 %s 上没有足够的可用空间" -#: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54 +#. 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:893 #, c-format -msgid "Failed to write file %s" -msgstr "无法写入文件 %s" +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "需要下载 %sB/%sB 的源代码包。\n" -#: apt-inst/dirstream.cc:105 +#. TRANSLATOR: The required 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:898 #, c-format -msgid "Failed to close file %s" -msgstr "无法关闭文件 %s" +msgid "Need to get %sB of source archives.\n" +msgstr "需要下载 %sB 的源代码包。\n" -#: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:904 #, c-format -msgid "This is not a valid DEB archive, missing '%s' member" -msgstr "这不是一个有效的 DEB 包文件,其包内遗漏了“%s”" +msgid "Fetch source %s\n" +msgstr "下载源代码 %s\n" -#: apt-inst/deb/debfile.cc:132 -#, c-format -msgid "Internal error, could not locate member %s" -msgstr "内部错误,无法定位包内文件 %s" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "有一些包文件无法下载。" -#: apt-inst/deb/debfile.cc:227 -msgid "Unparsable control file" -msgstr "不能解析的主控文件" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "下载完毕,目前是“仅下载”模式" -#: apt-inst/contrib/arfile.cc:76 -msgid "Invalid archive signature" -msgstr "无效的归档签名" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "忽略已经被解包到 %s 目录的源代码包\n" -#: apt-inst/contrib/arfile.cc:84 -msgid "Error reading archive member header" -msgstr "读取归档成员文件头出错" +#: cmdline/apt-get.cc:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "运行解包的命令“%s”出错。\n" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:965 #, c-format -msgid "Invalid archive member header %s" -msgstr "归档文件中成员文件头 %s 无效" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: apt-inst/contrib/arfile.cc:108 -msgid "Invalid archive member header" -msgstr "归档文件中成员文件头无效" +#: cmdline/apt-get.cc:993 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "执行构造软件包命令“%s”失败。\n" -#: apt-inst/contrib/arfile.cc:137 -msgid "Archive is too short" -msgstr "归档文件太短" +#: cmdline/apt-get.cc:1012 +msgid "Child process failed" +msgstr "子进程出错" -#: apt-inst/contrib/arfile.cc:141 -msgid "Failed to read the archive headers" -msgstr "无法读取归档文件的数据头" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" -#: apt-inst/contrib/extracttar.cc:124 -msgid "Failed to create pipes" -msgstr "无法创建管道" +#: cmdline/apt-get.cc:1056 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/contrib/extracttar.cc:151 -msgid "Failed to exec gzip " -msgstr "无法执行 gzip" +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "无法获得 %s 的构建依赖关系信息" -#: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218 -msgid "Corrupted archive" -msgstr "包文件已被损坏" +#: cmdline/apt-get.cc:1126 +#, c-format +msgid "%s has no build depends.\n" +msgstr " %s 没有构建依赖关系信息。\n" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar 的校验和不符,文件已损坏" +#: cmdline/apt-get.cc:1296 +#, 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/extracttar.cc:308 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "Unknown TAR header type %u, member %s" -msgstr "未知的 TAR 数据头类型 %u,成员 %s" +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: apt-pkg/clean.cc:61 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unable to stat %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-pkg/install-progress.cc:57 -#, c-format -msgid "Progress: [%3i%%]" +#: cmdline/apt-get.cc:1376 +#, 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-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174 -msgid "Running dpkg" -msgstr "正在运行 dpkg" +#: cmdline/apt-get.cc:1382 +#, 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/init.cc:146 +#: cmdline/apt-get.cc:1405 #, 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 "Failed to satisfy %s dependency for %s: %s" +msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773 +#: cmdline/apt-get.cc:1420 #, c-format -msgid "Wrote %i records.\n" -msgstr "已写入 %i 条记录。\n" +msgid "Build-dependencies for %s could not be satisfied." +msgstr "不能满足软件包 %s 所要求的构建依赖关系。" -#: 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-get.cc:1425 +msgid "Failed to process build dependencies" +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-get.cc:1518 cmdline/apt-get.cc:1530 +#, fuzzy, c-format +msgid "Changelog for %s (%s)" +msgstr "正在连接 %s (%s)" -#: 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-get.cc:1616 +msgid "Supported modules:" +msgstr "支持的模块:" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -msgstr "无法找到认证记录:%s" +#: cmdline/apt-get.cc:1657 +#, 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/indexcopy.cc:521 -#, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash 校验和不符:%s" +#: cmdline/apt-helper.cc:35 +#, fuzzy +msgid "Must specify at least one pair url/filename" +msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: apt-pkg/acquire-worker.cc:116 -#, c-format -msgid "The method driver %s could not be found." -msgstr "无法找到获取软件包的渠道 %s 所需的驱动程序。" +#: cmdline/apt-helper.cc:53 +msgid "Download Failed" +msgstr "" -#: apt-pkg/acquire-worker.cc:118 +#: 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 "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:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +#: methods/ftp.cc:749 +msgid "Could not bind a socket" +msgstr "无法绑定套接字" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:753 +msgid "Could not listen on the socket" +msgstr "无法在套接字上监听" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:760 +msgid "Could not determine the socket's name" +msgstr "无法确定套接字的名字" -#: apt-pkg/edsp.cc:327 -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:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -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 +#: 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 "" -"校验签名出错。此仓库未被更新,仍然使用以前的索引文件。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 "正在下载第 %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 "无法识别的日期格式" + +#: methods/server.cc:496 +msgid "Bad header data" +msgstr "错误的报头数据" -#: apt-pkg/cdrom.cc:817 +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "连接失败" + +#: methods/server.cc:572 #, c-format msgid "" -"This disc is called: \n" -"'%s'\n" +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"这张盘片现在的名字是:\n" -"“%s”\n" -#: apt-pkg/cdrom.cc:819 -msgid "Copying package lists..." -msgstr "正在复制软件包列表……" - -#: apt-pkg/cdrom.cc:863 -msgid "Writing new source list\n" -msgstr "正在写入新的源列表\n" +#: methods/server.cc:692 +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:123 +msgid "Listing" msgstr "" -"无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" -"系。" -#: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167 -msgid "Building dependency tree" -msgstr "正在分析软件包的依赖关系树" +#: apt-private/private-list.cc:156 +#, 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:233 +#, 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:237 +#, 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:240 +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:242 +#, 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:244 +#, fuzzy +msgid "[installed]" +msgstr " [已安装]" -#: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640 +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" +msgstr "" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +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:612 +msgid "The following held packages will be changed:" +msgstr "下列被要求保持版本不变的软件包将被改变:" -#: apt-pkg/sourcelist.cc:208 +#: apt-private/private-output.cc:667 #, 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 -#, c-format -msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" +#: apt-private/private-output.cc:675 +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:706 #, 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:710 #, 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:712 #, c-format -msgid "Opening %s" -msgstr "正在打开 %s" +msgid "%lu downgraded, " +msgstr "降级了 %lu 个软件包," -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, 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:718 #, c-format -msgid "Type '%s' is not known on line %u in source list %s" -msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$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 "无法识别在源列表 %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:740 +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:746 +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:757 +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:763 +msgid "N" +msgstr "" -#: apt-pkg/deb/dpkgpm.cc:98 -#, 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" -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: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] "" -#: 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:84 +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:93 +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:112 +msgid "Internal error, Ordering didn't finish" +msgstr "内部错误,Ordering 未能完成" -#: apt-pkg/deb/dpkgpm.cc:997 +#: apt-private/private-install.cc:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +msgid "Yes, do as I say!" +msgstr "是,按我说的做!" -#: apt-pkg/deb/dpkgpm.cc:1090 -msgid "Is stdout a terminal?" +#: apt-private/private-install.cc:224 +#, 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" +#: apt-private/private-install.cc:230 apt-private/private-install.cc:248 +msgid "Abort." +msgstr "中止执行。" + +#: apt-private/private-install.cc:245 +msgid "Do you want to continue?" +msgstr "您希望继续执行吗?" + +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "有一些文件无法下载" + +#: apt-private/private-install.cc:322 +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:326 +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:331 +msgid "Unable to correct missing packages." +msgstr "无法更正缺少的软件包。" -#: apt-pkg/deb/dpkgpm.cc:1638 +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "中止安装。" + +#: apt-private/private-install.cc:368 msgid "" -"No apport report written because the error message indicates its a followup " -"error from a previous failure." -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-private/private-install.cc:372 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "注意:这是自动被 dpkg 有意完成的。" + +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "我们不应该进行删除,无法启动自动删除器" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:501 msgid "" -"No apport report written because the error message indicates a disk full " -"error" -msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "似乎自动卸载工具损坏了一些软件,这不应该发生。请向 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "下列信息可能会对解决问题有所帮助:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "内部错误,自动卸载工具坏事了" + +#: apt-private/private-install.cc:515 +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] "下列软件包是自动安装的并且现在不需要了:" -#: 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:519 +#, 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-pkg/deb/dpkgpm.cc:1658 apt-pkg/deb/dpkgpm.cc:1664 +#: apt-private/private-install.cc:521 #, fuzzy -msgid "" -"No apport report written because the error message indicates an issue on the " -"local system" -msgstr "因为错误消息指示这是由于磁盘已满,没有写入 apport 报告。" +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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 msgid "" -"No apport report written because the error message indicates a dpkg I/O error" -msgstr "因为错误消息指示这是一个 dpkg I/O 错误,没有写入 apport 报告。" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" +"以指定一个解决办法)。" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 msgid "" -"Unable to lock the administration directory (%s), is another process using " -"it?" -msgstr "无法锁定管理目录(%s),是否有其他进程正占用它?" +"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)目录移出。" -#: 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:661 +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:738 +msgid "The following extra packages will be installed:" +msgstr "将会安装下列额外的软件包:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "未锁定" +#: apt-private/private-install.cc:828 +msgid "Suggested 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:829 +msgid "Recommended packages:" +msgstr "推荐安装的软件包:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "%li小时 %li分 %li秒" +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:855 #, c-format -msgid "%limin %lis" -msgstr "%li分 %li秒" +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:867 #, c-format -msgid "%lis" -msgstr "%li秒" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "不能重新安装 %s,因为无法下载它。\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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:920 #, c-format -msgid "Not using locking for read only lock file %s" -msgstr "由于文件系统为只读,因而无法使用文件锁 %s" +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "为 %3$s 选定了版本 %1$s (%2$s)\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "无法打开锁文件 %s" +#: apt-private/private-install.cc:925 +#, 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "无法在 nfs 文件系统上使用文件锁 %s" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "无法获得锁 %s" +#: apt-private/private-install.cc:973 +#, fuzzy, c-format +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 "" +"注意:这只是模拟!\n" +"   apt-get 需要 root 特权进行实际的执行。\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-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-pkg/contrib/fileutl.cc:412 +#: 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:88 +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:119 +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:123 +msgid "Err " +msgstr "错误 " -#: apt-pkg/contrib/fileutl.cc:913 +#: apt-private/acqprogress.cc:147 #, c-format -msgid "Problem closing the gzip file %s" -msgstr "关闭 gzip %s 文件出错" +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "下载 %sB,耗时 %s (%sB/s)\n" -#: apt-pkg/contrib/fileutl.cc:1101 +#: apt-private/acqprogress.cc:237 #, 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:298 #, 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 "" +"更换介质:请把标有\n" +"“%s”\n" +"的盘片插入驱动器“%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 "用 unlink 删除文件 %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 "错误的默认设置!" + +#: 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 "在解包时发生了一些错误。已经安装的软件包" -#: apt-pkg/contrib/progress.cc:148 -#, c-format -msgid "%c%s... Error!" -msgstr "%c%s... 有错误!" +#: dselect/install:103 +msgid "will be configured. This may result in duplicate errors" +msgstr "将被配置。这个操作可能会导致出现重复的错误" -#: apt-pkg/contrib/progress.cc:150 -#, c-format -msgid "%c%s... Done" -msgstr "%c%s... 完成" +#: dselect/install:104 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "或一些由于依赖关系不能满足所产生的错误。这个问题不大,只有" -#: 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 "这个提示之前的错误消息才值得您注意。请更正它们,然后再次执行 [I]nstall" -#. Print the spinner -#: apt-pkg/contrib/progress.cc:197 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s... 完成" +#: dselect/update:30 +msgid "Merging available information" +msgstr "正在合并可用信息" -#: apt-pkg/contrib/mmap.cc:79 -msgid "Can't mmap an empty file" -msgstr "无法 mmap 一个空文件" +#: apt-inst/filelist.cc:380 +msgid "DropNode called on still linked node" +msgstr "把 DropNode 用在了仍在链表中的节点上" -#: apt-pkg/contrib/mmap.cc:111 -#, c-format -msgid "Couldn't duplicate file descriptor %i" -msgstr "无法为复制文件描述符 %i" +#: apt-inst/filelist.cc:412 +msgid "Failed to locate the hash element!" +msgstr "无法定位哈希表元素!" -#: apt-pkg/contrib/mmap.cc:119 -#, fuzzy, c-format -msgid "Couldn't make mmap of %llu bytes" -msgstr "无法 mmap %lu 字节的数据" +#: apt-inst/filelist.cc:459 +msgid "Failed to allocate diversion" +msgstr "无法分配转移项" -#: apt-pkg/contrib/mmap.cc:146 -msgid "Unable to close mmap" -msgstr "无法关闭 mmap" +#: apt-inst/filelist.cc:464 +msgid "Internal error in AddDiversion" +msgstr "内部错误,出现在 AddDiversion" -#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 -msgid "Unable to synchronize mmap" -msgstr "无法同步 mmap " +#: apt-inst/filelist.cc:477 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "尝试覆盖一个转移项,%s -> %s 和 %s/%s" -#: apt-pkg/contrib/mmap.cc:290 +#: apt-inst/filelist.cc:506 #, c-format -msgid "Couldn't make mmap of %lu bytes" -msgstr "无法 mmap %lu 字节的数据" +msgid "Double add of diversion %s -> %s" +msgstr "添加了两个转移项 %s-> %s" -#: apt-pkg/contrib/mmap.cc:322 -msgid "Failed to truncate file" -msgstr "无法截断文件" +#: apt-inst/filelist.cc:549 +#, c-format +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 已被转移" -#: apt-pkg/contrib/cdromutl.cc:65 +#: apt-inst/extract.cc:152 #, c-format -msgid "Unable to stat the mount point %s" -msgstr "无法读取文件系统挂载点 %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 "无法读取盘片的状态" +#: 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:184 #, c-format -msgid "Unrecognized type abbreviation: '%c'" -msgstr "无法识别的类型缩写:“%c”" +msgid "Failed to stat %s" +msgstr "无法获得 %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 "无法在其散列桶中分配节点" -#: 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:只能在顶层配置文件中使用指示" +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:Included from here" +msgid "Unable to stat %s" +msgstr "无法读取 %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:不支持的指令“%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:clean 指令需要一个选项树作为参数" +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 =." -msgstr "选项 %s:配置项后必须包含有形如“=<变量>”的具体指定" +#: 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 "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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3154,12 +3167,7 @@ msgstr "" " -c=? 读指定的配置文件\n" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "无法读取 %s 的状态" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "无法获得 debconf 的版本。您安装了 debconf 吗?" @@ -3276,122 +3284,122 @@ msgstr "没有任何选定项是匹配的" msgid "Some files are missing in the package file group `%s'" msgstr "软件包文件组“%s”中缺少一些文件" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "数据库被损坏,该数据库文件的文件名已改成 %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "数据库已过期,现尝试进行升级 %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " "remove and re-create the database." msgstr "" "数据库格式无效。如果您是从一个老版本的 apt 升级而来,请删除数据库并重建它。" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "无法打开数据库文件 %s:%s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "无法读取符号链接 %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "归档文件没有包含控制字段" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "无法获得游标" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "警告:无法读取目录 %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "警告:无法获得 %s 的状态\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "错误:" -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "警告:" -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "错误:处理文件时出错 " -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "无法解析 %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "无法遍历目录树" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "无法打开 %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "无法读取符号链接 %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "无法使用 unlink 删除 %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** 无法将 %s 链接到 %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " 达到了 DeLink 的上限 %sB。\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "归档文件没有包含 package 字段" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s 中没有 override 项\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的维护者 %s 并非 %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s 没有源代码的 override 项\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s 中没有二进制文件的 override 项\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 7878ee37a..d1bdf60f1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2014-06-18 14:12+0200\n" +"POT-Creation-Date: 2014-06-19 12:24+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] %s)." +msgstr "無法重新命名,%s (%s -> %s)。" -#: cmdline/apt-config.cc:48 -msgid "Arguments not in pairs" -msgstr "參數並未成對" +#: apt-pkg/acquire-item.cc:175 +msgid "Hash Sum mismatch" +msgstr "Hash Sum 不符" -#: 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/acquire-item.cc:180 +msgid "Size mismatch" +msgstr "大小不符" -#: cmdline/apt-get.cc:245 -#, fuzzy, c-format -msgid "Can not find a package for architecture '%s'" -msgstr "無法找到套件 %s" +#: apt-pkg/acquire-item.cc:185 +#, fuzzy +msgid "Invalid file format" +msgstr "無效的操作 %s" -#: cmdline/apt-get.cc:327 -#, fuzzy, c-format -msgid "Can not find a package '%s' with version '%s'" -msgstr "無法找到套件 %s" +#: apt-pkg/acquire-item.cc:1679 +#, c-format +msgid "" +"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " +"or malformed file)" +msgstr "" -#: cmdline/apt-get.cc:330 +#: apt-pkg/acquire-item.cc:1697 #, fuzzy, c-format -msgid "Can not find a package '%s' with release '%s'" -msgstr "無法找到套件 %s" +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "無法辨別 Release 檔 %s" -#: cmdline/apt-get.cc:367 -#, fuzzy, c-format -msgid "Picking '%s' as source package instead of '%s'\n" -msgstr "無法取得來源套件列表 %s 的狀態" +#: apt-pkg/acquire-item.cc:1737 +msgid "There is no public key available for the following key IDs:\n" +msgstr "無法取得以下的密鑰 ID 的公鑰:\n" -#: cmdline/apt-get.cc:423 +#: apt-pkg/acquire-item.cc:1775 #, c-format -msgid "Can not find version '%s' of package '%s'" +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." msgstr "" -#: cmdline/apt-get.cc:454 +#: apt-pkg/acquire-item.cc:1797 #, c-format -msgid "Couldn't find package %s" -msgstr "無法找到套件 %s" +msgid "Conflicting distribution: %s (expected %s but got %s)" +msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" -#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 -#: apt-private/private-install.cc:865 +#: apt-pkg/acquire-item.cc:1827 #, c-format -msgid "%s set to manually installed.\n" -msgstr "%s 被設定為手動安裝。\n" - -#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 -#, fuzzy, c-format -msgid "%s set to automatically installed.\n" -msgstr "%s 被設定為手動安裝。\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." +"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: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 +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1837 apt-pkg/acquire-item.cc:1842 #, c-format -msgid "Unable to find a source package for %s" -msgstr "無法找到 %s 的原始碼套件" +msgid "GPG error: %s: %s" +msgstr "" -#: cmdline/apt-get.cc:786 +#: apt-pkg/acquire-item.cc:1972 #, c-format msgid "" -"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" -"%s\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 "" +"找不到 %s 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" +"台)" -#: cmdline/apt-get.cc:791 +#: apt-pkg/acquire-item.cc:2038 #, c-format -msgid "" -"Please use:\n" -"bzr branch %s\n" -"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:843 +#: apt-pkg/acquire-item.cc:2074 #, c-format -msgid "Skipping already downloaded file '%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:869 cmdline/apt-get.cc:872 -#: apt-private/private-install.cc:187 apt-private/private-install.cc:190 +#: apt-pkg/vendorlist.cc:85 #, c-format -msgid "Couldn't determine free space in %s" -msgstr "無法確認 %s 的未使用空間" +msgid "Vendor block %s contains no fingerprint" +msgstr "提供者區塊 %s 沒有包含指紋碼" -#: cmdline/apt-get.cc:882 -#, c-format -msgid "You don't have enough free space in %s" -msgstr "在 %s 裡沒有足夠的的未使用空間" +#: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829 +#, fuzzy, c-format +msgid "List directory %spartial is missing." +msgstr "找不到清單目錄 %spartial。" -#. 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.cc:92 +#, fuzzy, c-format +msgid "Archives directory %spartial is missing." +msgstr "找不到套件檔目錄 %spartial。" -#. TRANSLATOR: The required 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.cc:100 +#, fuzzy, c-format +msgid "Unable to lock directory %s" +msgstr "無法鎖定列表目錄" -#: cmdline/apt-get.cc:902 +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:925 #, c-format -msgid "Fetch source %s\n" -msgstr "取得原始碼 %s\n" - -#: cmdline/apt-get.cc:920 -msgid "Failed to fetch some archives." -msgstr "無法取得某些套件檔。" +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "正在取得檔案 %li/%li(還有 %s)" -#: cmdline/apt-get.cc:925 apt-private/private-install.cc:314 -msgid "Download complete and in download only mode" -msgstr "下載完成,且這是『僅下載』模式" +#: apt-pkg/acquire.cc:927 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "正在取得檔案 %li/%li" -#: cmdline/apt-get.cc:950 +#: apt-pkg/update.cc:77 apt-private/private-download.cc:91 #, c-format -msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "不解開,因原始碼已解開至 %s\n" +msgid "Failed to fetch %s %s\n" +msgstr "無法取得 %s,%s\n" -#: cmdline/apt-get.cc:962 -#, c-format -msgid "Unpack command '%s' failed.\n" -msgstr "解開指令 '%s' 失敗。\n" +#: 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:963 -#, c-format -msgid "Check if the 'dpkg-dev' package is installed.\n" -msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" +#: apt-pkg/srcrecords.cc:52 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "在 sources.list 中必須包含一些 'source' URI" -#: cmdline/apt-get.cc:991 +#: apt-pkg/policy.cc:83 #, c-format -msgid "Build command '%s' failed.\n" -msgstr "編譯指令 '%s' 失敗。\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:1010 -msgid "Child process failed" -msgstr "子程序失敗" +#: apt-pkg/policy.cc:422 +#, fuzzy, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "個人設定檔中有些不正確資料,沒有以 Package 開頭" -#: cmdline/apt-get.cc:1029 -msgid "Must specify at least one package to check builddeps for" -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 "銷定並沒有優先順序之分(或零)" -#: cmdline/apt-get.cc:1054 +#: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911 #, c-format msgid "" -"No architecture information available for %s. See apt.conf(5) APT::" -"Architectures for setup" +"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:1078 cmdline/apt-get.cc:1081 -#, c-format -msgid "Unable to get build-dependency information for %s" -msgstr "無法取得 %s 的編譯相依關係資訊" +#: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534 +#, fuzzy, c-format +msgid "Could not configure '%s'. " +msgstr "無法開啟檔案 %s" -#: cmdline/apt-get.cc:1101 +#: apt-pkg/packagemanager.cc:584 #, c-format -msgid "%s has no build depends.\n" -msgstr "%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 "無法滿足 %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:1289 +#: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347 #, c-format -msgid "" -"%s dependency for %s cannot be satisfied because the package %s cannot be " -"found" -msgstr "無法滿足 %2$s 所要求的 %1$s 相依關係,因為找不到套件 %3$s" +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" -#: cmdline/apt-get.cc:1312 +#: apt-pkg/cdrom.cc:586 #, c-format -msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "無法滿足 %2$s 的相依關係 %1$s:已安裝的套件 %3$s 太新了" +msgid "Using CD-ROM mount point %s\n" +msgstr "使用光碟機掛載點 %s\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 "" -"無法滿足 %2$s 所要求的 %1$s 相依關係,因為套件 %3$s 沒有版本符合其版本需求" +#: apt-pkg/cdrom.cc:599 +msgid "Waiting for disc...\n" +msgstr "正在等待碟片...\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:609 +msgid "Mounting CD-ROM...\n" +msgstr "正在掛載光碟機... \n" -#: cmdline/apt-get.cc:1380 -#, c-format -msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "無法滿足 %2$s 的相依關係 %1$s:%3$s" +#: apt-pkg/cdrom.cc:620 +msgid "Identifying... " +msgstr "正在識別..." -#: cmdline/apt-get.cc:1395 +#: apt-pkg/cdrom.cc:662 #, c-format -msgid "Build-dependencies for %s could not be satisfied." -msgstr "無法滿足套件 %s 的編譯相依關係。" - -#: cmdline/apt-get.cc:1400 -msgid "Failed to process build dependencies" -msgstr "無法處理編譯相依關係" +msgid "Stored label: %s\n" +msgstr "保存標籤:%s\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:680 +msgid "Scanning disc for index files...\n" +msgstr "正在掃描碟片中的索引檔...\n" -#: cmdline/apt-get.cc:1591 -msgid "Supported modules:" -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" -#: cmdline/apt-get.cc:1632 -#, fuzzy +#: apt-pkg/cdrom.cc:744 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 locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" 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 "在取得原始碼時必須至少指定一個套件" +#: apt-pkg/cdrom.cc:771 +#, c-format +msgid "Found label '%s'\n" +msgstr "找到標籤 '%s'\n" -#: cmdline/apt-helper.cc:53 -msgid "Download Failed" -msgstr "" +#: apt-pkg/cdrom.cc:800 +msgid "That is not a valid name, try again.\n" +msgstr "這並不是正確的名稱,請重試。\n" -#: cmdline/apt-helper.cc:66 +#: 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 "" +"這個碟片名為:\n" +"'%s'\n" -#: 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:819 +msgid "Copying package lists..." +msgstr "正在複製套件清單..." -#: cmdline/apt-mark.cc:74 -#, fuzzy, c-format -msgid "%s was already set to manually installed.\n" -msgstr "%s 被設定為手動安裝。\n" +#: apt-pkg/cdrom.cc:863 +msgid "Writing new source list\n" +msgstr "正在寫入新的來源列表\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" - -#: 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 但是它並不存在" +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "套件 %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/algorithms.cc:1086 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" +"件。" -#: 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 "無法修正問題,您保留 (hold) 了損毀的套件。" -#: cmdline/apt-mark.cc:345 -msgid "Executing dpkg failed. Are you root?" -msgstr "" +#: 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." -msgstr "" +#: 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" -msgstr "" +#: 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 +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 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "無法開啟 StateFile %s" -#: methods/cdrom.cc:222 -msgid "Wrong CD-ROM" -msgstr "不正確的光碟" +#: apt-pkg/depcache.cc:256 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "無法寫入暫存的 StateFile %s" -#: methods/cdrom.cc:249 +#: apt-pkg/tagfile.cc:169 #, c-format -msgid "Unable to unmount the CD-ROM in %s, it may still be in use." -msgstr "無法卸載 %s 裡的光碟片,或許它仍在使用中。" +msgid "Unable to parse package file %s (1)" +msgstr "無法辨識套件檔 %s (1)" -#: methods/cdrom.cc:254 -msgid "Disk not found." -msgstr "找不到磁碟。" +#: apt-pkg/tagfile.cc:269 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "無法辨識套件檔 %s (2)" -#: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278 -msgid "File not found" -msgstr "找不到檔案" +#: apt-pkg/cacheset.cc:490 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "找不到 '%2$s' 的 '%1$s' 發行版" -#: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598 -#: methods/rred.cc:608 -msgid "Failed to stat" -msgstr "無法取得狀態" +#: apt-pkg/cacheset.cc:493 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "找不到 '%s' 版的 '%s'" -#: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605 -msgid "Failed to set modification time" -msgstr "無法設定修改時間" +#: apt-pkg/cacheset.cc:597 cmdline/apt-cache.cc:1567 +#, c-format +msgid "Unable to locate package %s" +msgstr "找不到套件 %s" -#: methods/file.cc:48 -msgid "Invalid URI, local URIS must not start with //" -msgstr "不正確的 URI,本機 URI 不應以 // 開頭" +#: apt-pkg/cacheset.cc:604 +#, fuzzy, c-format +msgid "Couldn't find task '%s'" +msgstr "無法找到主題 %s" -#. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:177 -msgid "Logging in" -msgstr "登入中" +#: apt-pkg/cacheset.cc:610 +#, fuzzy, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "無法找到套件 %s" -#: methods/ftp.cc:183 -msgid "Unable to determine the peer name" -msgstr "無法解析對方主機名稱" +#: apt-pkg/cacheset.cc:616 +#, fuzzy, c-format +msgid "Couldn't find any package by glob '%s'" +msgstr "無法找到套件 %s" -#: methods/ftp.cc:188 -msgid "Unable to determine the local name" -msgstr "無法解析本機名稱" +#: apt-pkg/cacheset.cc:627 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:219 methods/ftp.cc:247 +#: apt-pkg/cacheset.cc:634 apt-pkg/cacheset.cc:641 #, c-format -msgid "The server refused the connection and said: %s" -msgstr "伺服器不接受連線,並回應:%s" +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" -#: methods/ftp.cc:225 +#: apt-pkg/cacheset.cc:648 #, c-format -msgid "USER failed, server said: %s" -msgstr "USER 指令失敗,伺服器回應:%s" +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "" -#: methods/ftp.cc:232 +#: apt-pkg/cacheset.cc:656 #, c-format -msgid "PASS failed, server said: %s" -msgstr "PASS 指令失敗,伺服器回應:%s" +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "" -#: methods/ftp.cc:252 -msgid "" -"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " -"is empty." +#: apt-pkg/cacheset.cc:664 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" msgstr "" -"指定了代理伺服器,但沒有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" -#: methods/ftp.cc:280 +#: apt-pkg/indexrecords.cc:83 #, c-format -msgid "Login script command '%s' failed, server said: %s" -msgstr "登入 script 指令 '%s' 失敗,伺服器回應:%s" +msgid "Unable to parse Release file %s" +msgstr "無法辨別 Release 檔 %s" -#: methods/ftp.cc:306 +#: apt-pkg/indexrecords.cc:91 #, c-format -msgid "TYPE failed, server said: %s" -msgstr "TYPE 指令失敗,伺服器回應:%s" +msgid "No sections in Release file %s" +msgstr "在 Release 檔 %s 裡沒有區段" -#: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240 -msgid "Connection timeout" -msgstr "連線逾時" +#: apt-pkg/indexrecords.cc:136 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: methods/ftp.cc:350 -msgid "Server closed the connection" -msgstr "伺服器已關閉連線" +#: apt-pkg/indexrecords.cc:149 +#, fuzzy, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: 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:168 +#, fuzzy, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "在 Release 檔 %s 裡沒有 Hash 項目" -#: methods/ftp.cc:360 methods/rsh.cc:209 -msgid "A response overflowed the buffer." -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:377 methods/ftp.cc:389 -msgid "Protocol corruption" -msgstr "協定失敗" +#: 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: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:173 +#, fuzzy, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版)" -#: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742 -msgid "Could not create a socket" -msgstr "無法建立 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:712 -msgid "Could not connect data socket, connection timed out" -msgstr "無法和 data socket 連線,連線逾時" - -#: methods/ftp.cc:716 methods/connect.cc:116 -msgid "Failed" -msgstr "失敗" - -#: methods/ftp.cc:718 -msgid "Could not connect passive socket." -msgstr "無法和 passive 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:735 -msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo 無法取得監聽 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:749 -msgid "Could not bind a socket" -msgstr "無法 bind 至 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:753 -msgid "Could not listen on the socket" -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:760 -msgid "Could not determine the socket's name" -msgstr "無法解析 socket 名稱" +#: 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:792 -msgid "Unable to send PORT command" -msgstr "無法送出 PORT 指令" +#: 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:1064 +msgid "ioctl(TIOCGWINSZ) failed" +msgstr "" -#: methods/connect.cc:258 +#: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088 #, 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:1067 +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:1088 +msgid "Is stdout a terminal?" +msgstr "" -#. TRANSLATORS: %s is a single techy word like 'NODATA' -#: methods/gpgv.cc:180 +#: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829 +#: 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:1563 +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:1625 +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:1630 +msgid "dependency problems - leaving unconfigured" +msgstr "" -#: methods/gpgv.cc:231 +#: apt-pkg/deb/dpkgpm.cc:1632 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 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:1638 +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:1645 +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 "在讀取伺服器時發生錯誤,遠端主機已關閉連線" - -#: methods/http.cc:525 -msgid "Error reading from server" -msgstr "在讀取伺服器時發生錯誤" +#: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658 +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 "在寫入檔案時發生錯誤" +#: apt-pkg/deb/dpkgpm.cc:1679 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" -#: methods/http.cc:621 -msgid "Select failed" -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:626 -msgid "Connection timed out" -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:649 -msgid "Error writing to output 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 "" -#: methods/server.cc:51 -msgid "Waiting for headers" -msgstr "等待標頭" +#: apt-pkg/deb/debsystem.cc:128 +msgid "Not locked" +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 "" -#: 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 "" -#: 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 "" -#: 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 "" -#: 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:191 +#, 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:196 +#, 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:219 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "不在以 nfs 掛載的檔案 %s 上使用檔案鎖定" -#: methods/server.cc:654 -msgid "Internal error" -msgstr "內部錯誤" +#: apt-pkg/contrib/fileutl.cc:224 +#, 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:361 apt-pkg/contrib/fileutl.cc:475 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "" -#: apt-private/private-upgrade.cc:28 -msgid "Done" -msgstr "完成" +#: apt-pkg/contrib/fileutl.cc:395 +#, 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:413 +#, 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:422 +#, 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:841 #, 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:843 +#, 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:847 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:849 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:910 apt-pkg/contrib/fileutl.cc:1636 +#: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650 +#: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677 +#: 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:951 +#, 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:1139 +#, 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:1198 apt-pkg/contrib/fileutl.cc:1245 +#, 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:1353 apt-pkg/contrib/fileutl.cc:2125 +msgid "Failed to create subprocess IPC" +msgstr "無法建立子程序 IPC" -#: apt-private/private-output.cc:233 +#: apt-pkg/contrib/fileutl.cc:1411 +msgid "Failed to exec compressor " +msgstr "無法執行壓縮程式" + +#: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523 +#: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530 +#: methods/ftp.cc:353 methods/rsh.cc:202 +msgid "Read error" +msgstr "讀取錯誤" + +#: apt-pkg/contrib/fileutl.cc:1552 #, fuzzy, c-format -msgid "[installed,upgradable to: %s]" -msgstr "【已安裝】" +msgid "read, still have %llu to read but none left" +msgstr "讀取,仍有 %lu 未讀但已無空間" -#: apt-private/private-output.cc:237 -#, fuzzy -msgid "[installed,local]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687 +#, fuzzy, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "寫入,仍有 %lu 待寫入但已沒辨法" -#: apt-private/private-output.cc:240 -msgid "[installed,auto-removable]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1953 +#, fuzzy, c-format +msgid "Problem closing the file %s" +msgstr "在關閉檔案時發生問題" -#: apt-private/private-output.cc:242 -#, fuzzy -msgid "[installed,automatic]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1964 +#, fuzzy, c-format +msgid "Problem renaming the file %s to %s" +msgstr "在同步檔案時發生問題" -#: apt-private/private-output.cc:244 -#, fuzzy -msgid "[installed]" -msgstr "【已安裝】" +#: apt-pkg/contrib/fileutl.cc:1975 +#, fuzzy, c-format +msgid "Problem unlinking the file %s" +msgstr "在刪除檔案時發生問題" -#: apt-private/private-output.cc:248 -#, c-format -msgid "[upgradable from: %s]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:1988 +msgid "Problem syncing the file" +msgstr "在同步檔案時發生問題" -#: apt-private/private-output.cc:252 -msgid "[residual-config]" -msgstr "" +#: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257 +#, fuzzy, c-format +msgid "Unable to mkstemp %s" +msgstr "無法取得 %s 的狀態" -#: apt-private/private-output.cc:434 +#: 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:436 +#: apt-pkg/contrib/progress.cc:150 #, c-format -msgid "but %s is to be installed" -msgstr "但 %s 卻將被安裝" - -#: apt-private/private-output.cc:443 -msgid "but it is not installable" -msgstr "但它卻無法安裝" +msgid "%c%s... Done" +msgstr "%c%s... 完成" -#: apt-private/private-output.cc:445 -msgid "but it is a virtual package" -msgstr "但它是虛擬套件" +#: apt-pkg/contrib/progress.cc:181 +msgid "..." +msgstr "" -#: apt-private/private-output.cc:448 -msgid "but it is not installed" -msgstr "但它卻尚未安裝" - -#: apt-private/private-output.cc:448 -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:453 -msgid " or" -msgstr "或" +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "不能 mmap 空白檔案" -#: apt-private/private-output.cc:467 apt-private/private-output.cc:479 -msgid "The following packages have unmet dependencies:" -msgstr "下列的套件有未滿足的相依關係:" +#: apt-pkg/contrib/mmap.cc:111 +#, fuzzy, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "無法開啟管線給 %s 使用" -#: apt-private/private-output.cc:502 -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:528 -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:550 -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:571 -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:592 -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:612 -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:667 +#: 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:675 +#: 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:706 +#: 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:710 +#: apt-pkg/contrib/cdromutl.cc:246 +msgid "Failed to stat the cdrom" +msgstr "無法取得 CD-ROM 的狀態" + +#: apt-pkg/contrib/configuration.cc:521 #, c-format -msgid "%lu reinstalled, " -msgstr "重新安裝 %lu 個," +msgid "Unrecognized type abbreviation: '%c'" +msgstr "無法辨識的縮寫類型:'%c'" -#: apt-private/private-output.cc:712 +#: apt-pkg/contrib/configuration.cc:635 #, c-format -msgid "%lu downgraded, " -msgstr "降級 %lu 個," +msgid "Opening configuration file %s" +msgstr "開啟設定檔 %s" -#: apt-private/private-output.cc:714 +#: apt-pkg/contrib/configuration.cc:803 #, 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:718 +#: apt-pkg/contrib/configuration.cc:822 #, 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:740 -msgid "[Y/n]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:839 +#, 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:746 -msgid "[y/N]" -msgstr "" +#: apt-pkg/contrib/configuration.cc:879 +#, 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:757 -msgid "Y" -msgstr "" +#: apt-pkg/contrib/configuration.cc:886 +#, 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:763 -msgid "N" -msgstr "" +#: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "語法錯誤 %s:%u:從此引入" -#: apt-private/private-output.cc:785 apt-pkg/cachefilter.cc:35 +#: apt-pkg/contrib/configuration.cc:899 #, 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:902 +#, 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:952 #, 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-update.cc:94 -msgid "All packages are up to date." -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-show.cc:156 +#: apt-pkg/contrib/cmndline.cc:121 #, 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)" -msgstr "" +msgid "Command line option '%c' [from %s] is not known." +msgstr "未知的命令列選項 '%c' [來自 %s]。" -#: apt-private/private-install.cc:82 -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:91 -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:110 -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:148 -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 =." +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:155 +#: 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:160 +#: 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:167 +#: 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:172 +#: 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:200 +#: 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:210 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:317 +msgid "Total package names: " +msgstr "套件名稱合計:" -#: 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 操作。" +#: cmdline/apt-cache.cc:319 +#, 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:220 -msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +#: cmdline/apt-cache.cc:359 +msgid " Normal packages: " +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" -" ?] " +#: cmdline/apt-cache.cc:360 +msgid " Pure virtual packages: " +msgstr " 完全虛擬套件:" -#: apt-private/private-install.cc:228 apt-private/private-install.cc:246 -msgid "Abort." -msgstr "放棄執行。" +#: cmdline/apt-cache.cc:361 +msgid " Single virtual packages: " +msgstr " 單一虛擬套件:" -#: apt-private/private-install.cc:243 -#, fuzzy -msgid "Do you want to continue?" -msgstr "是否繼續進行 [Y/n]?" +#: cmdline/apt-cache.cc:362 +msgid " Mixed virtual packages: " +msgstr " 混合虛擬套件:" -#: apt-private/private-install.cc:313 -msgid "Some files failed to download" -msgstr "有部份檔案無法下載" +#: cmdline/apt-cache.cc:363 +msgid " Missing: " +msgstr " 找不到:" -#: 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 選" -"項?" +#: cmdline/apt-cache.cc:365 +msgid "Total distinct versions: " +msgstr "個別版本合計:" -#: apt-private/private-install.cc:324 -msgid "--fix-missing and media swapping is not currently supported" -msgstr "目前尚未支援 --fix-missing 和媒體抽換" +#: cmdline/apt-cache.cc:367 +msgid "Total distinct descriptions: " +msgstr "個別版本類別合計:" -#: apt-private/private-install.cc:329 -msgid "Unable to correct missing packages." -msgstr "無法修正欠缺的套件。" +#: cmdline/apt-cache.cc:369 +msgid "Total dependencies: " +msgstr "相依關係合計:" -#: apt-private/private-install.cc:330 -msgid "Aborting install." -msgstr "放棄安裝。" +#: cmdline/apt-cache.cc:372 +msgid "Total ver/file relations: " +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] "" +#: cmdline/apt-cache.cc:374 +msgid "Total Desc/File relations: " +msgstr "類別/檔案關聯合計:" -#: apt-private/private-install.cc:370 -msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "" +#: cmdline/apt-cache.cc:376 +msgid "Total Provides mappings: " +msgstr "提供者對應合計:" -#: apt-private/private-install.cc:391 -msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" +#: cmdline/apt-cache.cc:388 +msgid "Total globbed strings: " +msgstr "所有字串合計:" -#: 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 "" -"嗯,看起來 AutoRemover 弄壞了什麼東西,而這是不該發生的。\n" -"請針對 apt 發佈錯誤回報。" +#: cmdline/apt-cache.cc:402 +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:502 apt-private/private-install.cc:653 -msgid "The following information may help to resolve the situation:" -msgstr "以下的資訊或許有助於解決當前的情況:" +#: cmdline/apt-cache.cc:407 +msgid "Total slack space: " +msgstr "間暇空間合計:" -#: apt-private/private-install.cc:506 -msgid "Internal Error, AutoRemover broke stuff" -msgstr "內部錯誤,AutoRemover 處理失敗" +#: cmdline/apt-cache.cc:422 +msgid "Total space accounted for: " +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] "以下套件是被自動安裝進來的,且已不再會被用到了:" -msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:" +#: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207 +#: apt-private/private-show.cc:58 +#, c-format +msgid "Package file %s is out of sync." +msgstr "套件檔 %s 未同步。" -#: 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] "以下套件是被自動安裝進來的,且已不再會被用到了:" +#: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493 +#: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 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:519 +#: cmdline/apt-cache.cc:1306 #, 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-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'(或採取其它的解" -"決方案)。" +msgid "You must give at least one search pattern" +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." +#: cmdline/apt-cache.cc:1472 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "" -"有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" -"unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" - -#: 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 "建議套件:" +#: cmdline/apt-cache.cc:1597 +msgid "Package files:" +msgstr "套件檔:" -#: apt-private/private-install.cc:803 -msgid "Recommended packages:" -msgstr "推薦套件:" +#: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "快取資料未同步,無法 x-ref 套件檔" -#: apt-private/private-install.cc:825 -#, 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:1618 +msgid "Pinned packages:" +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" +#: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675 +msgid "(not found)" +msgstr "(未找到)" -#: apt-private/private-install.cc:841 -#, c-format -msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" -msgstr "無法重新安裝 %s,因為它無法下載。\n" +#: cmdline/apt-cache.cc:1638 +msgid " Installed: " +msgstr " 已安裝:" -#: apt-private/private-install.cc:846 -#, c-format -msgid "%s is already the newest version.\n" -msgstr "%s 已經是最新版本了。\n" +#: cmdline/apt-cache.cc:1639 +msgid " Candidate: " +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" +#: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665 +msgid "(none)" +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" +#: cmdline/apt-cache.cc:1672 +msgid " Package pin: " +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" +#. Show the priority tables +#: cmdline/apt-cache.cc:1681 +msgid " Version table:" +msgstr " 版本列表:" -#: apt-private/private-install.cc:947 -#, fuzzy, c-format -msgid "Package '%s' is not installed, so not removed\n" -msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" +#: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83 +#: cmdline/apt-get.cc:1611 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388 +#: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220 +#: 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:1801 +#, 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 "是否不經驗證就安裝這些套件?" - -#: 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 +#, 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-sources.cc:58 +#: cmdline/apt-cdrom.cc:91 +msgid "Please insert a Disc in the drive and press enter" +msgstr "請把光碟放入光碟機,然後按下 [Enter] 鍵" + +#: 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'." +#: 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 "請對您的光碟組中的其它光碟重複相同的操作。" + +#: 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" +" -c=? 讀取指定的設定檔\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 +#, fuzzy, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "無法取得來源套件列表 %s 的狀態" -#: apt-private/acqprogress.cc:146 +#: cmdline/apt-get.cc:423 #, c-format -msgid "Fetched %sB in %s (%sB/s)\n" -msgstr "取得 %sB 用了 %s (%sB/s)\n" +msgid "Can not find version '%s' of package '%s'" +msgstr "" -#: apt-private/acqprogress.cc:236 +#: cmdline/apt-get.cc:454 #, c-format -msgid " [Working]" -msgstr " [工作中]" +msgid "Couldn't find package %s" +msgstr "無法找到套件 %s" -#: apt-private/acqprogress.cc:297 +#: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81 +#: apt-private/private-install.cc:891 #, c-format +msgid "%s set to manually installed.\n" +msgstr "%s 被設定為手動安裝。\n" + +#: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83 +#, fuzzy, 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' 裝置,然後按 [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" +#: 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:1091 #, 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 " +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" 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-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 "" -#: methods/mirror.cc:315 -#, fuzzy, c-format -msgid "No entry found in mirror file '%s'" -msgstr "無法開啟檔案 %s" +#: cmdline/apt-get.cc:839 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "略過已下載的檔案 '%s'\n" -#: methods/mirror.cc:445 +#: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874 +#: apt-private/private-install.cc:189 apt-private/private-install.cc:192 #, c-format -msgid "[Mirror: %s]" -msgstr "" +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 管線" +#: cmdline/apt-get.cc:884 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "在 %s 裡沒有足夠的的未使用空間" -#: methods/rsh.cc:343 -msgid "Connection closed prematurely" -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:893 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "需要下載 %sB/%sB 的原始套件檔。\n" -#: dselect/install:33 -msgid "Bad default setting!" -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:898 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "需要下載 %sB 的原始套件檔。\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 "請按 [Enter] 鍵以繼續進行。" +#: cmdline/apt-get.cc:904 +#, c-format +msgid "Fetch source %s\n" +msgstr "取得原始碼 %s\n" -#: dselect/install:92 -msgid "Do you want to erase any previously downloaded .deb files?" -msgstr "您想移除所有先前下載的 .deb 檔嗎?" +#: cmdline/apt-get.cc:922 +msgid "Failed to fetch some archives." +msgstr "無法取得某些套件檔。" -#: dselect/install:102 -#, fuzzy -msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "在解開套件時發生錯誤。我要準備設定" +#: cmdline/apt-get.cc:927 apt-private/private-install.cc:316 +msgid "Download complete and in download only mode" +msgstr "下載完成,且這是『僅下載』模式" -#: dselect/install:103 -#, fuzzy -msgid "will be configured. This may result in duplicate errors" -msgstr "套件已安裝過。這會造成重複錯誤" +#: cmdline/apt-get.cc:952 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\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:964 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "解開指令 '%s' 失敗。\n" -#: dselect/install:105 -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 "找不到雜湊元件!" - -#: 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:965 #, 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 超過一次" +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" -#: apt-inst/extract.cc:142 +#: cmdline/apt-get.cc:993 #, c-format -msgid "The directory %s is diverted" -msgstr "路徑 %s 已被抽換" +msgid "Build command '%s' failed.\n" +msgstr "編譯指令 '%s' 失敗。\n" -#: 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:1012 +msgid "Child process failed" +msgstr "子程序失敗" -#: apt-inst/extract.cc:162 apt-inst/extract.cc:306 -msgid "The diversion path is too long" -msgstr "要進行抽換的路徑過長" +#: cmdline/apt-get.cc:1031 +msgid "Must specify at least one package to check builddeps for" +msgstr "在檢查編譯相依關係時必須至少指定一個套件" -#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 -#: ftparchive/cachedb.cc:182 +#: cmdline/apt-get.cc:1056 #, c-format -msgid "Failed to stat %s" -msgstr "無法取得 %s 的狀態" +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" -#: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374 +#: cmdline/apt-get.cc:1103 cmdline/apt-get.cc:1106 #, c-format -msgid "Failed to rename %s to %s" -msgstr "無法將 %s 更名為 %s" +msgid "Unable to get build-dependency information for %s" +msgstr "無法取得 %s 的編譯相依關係資訊" -#: apt-inst/extract.cc:249 +#: cmdline/apt-get.cc:1126 #, 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 "路徑過長" +msgid "%s has no build depends.\n" +msgstr "%s 沒有編譯相依關係。\n" -#: apt-inst/extract.cc:421 -#, c-format -msgid "Overwrite package match with no version for %s" -msgstr "以無版本的 %s 覆寫原始套件" +#: cmdline/apt-get.cc:1296 +#, 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/extract.cc:438 +#: cmdline/apt-get.cc:1314 #, c-format -msgid "File %s/%s overwrites the one in the package %s" -msgstr "檔案 %s/%s 覆寫了套件 %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/extract.cc:498 +#: cmdline/apt-get.cc:1337 #, c-format -msgid "Unable to stat %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/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:1376 +#, 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/dirstream.cc:105 -#, c-format -msgid "Failed to close file %s" -msgstr "關閉檔案 %s 失敗" +#: cmdline/apt-get.cc:1382 +#, 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/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54 -#: apt-inst/deb/debfile.cc:63 +#: cmdline/apt-get.cc:1405 #, 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:1420 #, 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 "無效的套件庫簽章" +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:1425 +msgid "Failed to process build dependencies" +msgstr "無法處理編譯相依關係" -#: apt-inst/contrib/arfile.cc:96 +#: cmdline/apt-get.cc:1518 cmdline/apt-get.cc:1530 #, 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 "損毀的套件檔" +msgid "Changelog for %s (%s)" +msgstr "正和 %s (%s) 連線" -#: apt-inst/contrib/extracttar.cc:203 -msgid "Tar checksum failed, archive corrupted" -msgstr "Tar checksum 失敗,套件檔已損毀" +#: cmdline/apt-get.cc:1616 +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:1657 +#, 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-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 "無法確認合適的套件包裝系統類型" +#: 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:236 apt-pkg/indexcopy.cc:773 -#, c-format -msgid "Wrote %i records.\n" -msgstr "寫入 %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:238 apt-pkg/indexcopy.cc:775 -#, c-format -msgid "Wrote %i records with %i missing files.\n" -msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" +#: cmdline/apt-mark.cc:76 +#, fuzzy, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s 被設定為手動安裝。\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:241 +#, fuzzy, c-format +msgid "%s was already set on hold.\n" +msgstr "%s 已經是最新版本了。\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" +#: cmdline/apt-mark.cc:243 +#, fuzzy, c-format +msgid "%s was already not hold.\n" +msgstr "%s 已經是最新版本了。\n" -#: apt-pkg/indexcopy.cc:515 -#, c-format -msgid "Can't find authentication record for: %s" -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/indexcopy.cc:521 +#: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327 #, fuzzy, c-format -msgid "Hash mismatch for: %s" -msgstr "Hash Sum 不符" +msgid "Canceled hold on %s.\n" +msgstr "無法開啟 %s" -#: 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 "" -#: apt-pkg/acquire-worker.cc:118 -#, fuzzy, c-format -msgid "Is the package %s installed?" -msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\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/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' 裝置中,然後按下 [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 "無法讀取來源列表。" +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-cdrom 來讓 APT 能辨識這張光碟。apt-get update 是不能用來新增光碟的" -#: 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 "本 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" - -#: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515 -msgid "IO Error saving source cache" -msgstr "在儲存來源快取時 IO 錯誤" - -#: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78 -msgid "Send scenario to solver" -msgstr "" +msgid "Unknown address family %u (AF_*)" +msgstr "未知的地址家族 %u (AF_*)" -#: apt-pkg/edsp.cc:241 -msgid "Send request to solver" -msgstr "" +#: methods/ftp.cc:811 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT 指令失敗,伺服器回應:%s" -#: apt-pkg/edsp.cc:320 -msgid "Prepare for receiving solution" -msgstr "" +#: methods/ftp.cc:831 +msgid "Data socket connect timed out" +msgstr "Data socket 連線逾時" -#: apt-pkg/edsp.cc:327 -msgid "External solver failed without a proper error message" -msgstr "" +#: methods/ftp.cc:838 +msgid "Unable to accept connection" +msgstr "無法接受連線" -#: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627 -msgid "Execute external solver" -msgstr "" +#: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316 +msgid "Problem hashing file" +msgstr "有問題的雜湊檔" -#: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047 +#: methods/ftp.cc:890 #, 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 不符" - -#: apt-pkg/acquire-item.cc:168 -msgid "Size mismatch" -msgstr "大小不符" +msgid "Unable to fetch file, server said '%s'" +msgstr "無法取得檔案,伺服器回應 '%s'" -#: apt-pkg/acquire-item.cc:173 -#, fuzzy -msgid "Invalid file format" -msgstr "無效的操作 %s" +#: methods/ftp.cc:905 methods/rsh.cc:335 +msgid "Data socket timed out" +msgstr "Data socket 連線逾時" -#: 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 "資料傳輸失敗,伺服器回應 '%s'" -#: apt-pkg/acquire-item.cc:1597 -#, fuzzy, c-format -msgid "Unable to find hash sum for '%s' in Release file" -msgstr "無法辨別 Release 檔 %s" +#. Get the files information +#: methods/ftp.cc:1014 +msgid "Query" +msgstr "查詢" -#: 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:1128 +msgid "Unable to invoke " +msgstr "無法 invoke " -#: 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 "發行版本衝突:%s(應當是 %s 但卻得到 %s)" +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 "無法建立 socket 指向 %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 的 Filename: 欄位。" +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'" + +#: methods/connect.cc:205 +#, c-format +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" +#: 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 "使用光碟機掛載點 %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 "正在掛載光碟機... \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 "" +#: 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 伺服器傳送了一個無效的回覆標頭" -#: 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 伺服器的範圍支援有問題" -#: 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:496 +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." -msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" +#: methods/server.cc:513 methods/server.cc:600 +msgid "Connection failed" +msgstr "連線失敗" -#: apt-pkg/algorithms.cc:1086 +#: methods/server.cc:572 +#, c-format msgid "" -"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " -"held packages." +"Automatically disabled %s due to incorrect response from server/proxy. (man " +"5 apt.conf)" msgstr "" -"錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" -"件。" -#: apt-pkg/algorithms.cc:1088 -msgid "Unable to correct problems, you have held broken packages." -msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" +#: methods/server.cc:692 +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:123 +msgid "Listing" +msgstr "" -#: apt-pkg/depcache.cc:250 +#: apt-private/private-list.cc:156 #, 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-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:233 #, 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:237 +#, 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:240 +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:242 +#, fuzzy +msgid "[installed,automatic]" +msgstr "【已安裝】" + +#: apt-private/private-output.cc:244 +#, fuzzy +msgid "[installed]" +msgstr "【已安裝】" -#: apt-pkg/cacheset.cc:655 +#: apt-private/private-output.cc:248 #, 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:252 +msgid "[residual-config]" msgstr "" -#: apt-pkg/indexrecords.cc:78 +#: apt-private/private-output.cc:434 #, 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:436 #, 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:443 +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:445 +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:448 +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:448 +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:453 +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:467 apt-private/private-output.cc:479 +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:502 +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:528 +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:550 +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:571 +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:592 +msgid "The following packages will be DOWNGRADED:" +msgstr "下列套件將會被【降級】:" -#: apt-pkg/sourcelist.cc:211 +#: apt-private/private-output.cc:612 +msgid "The following held packages will be changed:" +msgstr "下列被保留 (hold) 的套件將會被更改:" + +#: apt-private/private-output.cc:667 #, 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:675 +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:706 #, 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:710 #, 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:712 #, c-format -msgid "Opening %s" -msgstr "正在開啟 %s" +msgid "%lu downgraded, " +msgstr "降級 %lu 個," -#: apt-pkg/sourcelist.cc:371 +#: apt-private/private-output.cc:714 #, 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:718 #, 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:740 +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:746 +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:757 +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:763 +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:84 +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:93 +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:112 +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:150 +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:157 #, 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:162 #, 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:169 #, 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:174 #, 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:202 #, 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:212 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:218 apt-private/private-install.cc:240 +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:222 +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:224 +#, 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:230 apt-private/private-install.cc:248 +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:245 +#, 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" +#: apt-private/private-install.cc:315 +msgid "Some files failed to download" +msgstr "有部份檔案無法下載" + +#: apt-private/private-install.cc:322 +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:1638 +#: apt-private/private-install.cc:326 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "目前尚未支援 --fix-missing 和媒體抽換" + +#: apt-private/private-install.cc:331 +msgid "Unable to correct missing packages." +msgstr "無法修正欠缺的套件。" + +#: apt-private/private-install.cc:332 +msgid "Aborting install." +msgstr "放棄安裝。" + +#: apt-private/private-install.cc:368 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:372 +msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: apt-pkg/deb/dpkgpm.cc:1644 +#: apt-private/private-install.cc:393 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" + +#: apt-private/private-install.cc:501 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 "" +"嗯,看起來 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:504 apt-private/private-install.cc:655 +msgid "The following information may help to resolve the situation:" +msgstr "以下的資訊或許有助於解決當前的情況:" + +#: apt-private/private-install.cc:508 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "內部錯誤,AutoRemover 處理失敗" + +#: apt-private/private-install.cc:515 +#, 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] "以下套件是被自動安裝進來的,且已不再會被用到了:" + +#: apt-private/private-install.cc:519 +#, 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/dpkgpm.cc:1651 -msgid "" -"No apport report written because the error message indicates a out of memory " -"error" -msgstr "" +#: apt-private/private-install.cc:521 +#, 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/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:614 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "您也許得執行 'apt-get -f install' 以修正這些問題:" -#: apt-pkg/deb/dpkgpm.cc:1685 +#: apt-private/private-install.cc:616 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 "" +"未能滿足相依關係。請試著不指定套件來執行 'apt-get -f install'(或採取其它的解" +"決方案)。" -#: apt-pkg/deb/debsystem.cc:91 -#, c-format +#: apt-private/private-install.cc:640 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 "" +"有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" +"unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" -#: 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:661 +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 "" +#: apt-private/private-install.cc:738 +msgid "The following extra packages will be installed:" +msgstr "下列的額外套件將被安裝:" -#: apt-pkg/deb/debsystem.cc:128 -msgid "Not locked" -msgstr "" +#: apt-private/private-install.cc:828 +msgid "Suggested 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 "" +#: apt-private/private-install.cc:829 +msgid "Recommended packages:" +msgstr "推薦套件:" -#. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:413 +#: apt-private/private-install.cc:851 #, c-format -msgid "%lih %limin %lis" -msgstr "" +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 -#, c-format -msgid "%limin %lis" -msgstr "" +#: apt-private/private-install.cc:855 +#, fuzzy, c-format +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:867 #, c-format -msgid "%lis" -msgstr "" +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "無法重新安裝 %s,因為它無法下載。\n" -#: apt-pkg/contrib/strutl.cc:1243 +#: apt-private/private-install.cc:872 #, 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 -#, c-format -msgid "Not using locking for read only lock file %s" -msgstr "不在唯讀檔案 %s 上使用檔案鎖定" +#: apt-private/private-install.cc:920 +#, fuzzy, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" -#: apt-pkg/contrib/fileutl.cc:195 -#, c-format -msgid "Could not open lock file %s" -msgstr "無法開啟鎖定檔 %s" +#: apt-private/private-install.cc:925 +#, 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:218 -#, c-format -msgid "Not using locking for nfs mounted lock file %s" -msgstr "不在以 nfs 掛載的檔案 %s 上使用檔案鎖定" +#. TRANSLATORS: Note, this is not an interactive question +#: apt-private/private-install.cc:967 +#, 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:223 -#, c-format -msgid "Could not get lock %s" -msgstr "無法將 %s 鎖定" +#: apt-private/private-install.cc:973 +#, fuzzy, c-format +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 收到一個記憶體錯誤。" +#: 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 收到一個記憶體錯誤。" +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 "已有 " -#: apt-pkg/contrib/fileutl.cc:1101 -#, c-format -msgid "Could not open file %s" -msgstr "無法開啟檔案 %s" +#: apt-private/acqprogress.cc:88 +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:119 +msgid "Ign " +msgstr "略過 " -#: apt-pkg/contrib/fileutl.cc:1315 -msgid "Failed to create subprocess IPC" -msgstr "無法建立子程序 IPC" +#: apt-private/acqprogress.cc:123 +msgid "Err " +msgstr "錯誤 " -#: apt-pkg/contrib/fileutl.cc:1373 -msgid "Failed to exec compressor " -msgstr "無法執行壓縮程式" +#: apt-private/acqprogress.cc:147 +#, 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:237 +#, 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:298 +#, 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 "連線突然終止" + +#: dselect/install:33 +msgid "Bad default setting!" +msgstr "錯誤的預設設定!" -#: apt-pkg/contrib/mmap.cc:111 -#, fuzzy, c-format -msgid "Couldn't duplicate file descriptor %i" -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] 鍵以繼續進行。" -#: 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-inst/extract.cc:162 apt-inst/extract.cc:306 +msgid "The diversion path is too long" +msgstr "要進行抽換的路徑過長" -#: apt-pkg/contrib/configuration.cc:897 +#: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216 +#: ftparchive/cachedb.cc:184 #, 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 =." -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 無法理解,試試 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 +#: cmdline/apt-extracttemplates.cc:227 msgid "" "Usage: apt-extracttemplates file1 [file2 ...]\n" "\n" @@ -3146,12 +3159,7 @@ msgstr "" " -c=? 讀取指定的設定檔\n" " -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:254 -#, fuzzy, c-format -msgid "Unable to mkstemp %s" -msgstr "無法取得 %s 的狀態" - -#: cmdline/apt-extracttemplates.cc:300 +#: cmdline/apt-extracttemplates.cc:303 msgid "Cannot get debconf version. Is debconf installed?" msgstr "無法取得 debconf 版本。是否有安裝 debconf?" @@ -3266,17 +3274,17 @@ msgstr "找不到符合的選項" msgid "Some files are missing in the package file group `%s'" msgstr "套件檔案組 `%s' 少了部份檔案" -#: ftparchive/cachedb.cc:65 +#: ftparchive/cachedb.cc:67 #, c-format msgid "DB was corrupted, file renamed to %s.old" msgstr "DB 已損毀,檔案被更名為 %s.old" -#: ftparchive/cachedb.cc:83 +#: ftparchive/cachedb.cc:85 #, c-format msgid "DB is old, attempting to upgrade %s" msgstr "DB 過舊,嘗試升級 %s" -#: ftparchive/cachedb.cc:94 +#: ftparchive/cachedb.cc:96 #, fuzzy msgid "" "DB format is invalid. If you upgraded from an older version of apt, please " @@ -3284,105 +3292,105 @@ msgid "" msgstr "" "資料庫格式不正確。如果您是由舊版的 apt 升級上來的,請移除並重新建立資料庫。" -#: ftparchive/cachedb.cc:99 +#: ftparchive/cachedb.cc:101 #, c-format msgid "Unable to open DB file %s: %s" msgstr "無法開啟 DB 檔 %s: %s" -#: ftparchive/cachedb.cc:332 +#: ftparchive/cachedb.cc:326 #, fuzzy msgid "Failed to read .dsc" msgstr "無法讀取連結 %s" -#: ftparchive/cachedb.cc:365 +#: ftparchive/cachedb.cc:359 msgid "Archive has no control record" msgstr "套件檔沒有 control 記錄" -#: ftparchive/cachedb.cc:594 +#: ftparchive/cachedb.cc:522 msgid "Unable to get a cursor" msgstr "無法取得遊標" -#: ftparchive/writer.cc:91 +#: ftparchive/writer.cc:104 #, c-format msgid "W: Unable to read directory %s\n" msgstr "警告:無法讀取目錄 %s\n" -#: ftparchive/writer.cc:96 +#: ftparchive/writer.cc:109 #, c-format msgid "W: Unable to stat %s\n" msgstr "警告:無法取得 %s 狀態\n" -#: ftparchive/writer.cc:152 +#: ftparchive/writer.cc:165 msgid "E: " msgstr "錯誤:" -#: ftparchive/writer.cc:154 +#: ftparchive/writer.cc:167 msgid "W: " msgstr "警告:" -#: ftparchive/writer.cc:161 +#: ftparchive/writer.cc:174 msgid "E: Errors apply to file " msgstr "錯誤:套用到檔案時發生錯誤" -#: ftparchive/writer.cc:179 ftparchive/writer.cc:211 +#: ftparchive/writer.cc:192 ftparchive/writer.cc:224 #, c-format msgid "Failed to resolve %s" msgstr "無法解析 %s" -#: ftparchive/writer.cc:192 +#: ftparchive/writer.cc:205 msgid "Tree walking failed" msgstr "無法走訪目錄樹" -#: ftparchive/writer.cc:219 +#: ftparchive/writer.cc:232 #, c-format msgid "Failed to open %s" msgstr "無法開啟 %s" -#: ftparchive/writer.cc:278 +#: ftparchive/writer.cc:291 #, c-format msgid " DeLink %s [%s]\n" msgstr " DeLink %s [%s]\n" -#: ftparchive/writer.cc:286 +#: ftparchive/writer.cc:299 #, c-format msgid "Failed to readlink %s" msgstr "無法讀取連結 %s" -#: ftparchive/writer.cc:290 +#: ftparchive/writer.cc:303 #, c-format msgid "Failed to unlink %s" msgstr "無法移除連結 %s" -#: ftparchive/writer.cc:298 +#: ftparchive/writer.cc:311 #, c-format msgid "*** Failed to link %s to %s" msgstr "*** 無法將 %s 連結到 %s" -#: ftparchive/writer.cc:308 +#: ftparchive/writer.cc:321 #, c-format msgid " DeLink limit of %sB hit.\n" msgstr " 達到了 DeLink 的上限 %sB。\n" -#: ftparchive/writer.cc:417 +#: ftparchive/writer.cc:427 msgid "Archive had no package field" msgstr "套件檔裡沒有套件資訊" -#: ftparchive/writer.cc:425 ftparchive/writer.cc:692 +#: ftparchive/writer.cc:435 ftparchive/writer.cc:704 #, c-format msgid " %s has no override entry\n" msgstr " %s 沒有重新定義項目\n" -#: ftparchive/writer.cc:493 ftparchive/writer.cc:848 +#: ftparchive/writer.cc:500 ftparchive/writer.cc:868 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的維護者是 %s,而非 %s\n" -#: ftparchive/writer.cc:706 +#: ftparchive/writer.cc:718 #, c-format msgid " %s has no source override entry\n" msgstr " %s 沒有原始碼重新定義項目\n" -#: ftparchive/writer.cc:710 +#: ftparchive/writer.cc:722 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s 也沒有二元碼重新定義項目\n" diff --git a/test/integration/framework b/test/integration/framework index 3bbf440c8..8f1e7cca5 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -102,10 +102,10 @@ runapt() { local CMD="$1" shift case $CMD in - sh|aptitude|*/*) ;; + sh|aptitude|*/*|command) ;; *) CMD="${BUILDDIRECTORY}/$CMD";; esac - MALLOC_PERTURB_=21 MALLOC_CHECK_=2 APT_CONFIG="$(getaptconfig)" LD_LIBRARY_PATH=${BUILDDIRECTORY} $CMD "$@" + MALLOC_PERTURB_=21 MALLOC_CHECK_=2 APT_CONFIG="$(getaptconfig)" LD_LIBRARY_PATH=${LIBRARYPATH} $CMD "$@" } aptconfig() { runapt apt-config "$@"; } aptcache() { runapt apt-cache "$@"; } @@ -129,11 +129,9 @@ dpkgcheckbuilddeps() { command dpkg-checkbuilddeps --admindir=${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg "$@" } gdb() { - echo "gdb: run »$*«" - CMD="$1" + local CMD="$1" shift - - APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${LIBRARYPATH} command gdb ${BUILDDIRECTORY}/$CMD --args ${BUILDDIRECTORY}/$CMD "$@" + runapt command gdb --quiet -ex run "${BUILDDIRECTORY}/$CMD" --args "${BUILDDIRECTORY}/$CMD" "$@" } gpg() { # see apt-key for the whole trickery. Setup is done in setupenvironment @@ -235,6 +233,7 @@ setupenvironment() { fi echo "DPKG::options:: \"--log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log\";" >> aptconfig.conf echo 'quiet::NoUpdate "true";' >> aptconfig.conf + echo 'quiet::NoStatistic "true";' >> aptconfig.conf echo "Acquire::https::CaInfo \"${TESTDIR}/apt.pem\";" > rootdir/etc/apt/apt.conf.d/99https echo "Apt::Cmd::Disable-Script-Warning \"1\";" > rootdir/etc/apt/apt.conf.d/apt-binary configcompression '.' 'gz' #'bz2' 'lzma' 'xz' @@ -253,7 +252,8 @@ setupenvironment() { gpg --quiet --check-trustdb --secret-keyring $SECRETKEYRING --keyring $SECRETKEYRING >/dev/null 2>&1 # cleanup the environment a bit - export PATH="${PATH}:/usr/local/sbin:/usr/sbin:/sbin" + # prefer our apt binaries over the system apt binaries + export PATH="${BUILDDIRECTORY}:${PATH}:/usr/local/sbin:/usr/sbin:/sbin" export LC_ALL=C.UTF-8 unset LANGUAGE APT_CONFIG unset GREP_OPTIONS DEB_BUILD_PROFILES diff --git a/test/integration/skip-aptwebserver b/test/integration/skip-aptwebserver new file mode 100755 index 000000000..0622941ce --- /dev/null +++ b/test/integration/skip-aptwebserver @@ -0,0 +1,25 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture 'amd64' + +buildsimplenativepackage 'apt' 'all' '1.0' 'stable' + +setupaptarchive +changetowebserver + +rm -rf rootdir/var/lib/apt/lists +aptget update -qq +testequal 'Hit http://localhost stable InRelease +Hit http://localhost stable/main Sources +Hit http://localhost stable/main amd64 Packages +Hit http://localhost stable/main Translation-en +Reading package lists...' aptget update + +mv rootdir/var/lib/apt/lists/localhost* rootdir/var/lib/apt/lists/partial +aptget update + diff --git a/test/integration/test-apt-by-hash-update b/test/integration/test-apt-by-hash-update new file mode 100755 index 000000000..23282bf86 --- /dev/null +++ b/test/integration/test-apt-by-hash-update @@ -0,0 +1,49 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture "i386" + +insertpackage 'unstable' 'foo' 'all' '1.0' + +setupaptarchive --no-update + +APTARCHIVE=$(readlink -f ./aptarchive) + +# make Packages *only* accessable by-hash for this test +mkdir -p aptarchive/dists/unstable/main/binary-i386/by-hash/SHA512 +(cd aptarchive/dists/unstable/main/binary-i386/by-hash/SHA512 && + mv ../../Packages* . && + ln -s Packages.gz $(sha512sum Packages.gz|cut -f1 -d' ') ) + +# add sources +mkdir -p aptarchive/dists/unstable/main/source/by-hash/SHA512 +(cd aptarchive/dists/unstable/main/source/by-hash/SHA512 && + ln -s ../../Sources.gz $(sha512sum ../../Sources.gz|cut -f1 -d' ') +) + +# we moved the Packages file away, normal update won't work +testfailure aptget upate + +# ensure we do not know about "foo" +testequal "Reading package lists... +Building dependency tree... +E: Unable to locate package foo" aptget install -q -s foo + +# ensure we can apt-get update by hash +testsuccess aptget update -o APT::Acquire::By-Hash=1 + +# ensure it works +testequal "Inst foo (1.0 unstable [all]) +Conf foo (1.0 unstable [all])" aptget install -qq -s foo + +# add magic string to Release file ... +MAGIC="Acquire-By-Hash: true" +sed -i "s#Suite: unstable#Suite: unstable\n$MAGIC#" aptarchive/dists/unstable/Release +signreleasefiles +# ... and verify that it fetches by hash now +testsuccess aptget update + diff --git a/test/integration/test-apt-ftparchive-src-cachedb b/test/integration/test-apt-ftparchive-src-cachedb index adcca6217..e7b148530 100755 --- a/test/integration/test-apt-ftparchive-src-cachedb +++ b/test/integration/test-apt-ftparchive-src-cachedb @@ -177,6 +177,11 @@ assert_correct_sources_file mkdir aptarchive/pool/invalid printf "meep" > aptarchive/pool/invalid/invalid_1.0.dsc testequal " +E: Could not find a record in the DSC 'aptarchive/pool/invalid/invalid_1.0.dsc'" aptftparchive sources aptarchive/pool/invalid +rm -f aptarchive/pool/invalid/invalid_1.0.dsc + +printf "meep: yes" > aptarchive/pool/invalid/invalid_1.0.dsc +testequal " E: Could not find a Source entry in the DSC 'aptarchive/pool/invalid/invalid_1.0.dsc'" aptftparchive sources aptarchive/pool/invalid rm -f aptarchive/pool/invalid/invalid_1.0.dsc diff --git a/test/integration/test-apt-get-build-dep b/test/integration/test-apt-get-build-dep new file mode 100755 index 000000000..f71beae9c --- /dev/null +++ b/test/integration/test-apt-get-build-dep @@ -0,0 +1,126 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture "i386" + +buildsimplenativepackage 'debhelper' 'i386' '7' 'stable' +buildsimplenativepackage 'build-essential' 'i386' '1' 'stable' + +setupaptarchive +cat > 2vcard_0.5-3.dsc < +Uploaders: Marcela Tiznado +Standards-Version: 3.8.0 +Build-Depends: debhelper (>= 5.0.37) +Checksums-Sha1: + b7f1ce31ec856414a3f0f1090689f91aa7456d56 9398 2vcard_0.5.orig.tar.gz + 5f9acd07ebda6ab00fa6b4fe3198c13e94090862 2036 2vcard_0.5-3.diff.gz +Checksums-Sha256: + efdc22859ac2f8f030d038dc4faa9020082ebae34212498c288968ffd45c9764 9398 2vcard_0.5.orig.tar.gz + 82673ff3456af571094066c89bcea87b25c23c87cf1d0050b731e5222563626b 2036 2vcard_0.5-3.diff.gz +Files: + f73a69c170f772f3f6e75f2d11bbb792 9398 2vcard_0.5.orig.tar.gz + 1e806d32233af87437258d86b1561f57 2036 2vcard_0.5-3.diff.gz +EOF + +testequal "Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + build-essential debhelper +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst build-essential (1 stable [i386]) +Inst debhelper (7 stable [i386]) +Conf build-essential (1 stable [i386]) +Conf debhelper (7 stable [i386])" aptget build-dep -s 2vcard_0.5-3.dsc + +cat > 2vcard_0.5-3.dsc < +Uploaders: Marcela Tiznado +Standards-Version: 3.8.0 +Build-Depends: debhelper (>= 5.0.37) +Checksums-Sha1: + b7f1ce31ec856414a3f0f1090689f91aa7456d56 9398 2vcard_0.5.orig.tar.gz + 5f9acd07ebda6ab00fa6b4fe3198c13e94090862 2036 2vcard_0.5-3.diff.gz +Checksums-Sha256: + efdc22859ac2f8f030d038dc4faa9020082ebae34212498c288968ffd45c9764 9398 2vcard_0.5.orig.tar.gz + 82673ff3456af571094066c89bcea87b25c23c87cf1d0050b731e5222563626b 2036 2vcard_0.5-3.diff.gz +Files: + f73a69c170f772f3f6e75f2d11bbb792 9398 2vcard_0.5.orig.tar.gz + 1e806d32233af87437258d86b1561f57 2036 2vcard_0.5-3.diff.gz + +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAkijKhsACgkQsrBfRdYmq7aA2gCfaOW9riTYVQMx5ajKQVAcctlC +z2UAn1oXgTai6opwhVfkxrlmJ+iRxzuc +=4eRd +-----END PGP SIGNATURE----- +EOF + +testequal "Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + build-essential debhelper +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst build-essential (1 stable [i386]) +Inst debhelper (7 stable [i386]) +Conf build-essential (1 stable [i386]) +Conf debhelper (7 stable [i386])" aptget build-dep --simulate 2vcard_0.5-3.dsc + + +# unpacked source dir +mkdir -p foo-1.0/debian +cat > foo-1.0/debian/control <<'EOF' +Source: apturl +Section: admin +Priority: optional +Maintainer: Michael Vogt +Build-Depends: debhelper (>= 7) +X-Python3-Version: >= 3.2 +Standards-Version: 3.9.3 + +Package: apturl-common +Architecture: any +Depends: ${python3:Depends}, + ${shlibs:Depends}, + ${misc:Depends}, + python3-apt, + python3-update-manager +Replaces: apturl (<< 0.3.6ubuntu2) +Description: install packages using the apt protocol - common data + AptUrl is a simple graphical application that takes an URL (which follows the + apt-protocol) as a command line option, parses it and carries out the + operations that the URL describes (that is, it asks the user if he wants the + indicated packages to be installed and if the answer is positive does so for + him). + . + This package contains the common data shared between the frontends. + +EOF + +testequal "Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + build-essential debhelper +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst build-essential (1 stable [i386]) +Inst debhelper (7 stable [i386]) +Conf build-essential (1 stable [i386]) +Conf debhelper (7 stable [i386])" aptget build-dep --simulate ./foo-1.0 diff --git a/test/integration/test-apt-progress-fd b/test/integration/test-apt-progress-fd index 9d250e949..7ddf355f3 100755 --- a/test/integration/test-apt-progress-fd +++ b/test/integration/test-apt-progress-fd @@ -16,7 +16,7 @@ setupaptarchive exec 3> apt-progress.log testsuccess aptget install testing=0.1 -y -o APT::Status-Fd=3 testequal "dlstatus:1:0:Retrieving file 1 of 1 -dlstatus:1:0:Retrieving file 1 of 1 +dlstatus:1:20:Retrieving file 1 of 1 pmstatus:dpkg-exec:0:Running dpkg pmstatus:testing:0:Installing testing (amd64) pmstatus:testing:20:Preparing testing (amd64) @@ -31,7 +31,7 @@ pmstatus:testing:100:Installed testing (amd64)" cat apt-progress.log exec 3> apt-progress.log testsuccess aptget install testing=0.8.15 -y -o APT::Status-Fd=3 testequal "dlstatus:1:0:Retrieving file 1 of 1 -dlstatus:1:0:Retrieving file 1 of 1 +dlstatus:1:20:Retrieving file 1 of 1 pmstatus:dpkg-exec:0:Running dpkg pmstatus:testing:20:Preparing testing (amd64) pmstatus:testing:40:Unpacking testing (amd64) @@ -56,7 +56,7 @@ testsuccess aptget install testing2:i386 -y -o APT::Status-Fd=3 # and compare testequal "dlstatus:1:0:Retrieving file 1 of 1 -dlstatus:1:0:Retrieving file 1 of 1 +dlstatus:1:20:Retrieving file 1 of 1 pmstatus:dpkg-exec:0:Running dpkg pmstatus:testing2:0:Installing testing2 (i386) pmstatus:testing2:20:Preparing testing2 (i386) diff --git a/test/integration/test-apt-sources-deb822 b/test/integration/test-apt-sources-deb822 index 5f54b7531..d8b2334ad 100755 --- a/test/integration/test-apt-sources-deb822 +++ b/test/integration/test-apt-sources-deb822 @@ -23,14 +23,14 @@ Description: summay msgtest 'Test sources.list' 'old style' echo "deb http://ftp.debian.org/debian stable main" > $SOURCES -testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris msgtest 'Test sources.list' 'simple deb822' echo "$BASE" > $SOURCES -testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris @@ -39,29 +39,29 @@ msgtest 'Test deb822 with' 'two entries' echo "$BASE" > $SOURCES echo "" >> $SOURCES echo "$BASE" | sed s/stable/unstable/ >> $SOURCES -testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 -'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 : +'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris # two suite entries msgtest 'Test deb822 with' 'two Suite entries' echo "$BASE" | sed -e "s/stable/stable unstable/" > $SOURCES -testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 -'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 : +'http://ftp.debian.org/debian/dists/unstable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_unstable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/unstable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_unstable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/unstable/InRelease' ftp.debian.org_debian_dists_unstable_InRelease 0 " aptget update --print-uris msgtest 'Test deb822' 'architecture option' echo "$BASE" > $SOURCES echo "Architectures: amd64 armel" >> $SOURCES -testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-amd64/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-amd64_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/binary-amd64/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-amd64_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/binary-armel/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-armel_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris @@ -85,19 +85,19 @@ testempty aptget update --print-uris # multiple URIs msgtest 'Test deb822 sources.list file which has' 'Multiple URIs work' echo "$BASE" | sed -e 's#http://ftp.debian.org/debian#http://ftp.debian.org/debian http://ftp.de.debian.org/debian#' > $SOURCES -testequal --nomsg "'http://ftp.de.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.de.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.de.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.de.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.de.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.de.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.de.debian.org/debian/dists/stable/InRelease' ftp.de.debian.org_debian_dists_stable_InRelease 0 -'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris # multiple Type in one field msgtest 'Test deb822 sources.list file which has' 'Multiple Types work' echo "$BASE" | sed -e 's#Types: deb#Types: deb deb-src#' > $SOURCES -testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/source/Sources.bz2' ftp.debian.org_debian_dists_stable_main_source_Sources 0 : -'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 : -'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 : +testequal --nomsg "'http://ftp.debian.org/debian/dists/stable/main/source/Sources.bz2' ftp.debian.org_debian_dists_stable_main_source_Sources 0 +'http://ftp.debian.org/debian/dists/stable/main/binary-i386/Packages.bz2' ftp.debian.org_debian_dists_stable_main_binary-i386_Packages 0 +'http://ftp.debian.org/debian/dists/stable/main/i18n/Translation-en.bz2' ftp.debian.org_debian_dists_stable_main_i18n_Translation-en 0 'http://ftp.debian.org/debian/dists/stable/InRelease' ftp.debian.org_debian_dists_stable_InRelease 0 " aptget update --print-uris # a Suite @@ -107,6 +107,6 @@ Types: deb URIs: http://emacs.naquadah.org Suites: stable/ EOF -testequal --nomsg "'http://emacs.naquadah.org/stable/Packages.bz2' emacs.naquadah.org_stable_Packages 0 : -'http://emacs.naquadah.org/stable/en.bz2' emacs.naquadah.org_stable_en 0 : +testequal --nomsg "'http://emacs.naquadah.org/stable/Packages.bz2' emacs.naquadah.org_stable_Packages 0 +'http://emacs.naquadah.org/stable/en.bz2' emacs.naquadah.org_stable_en 0 'http://emacs.naquadah.org/stable/InRelease' emacs.naquadah.org_stable_InRelease 0 " aptget update --print-uris diff --git a/test/integration/test-bug-595691-empty-and-broken-archive-files b/test/integration/test-bug-595691-empty-and-broken-archive-files index a05ed5fa6..8da0a52d2 100755 --- a/test/integration/test-bug-595691-empty-and-broken-archive-files +++ b/test/integration/test-bug-595691-empty-and-broken-archive-files @@ -13,7 +13,7 @@ setupflataptarchive testaptgetupdate() { rm -rf rootdir/var/lib/apt aptget update 2>> testaptgetupdate.diff >> testaptgetupdate.diff || true - sed -i -e '/^Fetched / d' -e '/Ign / d' -e '/Release/ d' -e 's#Get:[0-9]\+ #Get: #' -e 's#\[[0-9]* [kMGTPY]*B\]#\[\]#' testaptgetupdate.diff + sed -i -e '/Ign / d' -e '/Release/ d' -e 's#Get:[0-9]\+ #Get: #' -e 's#\[[0-9]* [kMGTPY]*B\]#\[\]#' testaptgetupdate.diff GIVEN="$1" shift msgtest "Test for correctness of" "apt-get update with $*" diff --git a/test/integration/test-bug-683786-build-dep-on-virtual-packages b/test/integration/test-bug-683786-build-dep-on-virtual-packages index 879d6a3bc..65862c572 100755 --- a/test/integration/test-bug-683786-build-dep-on-virtual-packages +++ b/test/integration/test-bug-683786-build-dep-on-virtual-packages @@ -38,8 +38,8 @@ Building dependency tree... The following NEW packages will be installed: po-debconf 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. -Inst po-debconf (1 unstable, unstable [all]) -Conf po-debconf (1 unstable, unstable [all])' aptget build-dep dash -s +Inst po-debconf (1 unstable [all]) +Conf po-debconf (1 unstable [all])' aptget build-dep dash -s testequal 'Reading package lists... Building dependency tree... diff --git a/test/integration/test-bug-712435-missing-descriptions b/test/integration/test-bug-712435-missing-descriptions index 53ecbbeb3..7a3518745 100755 --- a/test/integration/test-bug-712435-missing-descriptions +++ b/test/integration/test-bug-712435-missing-descriptions @@ -87,13 +87,10 @@ $DESCRIPTION Description-md5: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa " aptcache show apt-normal -# displaying the translated Description would be equally valid, -# but we assume only one description is in a Packages file and -# so we prefer "Description" over "Description-*" currently. for variant in 'below' 'middle' 'top'; do testequal "Package: apt-both-$variant $PACKAGESTANZA -$DESCRIPTION +$TRANSDESCRIPTION Description-md5: bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb " aptcache show apt-both-$variant done @@ -122,7 +119,7 @@ X-Some-Flag: yes testequal "Package: apt-intermixed2 $PACKAGESTANZA -$DESCRIPTION +$TRANSDESCRIPTION Description-md5: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa X-Some-Flag: yes X-Foo-Flag: Something with a Description @@ -131,7 +128,7 @@ X-Bar-Flag: no testequal "Package: apt-intermixed3 $PACKAGESTANZA -$DESCRIPTION +$TRANSDESCRIPTION Description-md5: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa X-Some-Flag: yes X-Foo-Flag: Something with a Description diff --git a/test/integration/test-bug-722207-print-uris-even-if-very-quiet b/test/integration/test-bug-722207-print-uris-even-if-very-quiet index f2d95da19..9a5685703 100755 --- a/test/integration/test-bug-722207-print-uris-even-if-very-quiet +++ b/test/integration/test-bug-722207-print-uris-even-if-very-quiet @@ -16,10 +16,10 @@ setupaptarchive APTARCHIVE=$(readlink -f ./aptarchive) -testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 MD5Sum:" aptget upgrade -qq --print-uris -testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 MD5Sum:" aptget dist-upgrade -qq --print-uris -testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 MD5Sum:" aptget install apt -qq --print-uris -testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 MD5Sum:" aptget download apt -qq --print-uris +testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 " aptget upgrade -qq --print-uris +testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 " aptget dist-upgrade -qq --print-uris +testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 " aptget install apt -qq --print-uris +testequal "'file://${APTARCHIVE}/pool/main/apt/apt_2_all.deb' apt_2_all.deb 0 " aptget download apt -qq --print-uris testequal "'file://${APTARCHIVE}/apt_2.dsc' apt_2.dsc 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e 'file://${APTARCHIVE}/apt_2.tar.gz' apt_2.tar.gz 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e" aptget source apt -qq --print-uris testequal "'http://packages.debian.org/changelogs/pool/main/apt/apt_2/changelog'" aptget changelog apt -qq --print-uris diff --git a/test/integration/test-bug-745036-new-foreign-invalidates-cache b/test/integration/test-bug-745036-new-foreign-invalidates-cache new file mode 100755 index 000000000..490cbecdd --- /dev/null +++ b/test/integration/test-bug-745036-new-foreign-invalidates-cache @@ -0,0 +1,29 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' + +insertpackage 'unstable' 'cool-foo' 'amd64' '1.0' 'Depends: foo' +insertpackage 'unstable' 'foo' 'amd64' '1.0' 'Multi-Arch: foreign' +insertinstalledpackage 'cool-foo' 'amd64' '1.0' 'Depends: foo' +insertinstalledpackage 'foo' 'amd64' '1.0' 'Multi-Arch: foreign' + +setupaptarchive + +testsuccess aptget check -s + +configarchitecture 'amd64' 'i386' +testequal 'E: The package cache was built for different architectures: amd64 vs amd64,i386' aptget check -s -o pkgCacheFile::Generate=false + +testsuccess aptget check -s + +insertinstalledpackage 'awesome-foo' 'i386' '1.0' 'Depends: foo' + +testsuccess aptget check -s + +testsuccess aptget update --no-download + +testsuccess aptget check -s diff --git a/test/integration/test-http-pipeline-messup b/test/integration/test-http-pipeline-messup new file mode 100755 index 000000000..9c59e1825 --- /dev/null +++ b/test/integration/test-http-pipeline-messup @@ -0,0 +1,43 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture "i386" + +buildsimplenativepackage 'pkga' 'all' '1.0' 'stable' +buildsimplenativepackage 'pkgb' 'all' '1.0' 'stable' +buildsimplenativepackage 'pkgc' 'all' '1.0' 'stable' +buildsimplenativepackage 'pkgd' 'all' '1.0' 'stable' + +setupaptarchive --no-update + +# simulate (and be a predictable) pipeline mess-up by the server/proxy +changetowebserver \ + -o 'aptwebserver::overwrite::.*pkga.*::filename=/pool/pkgd_1.0_all.deb' \ + -o 'aptwebserver::overwrite::.*pkgc.*::filename=/pool/pkgb_1.0_all.deb' \ + -o 'aptwebserver::overwrite::.*pkgb.*::filename=/pool/pkgc_1.0_all.deb' \ + -o 'aptwebserver::overwrite::.*pkgd.*::filename=/pool/pkga_1.0_all.deb' + +testsuccess aptget update -o Debug::Acquire::http=1 -o Debug::pkgAcquire::Worker=1 + +# messup is bigger than pipeline: checks if fixup isn't trying to hard +testfailure aptget download pkga pkgb pkgc pkgd "$@" -o Acquire::http::Pipeline-Depth=2 +testfailure test -f pkga_1.0_all.deb + +# ensure that pipeling is enabled for rest of this test +echo 'Acquire::http::Pipeline-Depth 10;' > rootdir/etc/apt/apt.conf.d/99enable-pipeline + +# the output is a bit strange: it looks like it has downloaded pkga 4 times +testsuccess aptget download pkga pkgb pkgc pkgd -o Debug::Acquire::http=1 -o Debug::pkgAcquire::Worker=1 +for pkg in 'pkga' 'pkgb' 'pkgc' 'pkgd'; do + testsuccess test -f ${pkg}_1.0_all.deb + testsuccess cmp incoming/${pkg}_1.0_all.deb ${pkg}_1.0_all.deb + rm -f ${pkg}_1.0_all.deb +done + +# while hashes will pass (as none are available), sizes will not match, so failure +# checks that no hashes means that pipeline depth is ignored as we can't fixup +testfailure aptget download pkga pkgb pkgc pkgd "$@" --allow-unauthenticated -o Acquire::ForceHash=ROT26 diff --git a/test/integration/test-kernel-helper-autoremove b/test/integration/test-kernel-helper-autoremove index c51caa758..22c36890b 100755 --- a/test/integration/test-kernel-helper-autoremove +++ b/test/integration/test-kernel-helper-autoremove @@ -9,7 +9,7 @@ configarchitecture 'amd64' # the executed script would use the installed apt-config, # which is outside of our control msgtest 'Check that the installed apt-config supports' '--no-empty' -if apt-config dump --no-empty >/dev/null 2>&1; then +if /usr/bin/apt-config dump --no-empty >/dev/null 2>&1; then msgpass else msgskip diff --git a/test/integration/test-pdiff-usage b/test/integration/test-pdiff-usage index afe1ad443..74749d6ab 100755 --- a/test/integration/test-pdiff-usage +++ b/test/integration/test-pdiff-usage @@ -13,12 +13,6 @@ changetowebserver PKGFILE="${TESTDIR}/$(echo "$(basename $0)" | sed 's#^test-#Packages-#')" -echo '#!/bin/sh -touch merge-was-used -/usr/bin/diffindex-rred "$@"' > extrred -chmod +x extrred -echo 'Dir::Bin::rred "./extrred";' > rootdir/etc/apt/apt.conf.d/99rred - wasmergeused() { msgtest 'Test for successful execution of' "$*" local OUTPUT=$(mktemp) diff --git a/test/integration/test-ubuntu-bug-1098738-apt-get-source-md5sum b/test/integration/test-ubuntu-bug-1098738-apt-get-source-md5sum new file mode 100755 index 000000000..8c9c9c767 --- /dev/null +++ b/test/integration/test-ubuntu-bug-1098738-apt-get-source-md5sum @@ -0,0 +1,262 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture 'native' + +cat > aptarchive/Sources < +Architecture: all +Files: + 9604ba9427a280db542279d9ed78400b 3 pkg-md5-ok_1.0.dsc + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-md5-ok_1.0.tar.gz + +Package: pkg-sha256-ok +Binary: pkg-sha256-ok +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Files: + 9604ba9427a280db542279d9ed78400b 3 pkg-sha256-ok_1.0.dsc + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-sha256-ok_1.0.tar.gz +Checksums-Sha1: + 324f464e6151a92cf57b26ef95dcfcf2059a8c44 3 pkg-sha256-ok_1.0.dsc + 680254bad1d7ca0d65ec46aaa315d363abf6a50a 3 pkg-sha256-ok_1.0.tar.gz +Checksums-Sha256: + 943d3bf22ac661fb0f59bc4ff68cc12b04ff17a838dfcc2537008eb9c7f3770a 3 pkg-sha256-ok_1.0.dsc + 90aebae315675cbf04612de4f7d5874850f48e0b8dd82becbeaa47ca93f5ebfb 3 pkg-sha256-ok_1.0.tar.gz + +Package: pkg-sha256-bad +Binary: pkg-sha256-bad +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Files: + 9604ba9427a280db542279d9ed78400b 3 pkg-sha256-bad_1.0.dsc + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-sha256-bad_1.0.tar.gz +Checksums-Sha1: + 324f464e6151a92cf57b26ef95dcfcf2059a8c44 3 pkg-sha256-bad_1.0.dsc + 680254bad1d7ca0d65ec46aaa315d363abf6a50a 3 pkg-sha256-bad_1.0.tar.gz +Checksums-Sha256: + aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 3 pkg-sha256-bad_1.0.dsc + bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 3 pkg-sha256-bad_1.0.tar.gz + +Package: pkg-no-md5 +Binary: pkg-no-md5 +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Checksums-Sha1: + 324f464e6151a92cf57b26ef95dcfcf2059a8c44 3 pkg-no-md5_1.0.dsc + 680254bad1d7ca0d65ec46aaa315d363abf6a50a 3 pkg-no-md5_1.0.tar.gz +Checksums-Sha256: + 943d3bf22ac661fb0f59bc4ff68cc12b04ff17a838dfcc2537008eb9c7f3770a 3 pkg-no-md5_1.0.dsc + 90aebae315675cbf04612de4f7d5874850f48e0b8dd82becbeaa47ca93f5ebfb 3 pkg-no-md5_1.0.tar.gz + +Package: pkg-mixed-ok +Binary: pkg-mixed-ok +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Checksums-Sha1: + 680254bad1d7ca0d65ec46aaa315d363abf6a50a 3 pkg-mixed-ok_1.0.tar.gz +Checksums-Sha256: + 943d3bf22ac661fb0f59bc4ff68cc12b04ff17a838dfcc2537008eb9c7f3770a 3 pkg-mixed-ok_1.0.dsc + +Package: pkg-mixed-sha1-bad +Binary: pkg-mixed-sha1-bad +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Checksums-Sha1: + aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 3 pkg-mixed-sha1-bad_1.0.dsc +Checksums-Sha256: + 90aebae315675cbf04612de4f7d5874850f48e0b8dd82becbeaa47ca93f5ebfb 3 pkg-mixed-sha1-bad_1.0.tar.gz + +Package: pkg-mixed-sha2-bad +Binary: pkg-mixed-sha2-bad +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Checksums-Sha1: + 324f464e6151a92cf57b26ef95dcfcf2059a8c44 3 pkg-mixed-sha2-bad_1.0.dsc +Checksums-Sha256: + bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 3 pkg-mixed-sha2-bad_1.0.tar.gz + +Package: pkg-md5-disagree +Binary: pkg-md5-disagree +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Files: + 9604ba9427a280db542279d9ed78400b 3 pkg-md5-disagree_1.0.dsc + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-md5-disagree_1.0.tar.gz + aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 3 pkg-md5-disagree_1.0.dsc + bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 3 pkg-md5-disagree_1.0.tar.gz + +Package: pkg-md5-agree +Binary: pkg-md5-agree +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Files: + 9604ba9427a280db542279d9ed78400b 3 pkg-md5-agree_1.0.dsc + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-md5-agree_1.0.tar.gz + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-md5-agree_1.0.tar.gz + 9604ba9427a280db542279d9ed78400b 3 pkg-md5-agree_1.0.dsc + +Package: pkg-sha256-disagree +Binary: pkg-sha256-disagree +Version: 1.0 +Maintainer: Joe Sixpack +Architecture: all +Files: + 9604ba9427a280db542279d9ed78400b 3 pkg-sha256-disagree_1.0.dsc + db5570bf61464b46e2bde31ed61a7dc6 3 pkg-sha256-disagree_1.0.tar.gz +Checksums-Sha1: + 324f464e6151a92cf57b26ef95dcfcf2059a8c44 3 pkg-sha256-disagree_1.0.dsc + 680254bad1d7ca0d65ec46aaa315d363abf6a50a 3 pkg-sha256-disagree_1.0.tar.gz +Checksums-Sha256: + 943d3bf22ac661fb0f59bc4ff68cc12b04ff17a838dfcc2537008eb9c7f3770a 3 pkg-sha256-disagree_1.0.dsc + 90aebae315675cbf04612de4f7d5874850f48e0b8dd82becbeaa47ca93f5ebfb 3 pkg-sha256-disagree_1.0.tar.gz + aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 3 pkg-sha256-disagree_1.0.dsc + bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb 3 pkg-sha256-disagree_1.0.tar.gz +EOF + +# create fetchable files +for x in 'pkg-md5-ok' 'pkg-sha256-ok' 'pkg-sha256-bad' 'pkg-no-md5' \ + 'pkg-mixed-ok' 'pkg-mixed-sha1-bad' 'pkg-mixed-sha2-bad' \ + 'pkg-md5-agree' 'pkg-md5-disagree' 'pkg-sha256-disagree'; do + echo -n 'dsc' > aptarchive/${x}_1.0.dsc + echo -n 'tar' > aptarchive/${x}_1.0.tar.gz +done + +setupaptarchive +changetowebserver +testsuccess aptget update + +testok() { + rm -f ${1}_1.0.dsc ${1}_1.0.tar.gz + testequal "Reading package lists... +Building dependency tree... +Need to get 6 B of source archives. +Get:1 http://localhost:8080/ $1 1.0 (dsc) [3 B] +Get:2 http://localhost:8080/ $1 1.0 (tar) [3 B] +Download complete and in download only mode" aptget source -d "$@" + msgtest 'Files were successfully downloaded for' "$1" + testsuccess --nomsg test -e ${1}_1.0.dsc -a -e ${1}_1.0.tar.gz + rm -f ${1}_1.0.dsc ${1}_1.0.tar.gz +} + +testkeep() { + echo -n 'dsc' > ${1}_1.0.dsc + echo -n 'tar' > ${1}_1.0.tar.gz + testequal "Reading package lists... +Building dependency tree... +Skipping already downloaded file '${1}_1.0.dsc' +Skipping already downloaded file '${1}_1.0.tar.gz' +Need to get 0 B of source archives. +Download complete and in download only mode" aptget source -d "$@" + msgtest 'Files already downloaded are kept for' "$1" + testsuccess --nomsg test -e ${1}_1.0.dsc -a -e ${1}_1.0.tar.gz + rm -f ${1}_1.0.dsc ${1}_1.0.tar.gz +} + +testmismatch() { + rm -f ${1}_1.0.dsc ${1}_1.0.tar.gz + testequal "Reading package lists... +Building dependency tree... +Need to get 6 B of source archives. +Get:1 http://localhost:8080/ $1 1.0 (dsc) [3 B] +Get:2 http://localhost:8080/ $1 1.0 (tar) [3 B] +E: Failed to fetch http://localhost:8080/${1}_1.0.dsc Hash Sum mismatch + +E: Failed to fetch http://localhost:8080/${1}_1.0.tar.gz Hash Sum mismatch + +E: Failed to fetch some archives." aptget source -d "$@" + msgtest 'Files were not download as they have hashsum mismatches for' "$1" + testfailure --nomsg test -e ${1}_1.0.dsc -a -e ${1}_1.0.tar.gz + + rm -f ${1}_1.0.dsc ${1}_1.0.tar.gz + testequal "Reading package lists... +Building dependency tree... +Skipping download of file 'pkg-sha256-bad_1.0.dsc' as requested hashsum is not available for authentication +Skipping download of file 'pkg-sha256-bad_1.0.tar.gz' as requested hashsum is not available for authentication +Need to get 0 B of source archives. +Download complete and in download only mode" aptget source -d "$@" -o Acquire::ForceHash=ROT26 + msgtest 'Files were not download as hash is unavailable for' "$1" + testfailure --nomsg test -e ${1}_1.0.dsc -a -e ${1}_1.0.tar.gz + + rm -f ${1}_1.0.dsc ${1}_1.0.tar.gz + testequal "Reading package lists... +Building dependency tree... +Need to get 6 B of source archives. +Get:1 http://localhost:8080/ $1 1.0 (dsc) [3 B] +Get:2 http://localhost:8080/ $1 1.0 (tar) [3 B] +Download complete and in download only mode" aptget source --allow-unauthenticated -d "$@" -o Acquire::ForceHash=ROT26 + msgtest 'Files were downloaded unauthenticated as user allowed it' "$1" + testsuccess --nomsg test -e ${1}_1.0.dsc -a -e ${1}_1.0.tar.gz +} + +testok pkg-md5-ok +testkeep pkg-md5-ok +testok pkg-sha256-ok +testkeep pkg-sha256-ok + +# pkg-sha256-bad has a bad SHA sum, but good MD5 sum. If apt is +# checking the best available hash (as it should), this will trigger +# a hash mismatch. +testmismatch pkg-sha256-bad +testmismatch pkg-sha256-bad +testok pkg-sha256-bad -o Acquire::ForceHash=MD5Sum + +# not having MD5 sum doesn't mean the file doesn't exist at all … +testok pkg-no-md5 +testok pkg-no-md5 -o Acquire::ForceHash=SHA256 +testequal "Reading package lists... +Building dependency tree... +Skipping download of file 'pkg-no-md5_1.0.dsc' as requested hashsum is not available for authentication +Skipping download of file 'pkg-no-md5_1.0.tar.gz' as requested hashsum is not available for authentication +Need to get 0 B of source archives. +Download complete and in download only mode" aptget source -d pkg-no-md5 -o Acquire::ForceHash=MD5Sum +msgtest 'Files were not download as MD5 is not available for this package' 'pkg-no-md5' +testfailure --nomsg test -e pkg-no-md5_1.0.dsc -a -e pkg-no-md5_1.0.tar.gz + +# deal with cases in which we haven't for all files the same checksum type +# mostly pathologic as this shouldn't happen, but just to be sure +testok pkg-mixed-ok +testequal 'Reading package lists... +Building dependency tree... +Need to get 6 B of source archives. +Get:1 http://localhost:8080/ pkg-mixed-sha1-bad 1.0 (tar) [3 B] +Get:2 http://localhost:8080/ pkg-mixed-sha1-bad 1.0 (dsc) [3 B] +E: Failed to fetch http://localhost:8080/pkg-mixed-sha1-bad_1.0.dsc Hash Sum mismatch + +E: Failed to fetch some archives.' aptget source -d pkg-mixed-sha1-bad +msgtest 'Only tar file is downloaded as the dsc has hashsum mismatch' 'pkg-mixed-sha1-bad' +testsuccess --nomsg test ! -e pkg-mixed-sha1-bad_1.0.dsc -a -e pkg-mixed-sha1-bad_1.0.tar.gz +testequal 'Reading package lists... +Building dependency tree... +Need to get 6 B of source archives. +Get:1 http://localhost:8080/ pkg-mixed-sha2-bad 1.0 (tar) [3 B] +Get:2 http://localhost:8080/ pkg-mixed-sha2-bad 1.0 (dsc) [3 B] +E: Failed to fetch http://localhost:8080/pkg-mixed-sha2-bad_1.0.tar.gz Hash Sum mismatch + +E: Failed to fetch some archives.' aptget source -d pkg-mixed-sha2-bad +msgtest 'Only dsc file is downloaded as the tar has hashsum mismatch' 'pkg-mixed-sha2-bad' +testsuccess --nomsg test -e pkg-mixed-sha2-bad_1.0.dsc -a ! -e pkg-mixed-sha2-bad_1.0.tar.gz + +# it gets even more pathologic: multiple entries for one file, some even disagreeing! +testok pkg-md5-agree +testequal 'Reading package lists... +Building dependency tree... +E: Error parsing checksum in Files of source package pkg-md5-disagree' aptget source -d pkg-md5-disagree +testequal 'Reading package lists... +Building dependency tree... +E: Error parsing checksum in Checksums-SHA256 of source package pkg-sha256-disagree' aptget source -d pkg-sha256-disagree diff --git a/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall b/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall index 7112d2b45..8e50843f3 100755 --- a/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall +++ b/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall @@ -22,7 +22,7 @@ Config-Item: Acquire::http::DependOnSTDIN=0 600 Acquire URI URI: http://localhost:8080/holygrail Filename: knights-talking -' | ${METHODSDIR}/http >/dev/null 2>&1 && msgpass || msgfail +' | runapt ${METHODSDIR}/http >/dev/null 2>&1 && msgpass || msgfail testfileequal knights-talking 'ni ni ni' ensure_n_canary_strings_in_dir() { diff --git a/test/interactive-helper/makefile b/test/interactive-helper/makefile index 8dc014b98..4633b78ce 100644 --- a/test/interactive-helper/makefile +++ b/test/interactive-helper/makefile @@ -39,7 +39,7 @@ include $(PROGRAM_H) #SOURCE = rpmver.cc #include $(PROGRAM_H) -# Program for testing udevcdrom +# very simple webserver for APT testing PROGRAM=aptwebserver SLIBS = -lapt-pkg -lpthread LIB_MAKES = apt-pkg/makefile diff --git a/test/libapt/fileutl_test.cc b/test/libapt/fileutl_test.cc index 643c02297..cdf7ea479 100644 --- a/test/libapt/fileutl_test.cc +++ b/test/libapt/fileutl_test.cc @@ -224,3 +224,61 @@ TEST(FileUtlTest, GetTempDir) if (old_tmpdir.empty() == false) setenv("TMPDIR", old_tmpdir.c_str(), 1); } +TEST(FileUtlTest, Popen) +{ + FileFd Fd; + pid_t Child; + char buf[1024]; + std::string s; + unsigned long long n = 0; + std::vector OpenFds; + + // count Fds to ensure we don't have a resource leak + if(FileExists("/proc/self/fd")) + OpenFds = Glob("/proc/self/fd/*"); + + // output something + const char* Args[10] = {"/bin/echo", "meepmeep", NULL}; + bool res = Popen(Args, Fd, Child, FileFd::ReadOnly); + Fd.Read(buf, sizeof(buf)-1, &n); + buf[n] = 0; + EXPECT_NE(n, 0); + EXPECT_EQ(res, true); + EXPECT_STREQ(buf, "meepmeep\n"); + + // wait for the child to exit and cleanup + ExecWait(Child, "PopenRead"); + Fd.Close(); + + // ensure that after a close all is good again + if(FileExists("/proc/self/fd")) + EXPECT_EQ(Glob("/proc/self/fd/*").size(), OpenFds.size()); + + + // ReadWrite is not supported + res = Popen(Args, Fd, Child, FileFd::ReadWrite); + EXPECT_EQ(res, false); + _error->Discard(); + + // write something + Args[0] = "/bin/bash"; + Args[1] = "-c"; + Args[2] = "read"; + Args[3] = NULL; + res = Popen(Args, Fd, Child, FileFd::WriteOnly); + s = "\n"; + Fd.Write(s.c_str(), s.size()); + Fd.Close(); + ExecWait(Child, "PopenWrite"); +} +TEST(FileUtlTest, flAbsPath) +{ + std::string cwd = SafeGetCWD(); + int res = chdir("/bin/"); + EXPECT_EQ(res, 0); + std::string p = flAbsPath("ls"); + EXPECT_EQ(p, "/bin/ls"); + + res = chdir(cwd.c_str()); + EXPECT_EQ(res, 0); +} diff --git a/test/libapt/hashsums_test.cc b/test/libapt/hashsums_test.cc index c06d85e03..2159996ff 100644 --- a/test/libapt/hashsums_test.cc +++ b/test/libapt/hashsums_test.cc @@ -1,5 +1,6 @@ #include +#include #include #include #include @@ -166,20 +167,26 @@ TEST(HashSumsTest, FileBased) { Hashes hashes; hashes.AddFD(fd.Fd()); - EXPECT_EQ(md5.Value(), hashes.MD5.Result().Value()); - EXPECT_EQ(sha1.Value(), hashes.SHA1.Result().Value()); - EXPECT_EQ(sha256.Value(), hashes.SHA256.Result().Value()); - EXPECT_EQ(sha512.Value(), hashes.SHA512.Result().Value()); + HashStringList list = hashes.GetHashStringList(); + EXPECT_FALSE(list.empty()); + EXPECT_EQ(4, list.size()); + EXPECT_EQ(md5.Value(), list.find("MD5Sum")->HashValue()); + EXPECT_EQ(sha1.Value(), list.find("SHA1")->HashValue()); + EXPECT_EQ(sha256.Value(), list.find("SHA256")->HashValue()); + EXPECT_EQ(sha512.Value(), list.find("SHA512")->HashValue()); } unsigned long sz = fd.FileSize(); fd.Seek(0); { Hashes hashes; hashes.AddFD(fd.Fd(), sz); - EXPECT_EQ(md5.Value(), hashes.MD5.Result().Value()); - EXPECT_EQ(sha1.Value(), hashes.SHA1.Result().Value()); - EXPECT_EQ(sha256.Value(), hashes.SHA256.Result().Value()); - EXPECT_EQ(sha512.Value(), hashes.SHA512.Result().Value()); + HashStringList list = hashes.GetHashStringList(); + EXPECT_FALSE(list.empty()); + EXPECT_EQ(4, list.size()); + EXPECT_EQ(md5.Value(), list.find("MD5Sum")->HashValue()); + EXPECT_EQ(sha1.Value(), list.find("SHA1")->HashValue()); + EXPECT_EQ(sha256.Value(), list.find("SHA256")->HashValue()); + EXPECT_EQ(sha512.Value(), list.find("SHA512")->HashValue()); } fd.Seek(0); { @@ -207,16 +214,118 @@ TEST(HashSumsTest, FileBased) } fd.Close(); - { - HashString sha2("SHA256", sha256.Value()); - EXPECT_TRUE(sha2.VerifyFile(__FILE__)); - } - { - HashString sha2("SHA512", sha512.Value()); - EXPECT_TRUE(sha2.VerifyFile(__FILE__)); - } - { - HashString sha2("SHA256:" + sha256.Value()); - EXPECT_TRUE(sha2.VerifyFile(__FILE__)); - } + HashString sha2file("SHA512", sha512.Value()); + EXPECT_TRUE(sha2file.VerifyFile(__FILE__)); + HashString sha2wrong("SHA512", "00000000000"); + EXPECT_FALSE(sha2wrong.VerifyFile(__FILE__)); + EXPECT_EQ(sha2file, sha2file); + EXPECT_TRUE(sha2file == sha2file); + EXPECT_NE(sha2file, sha2wrong); + EXPECT_TRUE(sha2file != sha2wrong); + + HashString sha2big("SHA256", sha256.Value()); + EXPECT_TRUE(sha2big.VerifyFile(__FILE__)); + HashString sha2small("sha256:" + sha256.Value()); + EXPECT_TRUE(sha2small.VerifyFile(__FILE__)); + EXPECT_EQ(sha2big, sha2small); + EXPECT_TRUE(sha2big == sha2small); + EXPECT_FALSE(sha2big != sha2small); + + HashStringList hashes; + EXPECT_TRUE(hashes.empty()); + EXPECT_TRUE(hashes.push_back(sha2file)); + EXPECT_FALSE(hashes.empty()); + EXPECT_EQ(1, hashes.size()); + + HashStringList wrong; + EXPECT_TRUE(wrong.push_back(sha2wrong)); + EXPECT_NE(wrong, hashes); + EXPECT_FALSE(wrong == hashes); + EXPECT_TRUE(wrong != hashes); + + HashStringList similar; + EXPECT_TRUE(similar.push_back(sha2big)); + EXPECT_NE(similar, hashes); + EXPECT_FALSE(similar == hashes); + EXPECT_TRUE(similar != hashes); + + EXPECT_TRUE(hashes.push_back(sha2big)); + EXPECT_EQ(2, hashes.size()); + EXPECT_TRUE(hashes.push_back(sha2small)); + EXPECT_EQ(2, hashes.size()); + EXPECT_FALSE(hashes.push_back(sha2wrong)); + EXPECT_EQ(2, hashes.size()); + EXPECT_TRUE(hashes.VerifyFile(__FILE__)); + + EXPECT_EQ(similar, hashes); + EXPECT_TRUE(similar == hashes); + EXPECT_FALSE(similar != hashes); + similar.clear(); + EXPECT_TRUE(similar.empty()); + EXPECT_EQ(0, similar.size()); + EXPECT_NE(similar, hashes); + EXPECT_FALSE(similar == hashes); + EXPECT_TRUE(similar != hashes); +} +TEST(HashSumsTest, HashStringList) +{ + _config->Clear("Acquire::ForceHash"); + + HashStringList list; + EXPECT_TRUE(list.empty()); + EXPECT_FALSE(list.usable()); + EXPECT_EQ(0, list.size()); + EXPECT_EQ(NULL, list.find(NULL)); + EXPECT_EQ(NULL, list.find("")); + EXPECT_EQ(NULL, list.find("MD5Sum")); + + HashStringList list2; + EXPECT_FALSE(list == list2); + EXPECT_TRUE(list != list2); + + Hashes hashes; + hashes.Add("The quick brown fox jumps over the lazy dog"); + list = hashes.GetHashStringList(); + EXPECT_FALSE(list.empty()); + EXPECT_TRUE(list.usable()); + EXPECT_EQ(4, list.size()); + EXPECT_TRUE(NULL != list.find(NULL)); + EXPECT_TRUE(NULL != list.find("")); + EXPECT_TRUE(NULL != list.find("MD5Sum")); + EXPECT_TRUE(NULL == list.find("ROT26")); + + _config->Set("Acquire::ForceHash", "MD5Sum"); + EXPECT_FALSE(list.empty()); + EXPECT_TRUE(list.usable()); + EXPECT_EQ(4, list.size()); + EXPECT_TRUE(NULL != list.find(NULL)); + EXPECT_TRUE(NULL != list.find("")); + EXPECT_TRUE(NULL != list.find("MD5Sum")); + EXPECT_TRUE(NULL == list.find("ROT26")); + + _config->Set("Acquire::ForceHash", "ROT26"); + EXPECT_FALSE(list.empty()); + EXPECT_FALSE(list.usable()); + EXPECT_EQ(4, list.size()); + EXPECT_TRUE(NULL == list.find(NULL)); + EXPECT_TRUE(NULL == list.find("")); + EXPECT_TRUE(NULL != list.find("MD5Sum")); + EXPECT_TRUE(NULL == list.find("ROT26")); + + _config->Clear("Acquire::ForceHash"); + + list2.push_back(*list.find("MD5Sum")); + EXPECT_TRUE(list == list2); + EXPECT_FALSE(list != list2); + + // introduce a mismatch to the list + list2.push_back(HashString("SHA1", "cacecbd74968bc90ea3342767e6b94f46ddbcafc")); + EXPECT_FALSE(list == list2); + EXPECT_TRUE(list != list2); + + _config->Set("Acquire::ForceHash", "MD5Sum"); + EXPECT_TRUE(list == list2); + EXPECT_FALSE(list != list2); + + _config->Clear("Acquire::ForceHash"); } diff --git a/test/libapt/tagfile_test.cc b/test/libapt/tagfile_test.cc index 1bac75b55..df618ea16 100644 --- a/test/libapt/tagfile_test.cc +++ b/test/libapt/tagfile_test.cc @@ -7,6 +7,7 @@ #include #include #include +#include #include @@ -34,3 +35,181 @@ TEST(TagFileTest,SingleField) // There is only one section in this tag file EXPECT_FALSE(tfile.Step(section)); } + +TEST(TagFileTest,MultipleSections) +{ + FileFd fd; + createTemporaryFile("bigsection", fd, NULL, "Package: pkgA\n" + "Version: 1\n" + "Size: 100\n" + "Description: aaa\n" + " aaa\n" + "\n" + "Package: pkgB\n" + "Version: 1\n" + "Flag: no\n" + "Description: bbb\n" + "\n" + "Package: pkgC\n" + "Version: 2\n" + "Flag: yes\n" + "Description:\n" + " ccc\n" + ); + + pkgTagFile tfile(&fd); + pkgTagSection section; + EXPECT_FALSE(section.Exists("Version")); + + EXPECT_TRUE(tfile.Step(section)); + EXPECT_EQ(4, section.Count()); + EXPECT_TRUE(section.Exists("Version")); + EXPECT_TRUE(section.Exists("Package")); + EXPECT_TRUE(section.Exists("Size")); + EXPECT_FALSE(section.Exists("Flag")); + EXPECT_TRUE(section.Exists("Description")); + EXPECT_EQ("pkgA", section.FindS("Package")); + EXPECT_EQ("1", section.FindS("Version")); + EXPECT_EQ(1, section.FindULL("Version")); + EXPECT_EQ(100, section.FindULL("Size")); + unsigned long Flags = 1; + EXPECT_TRUE(section.FindFlag("Flag", Flags, 1)); + EXPECT_EQ(1, Flags); + Flags = 0; + EXPECT_TRUE(section.FindFlag("Flag", Flags, 1)); + EXPECT_EQ(0, Flags); + EXPECT_EQ("aaa\n aaa", section.FindS("Description")); + + + EXPECT_TRUE(tfile.Step(section)); + EXPECT_EQ(4, section.Count()); + EXPECT_TRUE(section.Exists("Version")); + EXPECT_TRUE(section.Exists("Package")); + EXPECT_FALSE(section.Exists("Size")); + EXPECT_TRUE(section.Exists("Flag")); + EXPECT_TRUE(section.Exists("Description")); + EXPECT_EQ("pkgB", section.FindS("Package")); + EXPECT_EQ("1", section.FindS("Version")); + EXPECT_EQ(1, section.FindULL("Version")); + EXPECT_EQ(0, section.FindULL("Size")); + Flags = 1; + EXPECT_TRUE(section.FindFlag("Flag", Flags, 1)); + EXPECT_EQ(0, Flags); + Flags = 0; + EXPECT_TRUE(section.FindFlag("Flag", Flags, 1)); + EXPECT_EQ(0, Flags); + EXPECT_EQ("bbb", section.FindS("Description")); + + EXPECT_TRUE(tfile.Step(section)); + EXPECT_EQ(4, section.Count()); + EXPECT_TRUE(section.Exists("Version")); + EXPECT_TRUE(section.Exists("Package")); + EXPECT_FALSE(section.Exists("Size")); + EXPECT_TRUE(section.Exists("Flag")); + EXPECT_TRUE(section.Exists("Description")); + EXPECT_EQ("pkgC", section.FindS("Package")); + EXPECT_EQ("2", section.FindS("Version")); + EXPECT_EQ(2, section.FindULL("Version")); + Flags = 0; + EXPECT_TRUE(section.FindFlag("Flag", Flags, 1)); + EXPECT_EQ(1, Flags); + Flags = 1; + EXPECT_TRUE(section.FindFlag("Flag", Flags, 1)); + EXPECT_EQ(1, Flags); + EXPECT_EQ("ccc", section.FindS("Description")); + + // There is no section left in this tag file + EXPECT_FALSE(tfile.Step(section)); +} + +TEST(TagFileTest,BigSection) +{ + size_t const count = 500; + std::stringstream content; + for (size_t i = 0; i < count; ++i) + content << "Field-" << i << ": " << (2000 + i) << std::endl; + + FileFd fd; + createTemporaryFile("bigsection", fd, NULL, content.str().c_str()); + + pkgTagFile tfile(&fd); + pkgTagSection section; + EXPECT_TRUE(tfile.Step(section)); + + EXPECT_EQ(count, section.Count()); + for (size_t i = 0; i < count; ++i) + { + std::stringstream name; + name << "Field-" << i; + EXPECT_TRUE(section.Exists(name.str().c_str())) << name.str() << " does not exist"; + EXPECT_EQ((2000 + i), section.FindULL(name.str().c_str())); + } + + // There is only one section in this tag file + EXPECT_FALSE(tfile.Step(section)); +} + +TEST(TagFileTest, PickedUpFromPreviousCall) +{ + size_t const count = 500; + std::stringstream contentstream; + for (size_t i = 0; i < count; ++i) + contentstream << "Field-" << i << ": " << (2000 + i) << std::endl; + contentstream << std::endl << std::endl; + std::string content = contentstream.str(); + + pkgTagSection section; + EXPECT_FALSE(section.Scan(content.c_str(), content.size()/2)); + EXPECT_NE(0, section.Count()); + EXPECT_NE(count, section.Count()); + EXPECT_TRUE(section.Scan(content.c_str(), content.size(), false)); + EXPECT_EQ(count, section.Count()); + + for (size_t i = 0; i < count; ++i) + { + std::stringstream name; + name << "Field-" << i; + EXPECT_TRUE(section.Exists(name.str().c_str())) << name.str() << " does not exist"; + EXPECT_EQ((2000 + i), section.FindULL(name.str().c_str())); + } +} + +TEST(TagFileTest, SpacesEverywhere) +{ + std::string content = + "Package: pkgA\n" + "Package: pkgB\n" + "NoSpaces:yes\n" + "TagSpaces\t :yes\n" + "ValueSpaces: \tyes\n" + "BothSpaces \t:\t yes\n" + "TrailingSpaces: yes\t \n" + "Naming Space: yes\n" + "Naming Spaces: yes\n" + "Package : pkgC \n" + "Multi-Colon::yes:\n" + "\n\n"; + + pkgTagSection section; + EXPECT_TRUE(section.Scan(content.c_str(), content.size())); + EXPECT_TRUE(section.Exists("Package")); + EXPECT_TRUE(section.Exists("NoSpaces")); + EXPECT_TRUE(section.Exists("TagSpaces")); + EXPECT_TRUE(section.Exists("ValueSpaces")); + EXPECT_TRUE(section.Exists("BothSpaces")); + EXPECT_TRUE(section.Exists("TrailingSpaces")); + EXPECT_TRUE(section.Exists("Naming Space")); + EXPECT_TRUE(section.Exists("Naming Spaces")); + EXPECT_TRUE(section.Exists("Multi-Colon")); + EXPECT_EQ("pkgC", section.FindS("Package")); + EXPECT_EQ("yes", section.FindS("NoSpaces")); + EXPECT_EQ("yes", section.FindS("TagSpaces")); + EXPECT_EQ("yes", section.FindS("ValueSpaces")); + EXPECT_EQ("yes", section.FindS("BothSpaces")); + EXPECT_EQ("yes", section.FindS("TrailingSpaces")); + EXPECT_EQ("yes", section.FindS("Naming Space")); + EXPECT_EQ("yes", section.FindS("Naming Spaces")); + EXPECT_EQ(":yes:", section.FindS("Multi-Colon")); + // overridden values are still present, but not really accessible + EXPECT_EQ(11, section.Count()); +}